Skip to content

Commit 65c347f

Browse files
committed
Fix
1 parent b8eafc2 commit 65c347f

File tree

1 file changed

+1
-1
lines changed
  • extension/android/executorch_android/src/main/java/org/pytorch/executorch

1 file changed

+1
-1
lines changed

extension/android/executorch_android/src/main/java/org/pytorch/executorch/Module.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public static Module load(final String modelPath, int loadMode, int numThreads)
8383
if (!modelFile.canRead() || !modelFile.isFile()) {
8484
throw new RuntimeException("Cannot load model path " + modelPath);
8585
}
86-
return new Module((modelPath, loadMode, numThreads);
86+
return new Module(modelPath, loadMode, numThreads);
8787
}
8888

8989
/**

0 commit comments

Comments
 (0)