Home
last modified time | relevance | path

Searched refs:rsqrt (Results 1 – 25 of 76) sorted by relevance

1234

/third_party/skia/tests/sksl/intrinsics/
DInversesqrt.metal19rsqrt(_uniforms.inputVal.x) == _uniforms.expected.x && all(rsqrt(_uniforms.inputVal.xy) == _unifor…
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/inverseSqrt/
D84407e.wgsl.expected.glsl7 float res = rsqrt(1.0f);
34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
44 float res = rsqrt(1.0f);
61 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
71 float res = rsqrt(1.0f);
89 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
D8f2bd2.wgsl.expected.glsl7 vec2 res = rsqrt(vec2(0.0f, 0.0f));
34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
45 vec2 res = rsqrt(vec2(0.0f, 0.0f));
62 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
73 vec2 res = rsqrt(vec2(0.0f, 0.0f));
91 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
Db197b1.wgsl.expected.glsl7 vec3 res = rsqrt(vec3(0.0f, 0.0f, 0.0f));
34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
45 vec3 res = rsqrt(vec3(0.0f, 0.0f, 0.0f));
62 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
73 vec3 res = rsqrt(vec3(0.0f, 0.0f, 0.0f));
91 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
Dc22347.wgsl.expected.glsl7 vec4 res = rsqrt(vec4(0.0f, 0.0f, 0.0f, 0.0f));
34 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
45 vec4 res = rsqrt(vec4(0.0f, 0.0f, 0.0f, 0.0f));
62 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
73 vec4 res = rsqrt(vec4(0.0f, 0.0f, 0.0f, 0.0f));
91 ERROR: 0:5: 'rsqrt' : no matching overloaded function found
D84407e.wgsl.expected.hlsl2 float res = rsqrt(1.0f);
D8f2bd2.wgsl.expected.hlsl2 float2 res = rsqrt(float2(0.0f, 0.0f));
D8f2bd2.wgsl.expected.msl9 float2 res = rsqrt(float2());
D84407e.wgsl.expected.msl9 float res = rsqrt(1.0f);
Db197b1.wgsl.expected.msl9 float3 res = rsqrt(float3());
Dc22347.wgsl.expected.msl9 float4 res = rsqrt(float4());
Db197b1.wgsl.expected.hlsl2 float3 res = rsqrt(float3(0.0f, 0.0f, 0.0f));
Dc22347.wgsl.expected.hlsl2 float4 res = rsqrt(float4(0.0f, 0.0f, 0.0f, 0.0f));
/third_party/mindspore/tests/ut/cpp/python_input/gtest_input/pre_activate/
Dlamb_next_mv_with_decay_v1_rule.py22 rsqrt = P.Rsqrt() variable
54 sqrt0 = rsqrt(add2)
89 sqrt0 = rsqrt(add2)
113 sqrt0 = rsqrt(add2)
138 sqrt0 = rsqrt(add2)
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Drmsprop_impl.cu26 …moment[i] = momentum * moment[i] + learning_rate[0] * rsqrt(mean_square[i] + epsilon) * gradients[… in RmsPropKernel()
46rsqrt(mean_square[i] - mean_gradients[i] * mean_gradients[i] + epsilon[0]) * gradients[i]; in RmsPropCenterKernel()
/third_party/flutter/skia/tests/
DSkVxTest.cpp37 float4 RSqrt(float4 x) { return rsqrt(x); } in RSqrt()
110 REPORTER_ASSERT(r, all(rsqrt(float4{2,3,4,5}) < float4{1.0f,1.0f,1.0f,0.5f})); in DEF_TEST()
114 REPORTER_ASSERT(r, all(rsqrt(float2{2,3}) < float2{1.0f,1.0f})); in DEF_TEST()
DMathTest.cpp257 static void test_rsqrt(skiatest::Reporter* reporter, RSqrtFn rsqrt) { in test_rsqrt() argument
264 float estimate = rsqrt(input); in test_rsqrt()
274 float estimate = rsqrt(input); in test_rsqrt()
284 float estimate = rsqrt(input); in test_rsqrt()
/third_party/glslang/Test/
Dhlsl.intrinsics.vert45 rsqrt(inF0);
119 rsqrt(inF0);
189 rsqrt(inF0);
259 rsqrt(inF0);
314 rsqrt(inF0); \
Dhlsl.intrinsics.frag73 float r050 = rsqrt(inF0);
161 float2 r056 = rsqrt(inF0);
243 float3 r057 = rsqrt(inF0);
324 float4 r057 = rsqrt(inF0);
385 MT r035 = rsqrt(inF0); \
/third_party/mindspore/mindspore/ops/_op_impl/akg/ascend/
D__init__.py41 from .rsqrt import _rsqrt_akg
/third_party/skia/tests/
DMathTest.cpp255 static void test_rsqrt(skiatest::Reporter* reporter, RSqrtFn rsqrt) { in test_rsqrt() argument
262 float estimate = rsqrt(input); in test_rsqrt()
272 float estimate = rsqrt(input); in test_rsqrt()
282 float estimate = rsqrt(input); in test_rsqrt()
/third_party/flutter/skia/src/gpu/ccpr/
DGrCCStrokeGeometry.cpp27 return v * vv.rsqrt(); in normalize()
40 Sk2f invlength = (X*X + Y*Y).rsqrt(); in normalize2()
47 Sk2f invlength = (X*X + Y*Y).rsqrt(); in calc_curvature_costheta()
/third_party/flutter/skia/include/private/
DSkVx.h286 SIT Vec<1,T> rsqrt(const Vec<1,T>& x) { return rcp(sqrt(x)); }
314 SINT Vec<N,T> rsqrt(const Vec<N,T>& x) { return join(rsqrt(x.lo), rsqrt(x.hi)); }
473 static inline Vec<4,float> rsqrt(const Vec<4,float>& x) {
483 static inline Vec<2,float> rsqrt(const Vec<2,float>& x) {
484 return shuffle<0,1>(rsqrt(shuffle<0,1,0,1>(x)));
/third_party/skia/third_party/externals/tint/docs/
Dtranslations.md77 | inverseSqrt | GLSLstd450InverseSqrt | rsqrt | rsqrt |
/third_party/boost/boost/compute/functional/
Dmath.hpp66 BOOST_COMPUTE_DECLARE_BUILTIN_FUNCTION(rsqrt, T (T), class T)

1234