Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/kernels/
Dlrn_op.cc318 const Tensor& in_grads, const Tensor& in_image, in launch()
326 auto in_shaped = in_image.shaped<T, 2>({nodes * batch, depth}); in launch()
392 const Tensor& in_grads, const Tensor& in_image, in launch()
425 auto input_image_data = StreamExecutorUtil::AsDeviceMemory<T>(in_image); in launch()
474 const Tensor& in_image = context->input(1); in Compute() local
477 OP_REQUIRES(context, in_grads.dims() == 4 && in_image.dims() == 4, in Compute()
485 in_image.dim_size(0) == batch && in_image.dim_size(1) == rows && in Compute()
486 in_image.dim_size(2) == cols && in_image.dim_size(3) == depth && in Compute()
499 launcher.launch(context, this, in_grads, in_image, out_image, output); in Compute()
/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 const 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.cpp3881 std::vector<GLubyte> in_image(64 * 64 * 4, 0x0f); in Run() local
3887 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, 64, 64, 0, GL_RGBA, GL_UNSIGNED_BYTE, &in_image[0]); in Run()