xref: /aosp_15_r20/external/pytorch/aten/src/ATen/templates/UfuncCPU.cpp (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #define TORCH_ASSERT_NO_OPERATORS
2 
3 #include <ATen/native/DispatchStub.h>
4 #include <ATen/TensorIterator.h>
5 #include <ATen/TensorMeta.h>
6 
7 namespace at {
8 
9 // NB: this is explicitly copied here (via codegen) rather than
10 // included via NativeFunctions.h to avoid recompiling this file when
11 // NativeFunctions.h changes
12 namespace meta {
13 ${meta_declaration}
14 }
15 
16 namespace native {
17 ${native_declaration}
18 ${native_definitions}
19 }} // namespace at::native
20