HomeSort by relevance Sort by last modified time
    Searched refs:complex128 (Results 151 - 175 of 395) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/core/kernels/
matrix_triangular_solve_op.cc 127 (MatrixTriangularSolveOp<complex128>), complex128);
253 (MatrixTriangularSolveOpGPU<complex128>), complex128);
reduction_ops.h 60 FIX_MEAN_IDENTITY(complex128)
mkl_batch_matmul_op.cc 21 // types (float, double, complex64, complex128). The macro INTEL_MKL is defined
201 const complex128 **A_Array,
203 const complex128 **B_Array,
204 const MKL_INT *ldb_Array, complex128 **C_Array,
211 std::vector<complex128> alpha_Array(group_size[0], {1.0f, 0.0f});
212 std::vector<complex128> beta_Array(group_size[0], {0.0f, 0.0f});
save_v2_op_test.cc 114 // Add a 2-d complex128 tensor
115 AddInput<complex128>(TensorShape({2, 3}), [](int x) -> complex128 {
116 return complex128(100 + x, 200 + x);
309 // The 2-d complex128 tensor
320 EXPECT_EQ(100 + i, val.template flat<complex128>()(i).real());
321 EXPECT_EQ(200 + i, val.template flat<complex128>()(i).imag());
fill_functor.cc 55 DEFINE_SETZERO_CPU(complex128);
101 DEFINE_SETONE_CPU(complex128);
  /external/tensorflow/tensorflow/core/lib/bfloat16/
bfloat16.h 39 typedef std::complex<double> complex128; typedef in namespace:tensorflow
65 B16_DEVICE_FUNC explicit bfloat16(const complex128& val)
160 B16_DEVICE_FUNC explicit operator complex128() const {
161 return complex128(double(*this), double(0.0));
  /prebuilts/go/darwin-x86/src/go/types/
builtins_test.go 46 {"complex", `var im float64; _ = complex(1, im)`, `func(float64, float64) complex128`},
48 {"complex", `type F64 float64; var re, im F64; _ = complex(re, im)`, `func(p.F64, p.F64) complex128`},
61 {"imag", `var c complex128; _ = imag(c)`, `func(complex128) float64`},
63 {"imag", `type C128 complex128; var c C128; _ = imag(c)`, `func(p.C128) float64`},
67 {"real", `var c complex128; _ = real(c)`, `func(complex128) float64`},
69 {"real", `type C128 complex128; var c C128; _ = real(c)`, `func(p.C128) float64`},
exprstring_test.go 27 {"func(x int) complex128 {}", "(func(x int) complex128 literal)"},
  /prebuilts/go/darwin-x86/src/math/cmplx/
exp.go 51 func Exp(x complex128) complex128 {
  /prebuilts/go/darwin-x86/test/ken/
cplx2.go 117 r64 := real(complex128(ce))
119 println("real(complex128(ce))", r64, real(Ce))
  /prebuilts/go/darwin-x86/test/
makechan.go 30 sink = make(T, complex128(1+0i)) // ERROR "non-integer buffer argument in make.*"
33 sink = make(T, complex128(1+0i)) // ERROR "non-integer buffer argument in make.*"
makemap.go 30 sink = make(T, complex128(1+0i)) // ERROR "non-integer size argument in make.*"
33 sink = make(T, complex128(1+0i)) // ERROR "non-integer size argument in make.*"
shift1.go 239 var z complex128
240 z = (1 << s) << (1 << s) // ERROR "non-integer|type complex128"
241 z = (1 << s) << (1. << s) // ERROR "non-integer|type complex128"
242 z = (1 << s) << (1.1 << s) // ERROR "invalid|truncated|complex128"
243 z = (1. << s) << (1 << s) // ERROR "non-integer|type complex128"
244 z = (1. << s) << (1. << s) // ERROR "non-integer|type complex128"
245 z = (1.1 << s) << (1.1 << s) // ERROR "invalid|truncated|complex128"
  /prebuilts/go/linux-x86/src/go/types/
builtins_test.go 46 {"complex", `var im float64; _ = complex(1, im)`, `func(float64, float64) complex128`},
48 {"complex", `type F64 float64; var re, im F64; _ = complex(re, im)`, `func(p.F64, p.F64) complex128`},
61 {"imag", `var c complex128; _ = imag(c)`, `func(complex128) float64`},
63 {"imag", `type C128 complex128; var c C128; _ = imag(c)`, `func(p.C128) float64`},
67 {"real", `var c complex128; _ = real(c)`, `func(complex128) float64`},
69 {"real", `type C128 complex128; var c C128; _ = real(c)`, `func(p.C128) float64`},
exprstring_test.go 27 {"func(x int) complex128 {}", "(func(x int) complex128 literal)"},
  /prebuilts/go/linux-x86/src/math/cmplx/
exp.go 51 func Exp(x complex128) complex128 {
  /prebuilts/go/linux-x86/test/ken/
cplx2.go 117 r64 := real(complex128(ce))
119 println("real(complex128(ce))", r64, real(Ce))
  /prebuilts/go/linux-x86/test/
makechan.go 30 sink = make(T, complex128(1+0i)) // ERROR "non-integer buffer argument in make.*"
33 sink = make(T, complex128(1+0i)) // ERROR "non-integer buffer argument in make.*"
makemap.go 30 sink = make(T, complex128(1+0i)) // ERROR "non-integer size argument in make.*"
33 sink = make(T, complex128(1+0i)) // ERROR "non-integer size argument in make.*"
shift1.go 239 var z complex128
240 z = (1 << s) << (1 << s) // ERROR "non-integer|type complex128"
241 z = (1 << s) << (1. << s) // ERROR "non-integer|type complex128"
242 z = (1 << s) << (1.1 << s) // ERROR "invalid|truncated|complex128"
243 z = (1. << s) << (1 << s) // ERROR "non-integer|type complex128"
244 z = (1. << s) << (1. << s) // ERROR "non-integer|type complex128"
245 z = (1.1 << s) << (1.1 << s) // ERROR "invalid|truncated|complex128"
  /external/tensorflow/tensorflow/python/framework/
dtypes.py 40 * `tf.complex128`: 128-bit double-precision complex.
116 elif base == complex128:
160 return self.base_dtype in (complex64, complex128)
191 self.base_dtype in (bool, string, complex64, complex128)):
215 self.base_dtype in (bool, string, complex64, complex128)):
355 complex128 = DType(types_pb2.DT_COMPLEX128) variable
356 tf_export("complex128").export_constant(__name__, "complex128")
414 types_pb2.DT_COMPLEX128: complex128,
464 types_pb2.DT_COMPLEX128: "complex128",
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
determinant_op_test.py 114 np.array([[2., 3.], [3., 4.]]).astype(np.complex128))
116 np.array([[0., 0.], [0., 0.]]).astype(np.complex128))
119 np.complex128))
124 ], [1., 6., 7., 4., 7.], [2., 3., 4., 5., 6.]]).astype(np.complex128))
127 np.random.rand(3, 4, 5, 2, 2).astype(np.complex128))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
fp.go 323 // rounding forced by a complex128() cast produces the expected
329 res complex128
342 check := func(s string, got, expected complex128) int {
351 fmt.Sprintf("complex128(complex(%v, 1)*3) + complex(%v, 0)", t.x, t.y),
352 func(x, y float64) complex128 {
353 return complex128(complex(x, 1)*3) + complex(y, 0)
358 fmt.Sprintf("z := complex(%v, 1); z += complex128(complex(%v, 1) * 3)", t.y, t.x),
359 func(x, y float64) complex128 {
361 z += complex128(complex(x, 1) * 3)
1549 func expectCx128(s string, x, expected complex128) int
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
fp.go 323 // rounding forced by a complex128() cast produces the expected
329 res complex128
342 check := func(s string, got, expected complex128) int {
351 fmt.Sprintf("complex128(complex(%v, 1)*3) + complex(%v, 0)", t.x, t.y),
352 func(x, y float64) complex128 {
353 return complex128(complex(x, 1)*3) + complex(y, 0)
358 fmt.Sprintf("z := complex(%v, 1); z += complex128(complex(%v, 1) * 3)", t.y, t.x),
359 func(x, y float64) complex128 {
361 z += complex128(complex(x, 1) * 3)
1549 func expectCx128(s string, x, expected complex128) int
    [all...]
  /external/tensorflow/tensorflow/core/framework/
tensor_test.cc 102 EXPECT_FALSE(std::is_trivial<complex128>::value);
    [all...]

Completed in 1699 milliseconds

1 2 3 4 5 67 8 91011>>