HomeSort by relevance Sort by last modified time
    Searched refs:half (Results 226 - 250 of 834) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestSin.rs 39 half __attribute__((kernel)) testSinHalfHalf(half inV) {
TestSinh.rs 39 half __attribute__((kernel)) testSinhHalfHalf(half inV) {
TestSinpi.rs 39 half __attribute__((kernel)) testSinpiHalfHalf(half inV) {
TestSqrt.rs 39 half __attribute__((kernel)) testSqrtHalfHalf(half inV) {
TestTan.rs 39 half __attribute__((kernel)) testTanHalfHalf(half inV) {
TestTanh.rs 39 half __attribute__((kernel)) testTanhHalfHalf(half inV) {
TestTanpi.rs 39 half __attribute__((kernel)) testTanpiHalfHalf(half inV) {
TestTgamma.rs 39 half __attribute__((kernel)) testTgammaHalfHalf(half inV) {
TestTrunc.rs 39 half __attribute__((kernel)) testTruncHalfHalf(half inV) {
TestFmax.rs 44 half __attribute__((kernel)) testFmaxHalfHalfHalf(half inA, unsigned int x) {
45 half inB = rsGetElementAt_half(gAllocInB, x);
80 half inB = rsGetElementAt_half(gAllocInB, x);
85 half inB = rsGetElementAt_half(gAllocInB, x);
90 half inB = rsGetElementAt_half(gAllocInB, x);
TestFmin.rs 44 half __attribute__((kernel)) testFminHalfHalfHalf(half inA, unsigned int x) {
45 half inB = rsGetElementAt_half(gAllocInB, x);
80 half inB = rsGetElementAt_half(gAllocInB, x);
85 half inB = rsGetElementAt_half(gAllocInB, x);
90 half inB = rsGetElementAt_half(gAllocInB, x);
TestFract.rs 68 half __attribute__((kernel)) testFractHalfHalfHalf(half inV, unsigned int x) {
69 half outFloor = 0;
70 half out = fract(inV, &outFloor);
96 half __attribute__((kernel)) testFractHalfHalf(half inV) {
TestMix.rs 49 half __attribute__((kernel)) testMixHalfHalfHalfHalf(half inStart, unsigned int x) {
50 half inStop = rsGetElementAt_half(gAllocInStop, x);
51 half inFraction = rsGetElementAt_half(gAllocInFraction, x);
93 half inFraction = rsGetElementAt_half(gAllocInFraction, x);
99 half inFraction = rsGetElementAt_half(gAllocInFraction, x);
105 half inFraction = rsGetElementAt_half(gAllocInFraction, x);
TestAtan2.rs 44 half __attribute__((kernel)) testAtan2HalfHalfHalf(half inNumerator, unsigned int x) {
45 half inDenominator = rsGetElementAt_half(gAllocInDenominator, x);
  /external/skia/src/gpu/gradients/
GrTiledGradientEffect.fp 27 half t_1 = t.x - 1;
28 half tiled_t = t_1 - 2 * floor(t_1 * 0.5) - 1;
GrSweepGradientLayout.fp 10 layout(tracked) in uniform half bias;
11 layout(tracked) in uniform half scale;
23 half angle;
25 angle = half(2 * atan(-sk_TransformedCoords2D[0].y,
28 angle = half(atan(-sk_TransformedCoords2D[0].y, -sk_TransformedCoords2D[0].x));
32 half t = (angle * 0.1591549430918 + 0.5 + bias) * scale;
  /external/skqp/src/gpu/gradients/
GrTiledGradientEffect.fp 27 half t_1 = t.x - 1;
28 half tiled_t = t_1 - 2 * floor(t_1 * 0.5) - 1;
  /external/tensorflow/tensorflow/compiler/xla/
types.h 46 using ::Eigen::half;
array4d_test.cc 99 Array4D<Eigen::half> arr = {
116 EXPECT_EQ(arr(0, 0, 0, 0), static_cast<Eigen::half>(1));
117 EXPECT_EQ(arr(0, 0, 1, 0), static_cast<Eigen::half>(2));
118 EXPECT_EQ(arr(0, 1, 0, 0), static_cast<Eigen::half>(3));
119 EXPECT_EQ(arr(0, 3, 1, 0), static_cast<Eigen::half>(8));
120 EXPECT_EQ(arr(1, 0, 0, 0), static_cast<Eigen::half>(9));
121 EXPECT_EQ(arr(1, 1, 1, 0), static_cast<Eigen::half>(12));
122 EXPECT_EQ(arr(2, 0, 0, 0), static_cast<Eigen::half>(17));
123 EXPECT_EQ(arr(2, 1, 1, 0), static_cast<Eigen::half>(20));
124 EXPECT_EQ(arr(2, 2, 0, 0), static_cast<Eigen::half>(21))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
adjust_contrast_op_gpu.cu.cc 30 template struct functor::AdjustContrastv2<GPUDevice, Eigen::half>;
  /external/llvm/test/MC/Hexagon/
relocations.s 21 .half undefined
22 .half 0
97 .half undefined@got
98 .half 0
106 .half undefined@dtprel
107 .half 0
115 .half undefined@gdgot
116 .half 0
128 .half undefined@iegot
129 .half
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Hexagon/
relocations.s 29 .half undefined
30 .half 0
101 .half undefined@got
102 .half 0
110 .half undefined@dtprel
111 .half 0
119 .half undefined@gdgot
120 .half 0
132 .half undefined@iegot
133 .half
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
multioutput_fusion_test.cc 533 auto param = LiteralUtil::CreateR3<Eigen::half>(
534 {{{Eigen::half(1), Eigen::half(2)}, {Eigen::half(3), Eigen::half(4)}},
535 {{Eigen::half(5), Eigen::half(6)}, {Eigen::half(7), Eigen::half(8)}}});
541 LiteralUtil::CreateR3<Eigen::half>(
    [all...]
  /external/skia/src/gpu/effects/
GrCircleEffect.fp 10 in half radius;
13 half prevRadius = -1;
21 // A radius below half causes the implicit insetting done by this processor to become
53 half d;
56 d = half((length((circle.xy - sk_FragCoord.xy) * circle.w) - 1.0) * circle.z);
58 d = half((1.0 - length((circle.xy - sk_FragCoord.xy) * circle.w)) * circle.z);
  /external/tensorflow/tensorflow/stream_executor/cuda/
cuda_dnn.h 75 const DeviceMemory<Eigen::half>& input_data,
77 const DeviceMemory<Eigen::half>& input_h_data,
79 const DeviceMemory<Eigen::half>& input_c_data,
80 const DeviceMemory<Eigen::half>& params,
82 DeviceMemory<Eigen::half>* output_data,
84 DeviceMemory<Eigen::half>* output_h_data,
86 DeviceMemory<Eigen::half>* output_c_data, bool is_training,
129 const DeviceMemory<Eigen::half>& input_data,
131 const DeviceMemory<Eigen::half>& input_h_data,
133 const DeviceMemory<Eigen::half>& input_c_data
    [all...]

Completed in 2323 milliseconds

1 2 3 4 5 6 7 8 91011>>