Home
last modified time | relevance | path

Searched refs:complex_type (Results 1 – 25 of 26) sorted by relevance

12

/external/eigen/unsupported/Eigen/src/FFT/
Dei_fftw_impl.h54 typedef fftwf_complex complex_type;
60 void fwd(complex_type * dst,complex_type * src,int nfft) {
65 void inv(complex_type * dst,complex_type * src,int nfft) {
70 void fwd(complex_type * dst,scalar_type * src,int nfft) {
75 void inv(scalar_type * dst,complex_type * src,int nfft) {
82 void fwd2( complex_type * dst,complex_type * src,int n0,int n1) {
87 void inv2( complex_type * dst,complex_type * src,int n0,int n1) {
97 typedef fftw_complex complex_type;
103 void fwd(complex_type * dst,complex_type * src,int nfft) {
108 void inv(complex_type * dst,complex_type * src,int nfft) {
[all …]
/external/cronet/tot/third_party/llvm-libc/src/src/complex/generic/
DCMakeLists.txt11 libc.src.__support.complex_type
24 libc.src.__support.complex_type
37 libc.src.__support.complex_type
50 libc.src.__support.complex_type
65 libc.src.__support.complex_type
80 libc.src.__support.complex_type
93 libc.src.__support.complex_type
106 libc.src.__support.complex_type
119 libc.src.__support.complex_type
134 libc.src.__support.complex_type
/external/cronet/stable/third_party/llvm-libc/src/src/complex/generic/
DCMakeLists.txt11 libc.src.__support.complex_type
24 libc.src.__support.complex_type
37 libc.src.__support.complex_type
50 libc.src.__support.complex_type
65 libc.src.__support.complex_type
80 libc.src.__support.complex_type
93 libc.src.__support.complex_type
106 libc.src.__support.complex_type
119 libc.src.__support.complex_type
134 libc.src.__support.complex_type
/external/sdv/vsomeip/third_party/boost/numeric/ublas/test/tensor/
Dtest_functions.cpp277 using complex_type = std::complex<value_type>; in BOOST_FIXTURE_TEST_CASE() typedef
280 using tensor_complex_type = ublas::tensor<complex_type,layout_type>; in BOOST_FIXTURE_TEST_CASE()
321 auto one = complex_type(1,1); in BOOST_FIXTURE_TEST_CASE()
326 tensor_complex_type b = (a+a) / complex_type( 2,2 ); in BOOST_FIXTURE_TEST_CASE()
329 tensor_type r1 = ublas::real( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE()
333 tensor_type r2 = ublas::imag( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE()
337 tensor_complex_type r3 = ublas::conj( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE()
/external/tensorflow/tensorflow/compiler/mlir/lite/utils/
Dvariables_utils.cc47 if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) { in IsSupportedVariableType() local
48 auto complex_element_type = complex_type.getElementType(); in IsSupportedVariableType()
Dconvert_type.cc43 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in ConvertTypeToTensorType() local
44 if (complex_type.getElementType().isF32()) { in ConvertTypeToTensorType()
46 } else if (complex_type.getElementType().isF64()) { in ConvertTypeToTensorType()
Dconstant_utils.cc50 } else if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) { in CreateConstOpWithSingleValue() local
51 auto etype = complex_type.getElementType(); in CreateConstOpWithSingleValue()
/external/tensorflow/tensorflow/compiler/xla/
Dprimitive_util.cc169 PrimitiveType ComplexComponentType(PrimitiveType complex_type) { in ComplexComponentType() argument
170 switch (complex_type) { in ComplexComponentType()
177 << PrimitiveType_Name(complex_type); in ComplexComponentType()
Dprimitive_util.h168 PrimitiveType ComplexComponentType(PrimitiveType complex_type);
/external/tensorflow/tensorflow/core/transforms/utils/
Dop_cat_helper.cc59 ComplexType complex_type = type.cast<ComplexType>(); in SplatElementsAttrHasValue() local
60 if (complex_type.getElementType().isF32()) { in SplatElementsAttrHasValue()
62 } else if (complex_type.getElementType().isF64()) { in SplatElementsAttrHasValue()
/external/pytorch/aten/src/ATen/native/
DComplexHelper.h89 const auto complex_type = c10::toComplexType(self.scalar_type()); in view_as_complex() local
94 return view_tensor(self, complex_type, new_storage_offset, new_sizes, new_strides); in view_as_complex()
/external/tensorflow/tensorflow/compiler/xla/mlir/transforms/runtime/
Dtype_converter.cc90 if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in ConvertElementType() local
91 auto element_type = complex_type.getElementType(); in ConvertElementType()
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/
Dconvert_type.cc127 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in ConvertScalarTypeToDataType() local
128 auto etype = complex_type.getElementType(); in ConvertScalarTypeToDataType()
/external/tensorflow/tensorflow/core/ir/importexport/
Dconvert_types.cc135 } else if (auto complex_type = type.dyn_cast<ComplexType>()) { in ConvertScalarTypeToDataType() local
136 auto etype = complex_type.getElementType(); in ConvertScalarTypeToDataType()
/external/tensorflow/tensorflow/compiler/mlir/xla/
Dtype_to_shape.cc54 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in TypeToPrimitiveType() local
55 mlir::Type element_ty = complex_type.getElementType(); in TypeToPrimitiveType()
Dhlo_utils.cc191 if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) { in CopyDenseElementsDataToXlaFormat() local
192 if (complex_type.getElementType().isF32()) { in CopyDenseElementsDataToXlaFormat()
196 if (complex_type.getElementType().isF64()) { in CopyDenseElementsDataToXlaFormat()
209 if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in GetElementTypeBytes() local
211 GetElementTypeBytes(complex_type.getElementType())); in GetElementTypeBytes()
/external/cronet/stable/third_party/llvm-libc/src/src/__support/
DCMakeLists.txt235 complex_type
237 complex_type.h
/external/cronet/tot/third_party/llvm-libc/src/src/__support/
DCMakeLists.txt235 complex_type
237 complex_type.h
/external/tensorflow/tensorflow/compiler/mlir/tfrt/transforms/
Dcorert_converter.cc76 if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in IsSupportedNumericDType() local
77 auto element_type = complex_type.getElementType(); in IsSupportedNumericDType()
/external/tensorflow/tensorflow/core/ir/types/
Ddialect.cc555 } else if (auto complex_type = type.dyn_cast<ComplexType>()) { in get() local
556 Type etype = complex_type.getElementType(); in get()
/external/pytorch/torch/_inductor/
Ddecomposition.py406 complex_type = torch.promote_types(x.dtype, y.dtype)
429 result = torch.flatten(x_reshaped + z_reshaped, start_dim=-2).view(complex_type)
/external/tensorflow/tensorflow/compiler/mlir/lite/
Dflatbuffer_export.cc157 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in GetTFLiteType() local
158 auto ftype = complex_type.getElementType(); in GetTFLiteType()
/external/sdv/vsomeip/third_party/boost/thread/doc/
Dfutures.qbk228 complex_type the_data;
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/translate/
Dimport.hlotxt1419 // CHECK-LABEL: func private @complex_type
1421 %complex_type (Arg_0.1: c64[2], Arg_1.2: c128[2]) -> (f32[2], f64[2]) {
/external/rust/android-crates-io/crates/bindgen/codegen/
Dmod.rs5167 let complex_type = quote! { in prepend_complex_type() localVariable
5176 let items = vec![complex_type]; in prepend_complex_type()

12