Home
last modified time | relevance | path

Searched defs:is_complex (Results 1 – 20 of 20) sorted by relevance

/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dis_complex.hpp17 template <class T> struct is_complex : public false_type {}; struct
18 template <class T> struct is_complex<const T > : public is_complex<T>{}; struct
19 template <class T> struct is_complex<volatile const T > : public is_complex<T>{}; struct
20 template <class T> struct is_complex<volatile T > : public is_complex<T>{}; struct
21 template <class T> struct is_complex<std::complex<T> > : public true_type{}; struct
/external/llvm-libc/src/__support/CPP/type_traits/
Dis_complex.h22 template <typename T> struct is_complex { struct
44 LIBC_INLINE_VAR constexpr bool is_complex_v = is_complex<T>::value; argument
/external/cronet/stable/third_party/llvm-libc/src/src/__support/CPP/type_traits/
Dis_complex.h22 template <typename T> struct is_complex { struct
44 LIBC_INLINE_VAR constexpr bool is_complex_v = is_complex<T>::value; argument
/external/cronet/tot/third_party/llvm-libc/src/src/__support/CPP/type_traits/
Dis_complex.h22 template <typename T> struct is_complex { struct
44 LIBC_INLINE_VAR constexpr bool is_complex_v = is_complex<T>::value; argument
/external/pytorch/c10/util/
Dcomplex_utils.h11 struct is_complex : public std::false_type {}; struct
/external/pytorch/torch/onnx/_internal/fx/
Dregistration.py34 is_complex: bool = False variable in ONNXFunction
/external/pytorch/torch/onnx/_internal/exporter/
D_registration.py55 is_complex: bool = False variable in OnnxDecompMeta
/external/pytorch/aten/src/ATen/templates/
DFunctions.h111 inline bool is_complex(const Tensor& tensor) { in is_complex() function
/external/pytorch/aten/src/ATen/native/
DTypeProperties.cpp31 bool is_complex(const Tensor& self) { in is_complex() function
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dnccl_utils.cc197 bool is_complex = primitive_util::IsComplexType(element_type); in ToNcclDataTypeAndCountMultiplier() local
/external/harfbuzz_ng/src/
Dgen-tag-table.py284 def is_complex (self): member in LanguageTag
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dcpu_runtime.cc54 struct is_complex : std::false_type {}; struct
56 struct is_complex<std::complex<T>> : std::true_type {}; struct
/external/pytorch/aten/src/ATen/core/
DTensorBase.h152 bool is_complex() const { in is_complex() function
/external/tensorflow/tensorflow/python/ops/parallel_for/
Dmath_test.py40 def _test_unary_cwise_ops(self, ops, is_complex): argument
/external/tensorflow/tensorflow/compiler/xla/service/
Deigh_expander.cc103 bool is_complex = primitive_util::IsComplexType(w_tl_shape.element_type()); in HermitianEigenDecomposition2x2() local
/external/pytorch/test/
Dtest_dynamic_shapes.py1518 def is_complex(x): function
/external/ComputeLibrary/src/core/NEON/kernels/
DNEReductionOperationKernel.cpp1579 const bool is_complex = (input->info()->num_channels() == 2); in reduce_op() local
/external/tensorflow/tensorflow/core/grappler/optimizers/
Darithmetic_optimizer.cc2390 bool is_complex = false; in TrySimplify() local
2540 bool is_complex = (type == DT_COMPLEX64) || (type == DT_COMPLEX128); in TrySimplify() local
/external/pytorch/torch/csrc/autograd/
DFunctionsManual.cpp3409 const auto is_complex = dA.is_complex(); in linalg_svd_jvp() local
3630 const bool is_complex = U.is_complex(); in svd_backward() local
4317 auto is_complex = A.is_complex(); in slogdet_backward() local
/external/pytorch/torch/_refs/
D__init__.py579 def is_complex(input: TensorLikeType): function