Home
last modified time | relevance | path

Searched refs:dot2 (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dgpu_hlo_schedule_test.cc79 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 …]
Dstream_assignment_test.cc55 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()
Dcublas_gemm_pad_for_tensor_cores_test.cc124 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/
Dbuiltins-amdgcn-dl-insts-err.cl16 …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}}
Damdgpu-features.cl41 // 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/
Dadler32_ssse3.c43 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()
Dadler32_avx.c45 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/
DBuiltinsAMDGPU.def195 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/
DDormandPrince54StepInterpolator.java203 final double dot2 = 1 - twoTheta; in computeInterpolatedStateAndDerivatives() local
209 interpolatedDerivatives[i] = v1[i] + dot2 * v2[i] + dot3 * v3[i] + dot4 * v4[i]; in computeInterpolatedStateAndDerivatives()
DGraggBulirschStoerStepInterpolator.java322 final double dot2 = theta * (2 - 3 * theta) / h; in computeInterpolatedStateAndDerivatives() local
332 interpolatedDerivatives[i] = dot1 * p1 + dot2 * p2 + dot3 * p3; in computeInterpolatedStateAndDerivatives()
DDormandPrince853StepInterpolator.java364 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/
DSkSLInterpreterTest.cpp715 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/
DShaderCore.cpp473 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()
DShaderCore.hpp83 Float4 dot2(const Vector4f &v0, const Vector4f &v1);
/external/deqp/modules/gles2/functional/
Des2fMultisampleTests.cpp104 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/
Des3fMultisampleTests.cpp106 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/
DShaderCore.hpp210 Float4 dot2(const Vector4f &v0, const Vector4f &v1);
DShaderCore.cpp457 Float4 dot2(const Vector4f &v0, const Vector4f &v1) in dot2() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPU.td396 def FeatureDot2Insts : SubtargetFeature<"dot2-insts",
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPU.td444 def FeatureDot2Insts : SubtargetFeature<"dot2-insts",
/external/wayland/doc/publican/sources/css/
Dcommon.css651 list-style-image: url("../images/dot2.png");