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 be3c1ec commit 9e8503cCopy full SHA for 9e8503c
extension/apple/ExecuTorch/Internal/ExecuTorchUtils.h
@@ -23,7 +23,7 @@ using namespace runtime;
23
* @param number The NSNumber instance whose scalar type is to be deduced.
24
* @return The corresponding ScalarType.
25
*/
26
-static inline ScalarType deduceScalarType(NSNumber *number) {
+static inline ScalarType deduceType(NSNumber *number) {
27
auto type = [number objCType][0];
28
type = (type >= 'A' && type <= 'Z') ? type + ('a' - 'A') : type;
29
if (type == 'c') {
0 commit comments