File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
extension/android/executorch_android/src/main/java/org/pytorch/executorch Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -56,9 +56,8 @@ public class Module {
5656 private static native HybridData initHybrid (
5757 String moduleAbsolutePath , int loadMode , int initHybrid );
5858
59- <<<<<<< HEAD
60- private Module (String moduleAbsolutePath , int loadMode ) {
61- mHybridData = initHybrid (moduleAbsolutePath , loadMode );
59+ private Module (String moduleAbsolutePath , int loadMode , int numThreads ) {
60+ mHybridData = initHybrid (moduleAbsolutePath , loadMode , numThreads );
6261
6362 mMethodMetadata = populateMethodMeta ();
6463 }
@@ -72,10 +71,6 @@ Map<String, MethodMetadata> populateMethodMeta() {
7271 }
7372
7473 return metadata ;
75- =======
76- private Module (String moduleAbsolutePath , int loadMode , int numThreads ) {
77- mHybridData = initHybrid (moduleAbsolutePath , loadMode , numThreads );
78- >>>>>>> jni -layer -cpp
7974 }
8075
8176 /** Lock protecting the non-thread safe methods in mHybridData. */
You can’t perform that action at this time.
0 commit comments