Skip to content

Commit 5ff078f

Browse files
committed
Update GPU Llama3 dependency to version 0.3.2-dev and enable usage help in CLI
1 parent 80040bf commit 5ff078f

3 files changed

Lines changed: 3 additions & 134 deletions

File tree

LlamaTornadoCli.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//JAVA 21
22
//PREVIEW
3-
//DEPS io.github.beehive-lab:gpu-llama3:0.3.1
3+
//DEPS io.github.beehive-lab:gpu-llama3:0.3.2-dev
44
//DEPS io.github.beehive-lab:tornado-api:2.1.0
55
//DEPS io.github.beehive-lab:tornado-runtime:2.1.0
66

@@ -89,7 +89,7 @@ public static void main(String[] args) throws IOException {
8989

9090
// Check if help requested
9191
if (args.length == 0 || hasHelpFlag(args)) {
92-
// Options.printUsage(System.out);
92+
Options.printUsage(System.out);
9393
System.exit(0);
9494
}
9595

@@ -98,9 +98,7 @@ public static void main(String[] args) throws IOException {
9898
Options options = Options.parseOptions(args);
9999

100100
// Load model
101-
System.out.println("Loading model from: " + options.modelPath());
102101
Model model = loadModel(options);
103-
System.out.println("Model loaded successfully!");
104102

105103
// Create sampler
106104
Sampler sampler = createSampler(model, options);

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<!-- Use your verified namespace -->
88
<groupId>io.github.beehive-lab</groupId>
99
<artifactId>gpu-llama3</artifactId>
10-
<version>0.3.1</version> <!-- release version (no -SNAPSHOT) -->
10+
<version>0.3.2-dev</version> <!-- release version (no -SNAPSHOT) -->
1111

1212
<name>GPU Llama3</name>
1313
<description>GPU-accelerated LLaMA3 inference using TornadoVM</description>

src/main/java/org/beehive/gpullama3/cli/LlamaTornadoCli.java

Lines changed: 0 additions & 129 deletions
This file was deleted.

0 commit comments

Comments
 (0)