Searched refs:resolve_conj (Results 1 – 25 of 28) sorted by relevance
12
/external/pytorch/torch/csrc/utils/ |
D | tensor_list.cpp | 51 Tensor data = tensor.resolve_conj().resolve_neg(); in tensor_to_list()
|
D | tensor_numpy.cpp | 164 auto prepared_tensor = tensor.detach().cpu().resolve_conj().resolve_neg(); in tensor_to_numpy()
|
/external/pytorch/torch/onnx/_internal/ |
D | io_adapter.py | 294 torch.view_as_real(arg.resolve_conj()) 500 torch.view_as_real(output.resolve_conj())
|
/external/pytorch/torch/onnx/_internal/exporter/ |
D | _onnx_program.py | 313 torch.view_as_real(arg.resolve_conj())
|
/external/pytorch/aten/src/ATen/ |
D | FunctionalInverses.cpp | 126 return at::view_as_real(mutated_view.resolve_conj()); in view_as_complex_inverse() 128 return at::view_as_real_copy(mutated_view.resolve_conj()); in view_as_complex_inverse()
|
D | LegacyBatchingRegistrations.cpp | 1251 TRIVIAL_OP(resolve_conj); in TORCH_LIBRARY_IMPL()
|
/external/pytorch/aten/src/ATen/native/ |
D | LinearAlgebra.cpp | 1446 c = result.resolve_conj(); in addmm_impl_cpu_() 1453 c = result.resolve_conj(); in addmm_impl_cpu_() 1457 c = result.resolve_conj().transpose(0, 1).contiguous().transpose_(0, 1); in addmm_impl_cpu_() 1471 a = m1.resolve_conj(); in addmm_impl_cpu_() 1488 b = m2.resolve_conj(); in addmm_impl_cpu_() 1878 bmm_out_or_baddbmm_(result, batch1.resolve_conj(), batch2.resolve_conj(), beta, alpha, false); in TORCH_IMPL_FUNC() 1888 …bmm_out_or_baddbmm_(result, batch1.resolve_conj(), batch2.resolve_conj(), Scalar(0.0), Scalar(1.0)… in TORCH_IMPL_FUNC()
|
D | Convolution.cpp | 856 auto [i_r, i_i] = complex_to_real(input.resolve_conj()); in complex_convolution() 857 auto [w_r, w_i] = complex_to_real(weight.resolve_conj()); in complex_convolution() 873 auto [b_r, b_i] = complex_to_real(bias.resolve_conj()); in complex_convolution() 893 auto [i_r, i_i] = complex_to_real(input.resolve_conj()); in complex_convolution_mode() 894 auto [w_r, w_i] = complex_to_real(weight.resolve_conj()); in complex_convolution_mode() 903 auto [b_r, b_i] = complex_to_real(bias.resolve_conj()); in complex_convolution_mode()
|
D | LinearAlgebraUtils.h | 32 return c10::MaybeOwned<Tensor>::owned(tensor.resolve_conj()); in expect_resolved_conj()
|
D | UnaryOps.cpp | 646 Tensor resolve_conj(const Tensor& self) { in resolve_conj() function
|
D | SpectralOps.cpp | 1055 Tensor input = at::view_as_real(self.resolve_conj()); in istft()
|
/external/pytorch/aten/src/ATen/native/cuda/ |
D | Blas.cpp | 50 c10::MaybeOwned<Tensor> inline resolve_conj_if_indicated(const Tensor& tensor, bool resolve_conj) { in resolve_conj_if_indicated() argument 51 if (resolve_conj && tensor.is_conj()) { in resolve_conj_if_indicated() 52 return c10::MaybeOwned<Tensor>::owned(tensor.resolve_conj()); in resolve_conj_if_indicated()
|
/external/pytorch/functorch/op_analysis/ |
D | public_api | 588 resolve_conj
|
D | annotated_ops | 21 resolve_conj, complex
|
/external/pytorch/aten/src/ATen/functorch/ |
D | BatchRulesDecompositions.cpp | 231 OP_DECOMPOSE(resolve_conj); in TORCH_LIBRARY_IMPL()
|
/external/pytorch/torch/onnx/_internal/fx/ |
D | fx_onnx_interpreter.py | 578 fake_tensor = torch.view_as_real(fake_tensor.resolve_conj())
|
/external/pytorch/docs/source/ |
D | torch.rst | 572 resolve_conj
|
D | tensors.rst | 363 Tensor.resolve_conj
|
/external/pytorch/torch/ |
D | _tensor_str.py | 346 self = self.resolve_conj()
|
D | _torch_docs.py | 2962 torch.resolve_conj,
|
/external/pytorch/test/mobile/model_test/ |
D | math_ops.py | 372 torch.resolve_conj(a),
|
/external/pytorch/test/ |
D | test_numpy_interop.py | 184 y = x.resolve_conj()
|
D | test_functionalization.py | 2196 return torch.view_as_real(y.resolve_conj())
|
/external/pytorch/torch/autograd/ |
D | gradcheck.py | 813 tv = torch.view_as_real(vJ.resolve_conj())
|
/external/pytorch/torch/csrc/jit/runtime/static/ |
D | generated_ops.cpp | 4876 aten::resolve_conj, 4883 p_node->Output(0) = at::native::resolve_conj(self); in __anon7ebb59391d002()
|
12