Home
last modified time | relevance | path

Searched refs:in_image (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/lite/micro/examples/image_recognition_experimental/stm32f746_discovery/
Dimage_util.cc22 const uint8_t* in_image, uint8_t* out_image) { in ResizeConvertImage() argument
40 uint8_t pix_lo = in_image[orig_img_loc]; in ResizeConvertImage()
41 uint8_t pix_hi = in_image[orig_img_loc + 1]; in ResizeConvertImage()
/external/tensorflow/tensorflow/core/kernels/
Dlrn_op.cc396 const Tensor& in_grads, const Tensor& in_image, in launch()
404 auto in_shaped = in_image.shaped<T, 2>({nodes * batch, depth}); in launch()
475 const Tensor& in_grads, const Tensor& in_image, in launch()
509 auto input_image_data = StreamExecutorUtil::AsDeviceMemory<T>(in_image); in launch()
546 ShapeFromFormat(FORMAT_NCHW, in_image.shape(), in launch()
550 in_image.tensor<T, 4>(), in launch()
657 const Tensor& in_image = context->input(1); in Compute() local
660 OP_REQUIRES(context, in_grads.dims() == 4 && in_image.dims() == 4, in Compute()
668 in_image.dim_size(0) == batch && in_image.dim_size(1) == rows && in Compute()
669 in_image.dim_size(2) == cols && in_image.dim_size(3) == depth && in Compute()
[all …]
/external/tensorflow/tensorflow/compiler/tests/
Dlrn_ops_test.py114 in_image = constant_op.constant(in_image_vals, shape=shape)
118 expected = gen_nn_ops.lrn_grad(out_grads, in_image, out_image,
121 actual = gen_nn_ops.lrn_grad(out_grads, in_image, out_image,
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dlrn_ops.cc115 xla::XlaOp in_image = ctx->Input(1); in Compile() local
139 XlaHelpers::ConvertElementType(in_image, accumulation_type); in Compile()
166 xla::Mul(in_image, dy_reduced), in Compile()
/external/libpng/contrib/libtests/
Dpngstest.c2026 Image* in_image; /* Input image */ member
2063 transform_from_formats(Transform *result, Image *in_image, in transform_from_formats() argument
2072 result->in_image = in_image; in transform_from_formats()
2075 in_format = in_image->image.format; in transform_from_formats()
2086 result->accumulate = (in_image->opts & ACCUMULATE) != 0; in transform_from_formats()
2349 png_uint_32 in_format = transform->in_image->image.format; in logpixel()
2394 if (transform->in_image->file_name != transform->out_image->file_name) in logpixel()
2401 return logerror(transform->in_image, transform->in_image->file_name, in logpixel()
2413 return logerror(transform->in_image, transform->in_image->file_name, in logpixel()
/external/deqp/external/openglcts/modules/gles31/
Des31cComputeShaderTests.cpp3540 std::vector<GLubyte> in_image(64 * 64 * 4, 0x0f); in Run() local
3547 glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 64, 64, GL_RGBA, GL_UNSIGNED_BYTE, &in_image[0]); in Run()
/external/deqp/external/openglcts/modules/gl/
Dgl4cComputeShaderTests.cpp3879 std::vector<GLubyte> in_image(64 * 64 * 4, 0x0f); in Run() local
3885 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, 64, 64, 0, GL_RGBA, GL_UNSIGNED_BYTE, &in_image[0]); in Run()