Skip to content

Commit abe445b

Browse files
committed
Silly mistake
1 parent 976cffd commit abe445b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/demo-apps/android/LlamaDemo/app/src/main/java/com/example/executorchllamademo/LlmBenchmarkRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected void onCreate(Bundle savedInstanceState) {
3939
modelDir = new File(intent.getStringExtra("model_dir"));
4040
File model = Arrays.stream(directory.listFiles())
4141
.filter(file -> file.getName().endsWith(".pte"))
42-
.findFirst()
42+
.findFirst();
4343
String tokenizerPath = intent.getStringExtra("tokenizer_path");
4444

4545
float temperature = intent.getFloatExtra("temperature", 0.8f);

0 commit comments

Comments
 (0)