We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 313821f commit 1f5a326Copy full SHA for 1f5a326
docs/source/using-executorch-android.md
@@ -172,7 +172,7 @@ public class MainActivity extends Activity {
172
protected void onCreate(Bundle savedInstanceState) {
173
super.onCreate(savedInstanceState);
174
// Load the ExecuTorch module
175
- module = Module.load("/data/local/tmp/add.pte");
+ Module module = Module.load("/data/local/tmp/add.pte");
176
Tensor tensor1 = Tensor.fromBlob(new float[] {1.0f}, new long[] {1});
177
Tensor tensor2 = Tensor.fromBlob(new float[] {20.0f}, new long[] {1});
178
0 commit comments