/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | gpu_hlo_schedule_test.cc | 79 HloInstruction* dot2 = in TEST_F() local 83 module->AddEntryComputation(builder.Build(dot2)); in TEST_F() 87 streams->StreamNumberForHlo(*dot2)); in TEST_F() 92 HloVec({dot1, dot2})); in TEST_F() 98 EXPECT_TRUE(order->ExecutesBefore(x, dot2)); in TEST_F() 100 EXPECT_TRUE(order->ExecutesBefore(y, dot2)); in TEST_F() 101 EXPECT_TRUE(order->ExecutesBefore(z, dot2)); in TEST_F() 102 EXPECT_TRUE(order->ExecutesBefore(dot1, dot2)); in TEST_F() 118 EXPECT_FALSE(order->ExecutesBefore(dot2, x)); in TEST_F() 119 EXPECT_FALSE(order->ExecutesBefore(dot2, y)); in TEST_F() [all …]
|
D | stream_assignment_test.cc | 55 HloInstruction* dot2 = in TEST_F() local 59 module->AddEntryComputation(builder.Build(dot2)); in TEST_F() 63 assignment->StreamNumberForHlo(*dot2)); in TEST_F() 74 HloInstruction* dot2 = in TEST_F() local 77 HloInstruction::CreateBinary(f32_2x2_, HloOpcode::kAdd, dot1, dot2)); in TEST_F() 84 assignment->StreamNumberForHlo(*dot2)); in TEST_F()
|
D | cublas_gemm_pad_for_tensor_cores_test.cc | 124 auto* dot2 = root->operand(0)->operand(0)->operand(0)->operand(0); in TEST_F() local 126 dot2, in TEST_F()
|
/external/llvm-project/clang/test/CodeGenOpenCL/ |
D | builtins-amdgcn-dl-insts-err.cl | 16 …2hB, fC, false); // expected-error {{'__builtin_amdgcn_fdot2' needs target feature dot2-insts}} 17 …2hB, fC, true); // expected-error {{'__builtin_amdgcn_fdot2' needs target feature dot2-insts}} 19 … v2ssB, siC, false); // expected-error {{'__builtin_amdgcn_sdot2' needs target feature dot2-insts}} 20 … v2ssB, siC, true); // expected-error {{'__builtin_amdgcn_sdot2' needs target feature dot2-insts}} 22 … v2usB, uiC, false); // expected-error {{'__builtin_amdgcn_udot2' needs target feature dot2-insts}} 23 … v2usB, uiC, true); // expected-error {{'__builtin_amdgcn_udot2' needs target feature dot2-insts}} 28 …iB, uiC, false); // expected-error {{'__builtin_amdgcn_udot4' needs target feature dot2-insts}} 29 …iB, uiC, true); // expected-error {{'__builtin_amdgcn_udot4' needs target feature dot2-insts}} 34 …iB, uiC, false); // expected-error {{'__builtin_amdgcn_udot8' needs target feature dot2-insts}} 35 …iB, uiC, true); // expected-error {{'__builtin_amdgcn_udot8' needs target feature dot2-insts}}
|
D | amdgpu-features.cl | 41 // GFX906: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dpp,+flat-… 42 // GFX908: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot3-insts… 46 // GFX1011: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot5-inst… 47 // GFX1012: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot5-inst… 48 // GFX1030: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot5-inst… 49 // GFX1031: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot5-inst… 50 // GFX1032: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot5-inst… 51 // GFX1033: "target-features"="+16-bit-insts,+ci-insts,+dl-insts,+dot1-insts,+dot2-insts,+dot5-inst…
|
/external/rust/crates/libz-sys/src/zlib-ng/arch/x86/ |
D | adler32_ssse3.c | 43 char ALIGNED_(16) dot2[16] = {16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1}; in adler32_ssse3() 44 __m128i dot2v = _mm_load_si128((__m128i*)dot2); in adler32_ssse3()
|
D | adler32_avx.c | 45 char ALIGNED_(32) dot2[32] = \ in adler32_avx2() 48 __m256i dot2v = _mm256_load_si256((__m256i*)dot2); in adler32_avx2()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | BuiltinsAMDGPU.def | 195 TARGET_BUILTIN(__builtin_amdgcn_fdot2, "fV2hV2hfIb", "nc", "dot2-insts") 196 TARGET_BUILTIN(__builtin_amdgcn_sdot2, "SiV2SsV2SsSiIb", "nc", "dot2-insts") 197 TARGET_BUILTIN(__builtin_amdgcn_udot2, "UiV2UsV2UsUiIb", "nc", "dot2-insts") 199 TARGET_BUILTIN(__builtin_amdgcn_udot4, "UiUiUiUiIb", "nc", "dot2-insts") 201 TARGET_BUILTIN(__builtin_amdgcn_udot8, "UiUiUiUiIb", "nc", "dot2-insts")
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/ |
D | DormandPrince54StepInterpolator.java | 203 final double dot2 = 1 - twoTheta; in computeInterpolatedStateAndDerivatives() local 209 interpolatedDerivatives[i] = v1[i] + dot2 * v2[i] + dot3 * v3[i] + dot4 * v4[i]; in computeInterpolatedStateAndDerivatives()
|
D | GraggBulirschStoerStepInterpolator.java | 322 final double dot2 = theta * (2 - 3 * theta) / h; in computeInterpolatedStateAndDerivatives() local 332 interpolatedDerivatives[i] = dot1 * p1 + dot2 * p2 + dot3 * p3; in computeInterpolatedStateAndDerivatives()
|
D | DormandPrince853StepInterpolator.java | 364 final double dot2 = theta * (2 - 3 * theta); in computeInterpolatedStateAndDerivatives() local 379 interpolatedDerivatives[i] = v[0][i] + dot1 * v[1][i] + dot2 * v[2][i] + in computeInterpolatedStateAndDerivatives()
|
/external/skia/tests/ |
D | SkSLInterpreterTest.cpp | 715 auto dot2 = SkSL::Program_GetFunction(*program, "dot2_test"); in DEF_TEST() local 722 REPORTER_ASSERT(r, dot2); in DEF_TEST() 736 test_fn(dot2, 3.0f, -1.0f); in DEF_TEST()
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.cpp | 473 Float4 dot2(const Vector4f &v0, const Vector4f &v1) in dot2() function 960 dst = Sqrt(dot2(src, src)); in len2() 982 Float4 dot2 = dx * dx + dy * dy; in dist2() local 983 dst = Sqrt(dot2); in dist2() 1017 Float4 t = dot2(src0, src1); in dp2() 1027 Float4 t = dot2(src0, src1) + src2.x; in dp2add() 1430 Int4 flip = CmpNLT(dot2(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward2() 1464 Float4 d = dot2(N, I); in reflect2() 1501 Float4 d = dot2(N, I); in refract2() 1569 Float4 dot = dot2(src, src); in nrm2()
|
D | ShaderCore.hpp | 83 Float4 dot2(const Vector4f &v0, const Vector4f &v1);
|
/external/deqp/modules/gles2/functional/ |
D | es2fMultisampleTests.cpp | 104 int dot2 = (point.x()-p2.x()) * (p3.y()-p2.y()) + (point.y()-p2.y()) * (p2.x()-p3.x()); in isInsideQuad() local 107 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0); in isInsideQuad()
|
/external/deqp/modules/gles3/functional/ |
D | es3fMultisampleTests.cpp | 106 int dot2 = (point.x()-p2.x()) * (p3.y()-p2.y()) + (point.y()-p2.y()) * (p2.x()-p3.x()); in isInsideQuad() local 109 return (dot0 > 0) == (dot1 > 0) && (dot1 > 0) == (dot2 > 0) && (dot2 > 0) == (dot3 > 0); in isInsideQuad()
|
/external/swiftshader/src/Pipeline/ |
D | ShaderCore.hpp | 210 Float4 dot2(const Vector4f &v0, const Vector4f &v1);
|
D | ShaderCore.cpp | 457 Float4 dot2(const Vector4f &v0, const Vector4f &v1) in dot2() function
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPU.td | 396 def FeatureDot2Insts : SubtargetFeature<"dot2-insts",
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPU.td | 444 def FeatureDot2Insts : SubtargetFeature<"dot2-insts",
|
/external/wayland/doc/publican/sources/css/ |
D | common.css | 651 list-style-image: url("../images/dot2.png");
|