HomeSort by relevance Sort by last modified time
    Searched refs:input_y (Results 1 - 16 of 16) sorted by null

  /external/tensorflow/tensorflow/lite/kernels/
select.cc 39 const TfLiteTensor* input_y = GetInput(context, node, kInputTensorY); local
46 TF_LITE_ENSURE_EQ(context, input_x->type, input_y->type);
47 TF_LITE_ENSURE(context, HaveSameShapes(input_x, input_y));
68 const TfLiteTensor* input_y = GetInput(context, node, kInputTensorY); local
77 GetTensorShape(input_y), GetTensorData<type>(input_y), \
  /external/libxcam/cl_kernel/
kernel_bi_filter.cl 4 * input_y: Y channel image2d_t as read only
32 __read_only image2d_t input_y,
45 float8 center_y = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x, pos_y)))));
47 y1 = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x - 1, pos_y - PATCH_RADIUS + i)))));
48 y2 = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x, pos_y - PATCH_RADIUS + i)))));
60 y1 = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x + 1, pos_y - PATCH_RADIUS + i)))));
kernel_fisheye.cl 3 * input_y, input image, CL_R + CL_UNORM_INT8 //sampler
80 __read_only image2d_t input_y, __read_only image2d_t input_uv,
101 src_ptr[i] = read_imagef (input_y, sampler, src_pos[i]).x;
116 src_ptr[i] = read_imagef (input_y, sampler, pos).x;
kernel_geo_map.cl 3 * input_y, input image, CL_R + CL_UNORM_INT8
67 __read_only image2d_t input_y, __read_only image2d_t input_uv,
88 get_geo_mapped_y (input_y, geo_table, out_map_pos, table_scale_step.x, out_of_bound, input_pos, &output_data);
104 get_geo_mapped_y (input_y, geo_table, out_map_pos, table_scale_step.x, out_of_bound, input_pos, &output_data);
kernel_csc.cl 132 __read_only image2d_t input_y, __write_only image2d_t output, __read_only image2d_t input_uv)
137 float4 pixel_y1 = read_imagef(input_y, sampler, (int2)(2 * x, 2 * y));
138 float4 pixel_y2 = read_imagef(input_y, sampler, (int2)(2 * x + 1, 2 * y));
139 float4 pixel_y3 = read_imagef(input_y, sampler, (int2)(2 * x, 2 * y + 1));
140 float4 pixel_y4 = read_imagef(input_y, sampler, (int2)(2 * x + 1, 2 * y + 1));
kernel_defog_dcp.cl 3 * input_y: Y channel image2d_t as read only
15 __read_only image2d_t input_y, __read_only image2d_t input_uv,
28 y[0] = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x, pos_y * 2)))));
29 y[1] = convert_float8(as_uchar8(convert_ushort4(read_imageui(input_y, sampler, (int2)(pos_x, pos_y * 2 + 1)))));
kernel_bayer_pipe.cl 376 int input_y = i / workitem_x_size;
380 input_x + SLM_CELL_X_OFFSET, input_y + SLM_CELL_Y_OFFSET,
382 (input_x + x_start) * PIXEL_PER_CELL / 4, (input_y + y_start) * PIXEL_PER_CELL, has_denoise, SLM_delta_coef_table, ee_config);
kernel_retinex.cl 56 __read_only image2d_t input_y, __read_only image2d_t input_uv,
77 y_in = read_imagef(input_y, sampler_orig, (int2)(x, y)) * 255.0f;
  /external/tensorflow/tensorflow/contrib/image/kernels/
image_ops.h 70 const float input_y = local
78 return nearest_interpolation(coords[0], input_y, input_x, coords[3],
81 return bilinear_interpolation(coords[0], input_y, input_x, coords[3],
  /external/tensorflow/tensorflow/core/grappler/optimizers/data/
rebatch.cc 111 NodeDef* AddBinaryNode(const string& input_x, const string& input_y,
117 node.add_input(input_y);
124 NodeDef* AddFloatDivNode(const string& input_x, const string& input_y,
126 return AddBinaryNode(input_x, input_y, kRealDivOp, DT_FLOAT, graph);
  /external/libxcam/modules/ocl/
cl_fisheye_handler.cpp 80 SmartPtr<CLImage> input_y = _handler->get_input_image (NV12PlaneYIdx); local
84 const CLImageDesc &input_y_desc = input_y->get_image_desc ();
113 args.push_back (new CLMemArgument (input_y));
cl_geo_map_handler.cpp 48 SmartPtr<CLImage> input_y = _handler->get_geo_input_image (NV12PlaneYIdx); local
60 args.push_back (new CLMemArgument (input_y));
  /external/tensorflow/tensorflow/core/grappler/utils/
functions_test.cc 754 const NodeDef &input_y = item.function_body().node(1); local
758 EXPECT_EQ("Placeholder", input_y.op());
780 EXPECT_EQ("Const", input_y.op());
781 EXPECT_EQ("const_input_y", input_y.attr().at("Tag").s());
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/optimized/
optimized_ops.h 5919 float input_y = y * height_scale; local
5967 float input_y = y * height_scale; local
    [all...]