File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
extension/apple/ExecuTorch/Exported Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -100,12 +100,12 @@ - (NSInteger)count {
100
100
return _tensor->numel ();
101
101
}
102
102
103
- - (void )bytesWithHandler : (void (^)(const void *pointer, NSInteger count, ExecuTorchDataType type))handler {
103
+ - (void )bytesWithHandler : (NS_NOESCAPE void (^)(const void *pointer, NSInteger count, ExecuTorchDataType type))handler {
104
104
ET_CHECK (handler);
105
105
handler (_tensor->unsafeGetTensorImpl ()->data (), self.count , self.dataType );
106
106
}
107
107
108
- - (void )mutableBytesWithHandler : (void (^)(void *pointer, NSInteger count, ExecuTorchDataType dataType))handler {
108
+ - (void )mutableBytesWithHandler : (NS_NOESCAPE void (^)(void *pointer, NSInteger count, ExecuTorchDataType dataType))handler {
109
109
ET_CHECK (handler);
110
110
handler (_tensor->unsafeGetTensorImpl ()->mutable_data (), self.count , self.dataType );
111
111
}
You can’t perform that action at this time.
0 commit comments