You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: aten/src/ATen/core/op_registration/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -140,7 +140,7 @@ Or with annotations:
140
140
141
141
```
142
142
namespace {
143
-
Tensor my_kernel_cpu(const Tensor& a, int64_t b, at::optional<int64_t> c) {...}
143
+
Tensor my_kernel_cpu(const Tensor& a, int64_t b, std::optional<int64_t> c) {...}
144
144
}
145
145
146
146
static auto registry = torch::RegisterOperators()
@@ -176,7 +176,7 @@ The kernel function can take any of the following types as inputs or outputs:
176
176
*`bool`
177
177
*`c10::string_view`
178
178
*`at::Scalar` (this is a type that can hold either an integer or a floating point value)
179
-
*`at::optional<T>` with T being any type from the list above
179
+
*`std::optional<T>` with T being any type from the list above
180
180
181
181
The kernel function can take and return list inputs by using `torch::List<T>`. `T` must be one of the supported types from above excluding `at::Scalar`.
0 commit comments