forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConjugateFallback.cpp
65 lines (57 loc) · 3.01 KB
/
ConjugateFallback.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <ATen/native/MathBitsFallback.h>
#include <ATen/native/MathBitFallThroughLists.h>
namespace at::native {
struct ConjFallback : MathOpFallback {
ConjFallback() : MathOpFallback(DispatchKey::Conjugate, "conjugate") {}
bool is_bit_set(const Tensor& tensor) override {
return tensor.is_conj();
}
};
static void conjugateFallback(const c10::OperatorHandle& op, DispatchKeySet dispatch_keys, torch::jit::Stack* stack) {
ConjFallback object;
object.fallback_impl(op, dispatch_keys, stack);
}
TORCH_LIBRARY_IMPL(_, Conjugate, m) {
m.fallback(torch::CppFunction::makeFromBoxedFunction<&conjugateFallback>());
}
TORCH_LIBRARY_IMPL(aten, Conjugate, m) {
m.impl("set_.source_Storage_storage_offset", torch::CppFunction::makeFallthrough());
m.impl("set_.source_Tensor", torch::CppFunction::makeFallthrough());
m.impl("set_", torch::CppFunction::makeFallthrough());
m.impl("copy_", torch::CppFunction::makeFallthrough());
m.impl("clone", torch::CppFunction::makeFallthrough());
m.impl("_conj_physical", torch::CppFunction::makeFallthrough());
m.impl("conj_physical", torch::CppFunction::makeFallthrough());
m.impl("conj_physical_", torch::CppFunction::makeFallthrough());
m.impl("resolve_conj", torch::CppFunction::makeFallthrough());
m.impl("resolve_neg", torch::CppFunction::makeFallthrough());
m.impl("repeat_interleave.Tensor", torch::CppFunction::makeFallthrough());
m.impl("repeat_interleave.self_Tensor", torch::CppFunction::makeFallthrough());
m.impl("repeat_interleave.self_int", torch::CppFunction::makeFallthrough());
// See test_metadata_check_when_primal_has_conj_bit in test_autograd.py
m.impl("_has_same_storage_numel", torch::CppFunction::makeFallthrough());
m.impl("_new_zeros_with_same_feature_meta", torch::CppFunction::makeFallthrough());
// linear algebra functions
m.impl("dot", torch::CppFunction::makeFallthrough());
m.impl("vdot", torch::CppFunction::makeFallthrough());
m.impl("dot.out", torch::CppFunction::makeFallthrough());
m.impl("vdot.out", torch::CppFunction::makeFallthrough());
m.impl("mm", torch::CppFunction::makeFallthrough());
m.impl("linalg_solve_triangular", torch::CppFunction::makeFallthrough());
m.impl("linalg_solve_triangular.out", torch::CppFunction::makeFallthrough());
m.impl("mm.out", torch::CppFunction::makeFallthrough());
m.impl("addmm", torch::CppFunction::makeFallthrough());
m.impl("addmm_", torch::CppFunction::makeFallthrough());
m.impl("addmm.out", torch::CppFunction::makeFallthrough());
m.impl("bmm", torch::CppFunction::makeFallthrough());
m.impl("bmm.out", torch::CppFunction::makeFallthrough());
m.impl("baddbmm", torch::CppFunction::makeFallthrough());
m.impl("baddbmm_", torch::CppFunction::makeFallthrough());
m.impl("baddbmm.out", torch::CppFunction::makeFallthrough());
m.impl("linalg_svd", torch::CppFunction::makeFallthrough());
m.impl("linalg_svd.U", torch::CppFunction::makeFallthrough());
TORCH_VIEW_FNS(m)
TENSOR_UTILITIES_AND_CONSTRUCTORS(m)
TORCH_VIEW_FNS_NATIVE_FN_REGISTRATION(m)
}
} // namespace at::native