13
13
#include < c10/macros/Export.h>
14
14
#include < c10/macros/Macros.h>
15
15
#include < c10/util/Exception.h>
16
- #include < c10/util/Optional.h >
16
+ #include < optional >
17
17
18
18
#include < cstdint>
19
19
#include < iosfwd>
@@ -284,10 +284,10 @@ struct C10_API TensorOptions {
284
284
return has_device_;
285
285
}
286
286
287
- // / Returns the device of the `TensorOptions`, or `c10 ::nullopt` if
287
+ // / Returns the device of the `TensorOptions`, or `std ::nullopt` if
288
288
// / device is not specified.
289
289
std::optional<Device> device_opt () const noexcept {
290
- return has_device_ ? c10 ::make_optional (device_) : c10 ::nullopt;
290
+ return has_device_ ? std ::make_optional (device_) : std ::nullopt;
291
291
}
292
292
293
293
// / Returns the device index of the `TensorOptions`.
@@ -305,10 +305,10 @@ struct C10_API TensorOptions {
305
305
return has_dtype_;
306
306
}
307
307
308
- // / Returns the dtype of the `TensorOptions`, or `c10 ::nullopt` if
308
+ // / Returns the dtype of the `TensorOptions`, or `std ::nullopt` if
309
309
// / device is not specified.
310
310
std::optional<caffe2::TypeMeta> dtype_opt () const noexcept {
311
- return has_dtype_ ? c10 ::make_optional (dtype_) : c10 ::nullopt;
311
+ return has_dtype_ ? std ::make_optional (dtype_) : std ::nullopt;
312
312
}
313
313
314
314
// / Returns the layout of the `TensorOptions`.
@@ -321,10 +321,10 @@ struct C10_API TensorOptions {
321
321
return has_layout_;
322
322
}
323
323
324
- // / Returns the layout of the `TensorOptions`, or `c10 ::nullopt` if
324
+ // / Returns the layout of the `TensorOptions`, or `std ::nullopt` if
325
325
// / layout is not specified.
326
326
std::optional<Layout> layout_opt () const noexcept {
327
- return has_layout_ ? c10 ::make_optional (layout_) : c10 ::nullopt;
327
+ return has_layout_ ? std ::make_optional (layout_) : std ::nullopt;
328
328
}
329
329
330
330
// / Returns the `requires_grad` property of the `TensorOptions`.
@@ -338,10 +338,10 @@ struct C10_API TensorOptions {
338
338
}
339
339
340
340
// / Returns the `requires_grad` property of the `TensorOptions`, or
341
- // / `c10 ::nullopt` if `requires_grad` is not specified.
341
+ // / `std ::nullopt` if `requires_grad` is not specified.
342
342
std::optional<bool > requires_grad_opt () const noexcept {
343
- return has_requires_grad_ ? c10 ::make_optional (requires_grad_)
344
- : c10 ::nullopt;
343
+ return has_requires_grad_ ? std ::make_optional (requires_grad_)
344
+ : std ::nullopt;
345
345
}
346
346
347
347
// / Returns the `pinned_memory` property of the `TensorOptions`.
@@ -378,10 +378,10 @@ struct C10_API TensorOptions {
378
378
}
379
379
380
380
// / Returns the `pinned_memory` property of the `TensorOptions`, or
381
- // / `c10 ::nullopt` if `pinned_memory` is not specified.
381
+ // / `std ::nullopt` if `pinned_memory` is not specified.
382
382
std::optional<bool > pinned_memory_opt () const noexcept {
383
- return has_pinned_memory_ ? c10 ::make_optional (pinned_memory_)
384
- : c10 ::nullopt;
383
+ return has_pinned_memory_ ? std ::make_optional (pinned_memory_)
384
+ : std ::nullopt;
385
385
}
386
386
387
387
// / Returns whether the `memory_layout` is specified
@@ -393,10 +393,10 @@ struct C10_API TensorOptions {
393
393
// behavior of memory_format varies from function to function.
394
394
395
395
// / Returns the `memory_layout` property of `TensorOptions, or
396
- // / `c10 ::nullopt` if `memory_format` is not specified.
396
+ // / `std ::nullopt` if `memory_format` is not specified.
397
397
std::optional<MemoryFormat> memory_format_opt () const noexcept {
398
- return has_memory_format_ ? c10 ::make_optional (memory_format_)
399
- : c10 ::nullopt;
398
+ return has_memory_format_ ? std ::make_optional (memory_format_)
399
+ : std ::nullopt;
400
400
}
401
401
402
402
// Resolves the ATen backend specified by the current construction axes.
0 commit comments