File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
extension/android/executorch_android/src/main/java/org/pytorch/executorch Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -633,26 +633,26 @@ public String toString() {
633
633
634
634
static class Tensor_unsupported extends Tensor {
635
635
private final ByteBuffer data ;
636
- private final DType myDtype ;
636
+ private final DType mDtype ;
637
637
638
638
private Tensor_unsupported (ByteBuffer data , long [] shape , DType dtype ) {
639
639
super (shape );
640
640
this .data = data ;
641
- this .myDtype = dtype ;
641
+ this .mDtype = dtype ;
642
642
Log .e (
643
643
"ExecuTorch" ,
644
644
toString () + " in Java. Please consider re-export the model with proper return type" );
645
645
}
646
646
647
647
@ Override
648
648
public DType dtype () {
649
- return myDtype ;
649
+ return mDtype ;
650
650
}
651
651
652
652
@ Override
653
653
public String toString () {
654
654
return String .format (
655
- "Unsupported tensor(%s, dtype=%d)" , Arrays .toString (shape ), this .myDtype );
655
+ "Unsupported tensor(%s, dtype=%d)" , Arrays .toString (shape ), this .mDtype );
656
656
}
657
657
}
658
658
You can’t perform that action at this time.
0 commit comments