Skip to content

Commit 3d0aa6f

Browse files
r-barnespytorchmergebot
authored andcommitted
Update readme with std::optional (pytorch#138914)
Pull Request resolved: pytorch#138914 Approved by: https://github.com/malfet
1 parent 6f66398 commit 3d0aa6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aten/src/ATen/core/op_registration/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Or with annotations:
140140

141141
```
142142
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) {...}
144144
}
145145
146146
static auto registry = torch::RegisterOperators()
@@ -176,7 +176,7 @@ The kernel function can take any of the following types as inputs or outputs:
176176
* `bool`
177177
* `c10::string_view`
178178
* `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
180180

181181
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`.
182182

0 commit comments

Comments
 (0)