Home
last modified time | relevance | path

Searched refs:texture_width (Results 1 – 14 of 14) sorted by relevance

/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/
Dconvolution_transposed.h124 int texture_width = dst_depth; in UploadWeights() local
126 int sub_size = SizeOf(weights_type) * 4 * texture_width * texture_height; in UploadWeights()
130 desc.size = int2(texture_width, texture_height); in UploadWeights()
186 int texture_width = dst_depth; in UploadWeights() local
188 int sub_size = float4_size * texture_width * texture_height; in UploadWeights()
192 desc.size = int2(texture_width, texture_height); in UploadWeights()
Ddepthwise_conv_3x3_stride_h2.h75 int texture_width = 10; // 3x3 kernel + 1 bias in UploadWeightsAndBiases() local
77 const int elements_count = texture_width * texture_height; in UploadWeightsAndBiases()
103 desc.size = int2(texture_width, texture_height); in UploadWeightsAndBiases()
Ddepthwise_conv_3x3.h81 int texture_width = 10; // 3x3 kernel + 1 bias in UploadWeightsAndBiases() local
83 const int elements_count = texture_width * texture_height; in UploadWeightsAndBiases()
109 desc.size = int2(texture_width, texture_height); in UploadWeightsAndBiases()
Dconv_powervr.h282 int texture_width = dst_depth; in UploadWeights() local
284 int sub_size = SizeOf(weights_type) * 4 * texture_width * texture_height; in UploadWeights()
288 desc.size = int2(texture_width, texture_height); in UploadWeights()
342 const int texture_width = dst_slices; in UploadWeights() local
345 int sub_size = float4_size * texture_width * texture_height; in UploadWeights()
349 desc.size = int2(texture_width, texture_height); in UploadWeights()
Dconv_weights_converter_test_util.cc68 int texture_width = dst_depth; in ConvolutionWeightsConverterTest() local
70 int sub_size = SizeOf(weights_type) * 4 * texture_width * texture_height; in ConvolutionWeightsConverterTest()
72 dst_tensors[i].shape = BHWC(1, texture_height, texture_width, 4); in ConvolutionWeightsConverterTest()
73 dst_tensors[i].data.resize(4 * texture_width * texture_height); in ConvolutionWeightsConverterTest()
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArraySampling.cpp707 glw::GLubyte getMipmapLevelCount(glw::GLsizei texture_width, glw::GLsizei texture_height) in getMipmapLevelCount() argument
709 glw::GLsizei size = de::max(texture_width, texture_height); in getMipmapLevelCount()
875 glw::GLsizei texture_width, glw::GLsizei texture_height, const T* components) in prepareDataForTexture() argument
879 const glw::GLuint n_pixels = texture_width * texture_height; in prepareDataForTexture()
886 fillImage<T, N_Components>(texture_width, texture_height, components, &texture_data[0]); in prepareDataForTexture()
888 …xSubImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, mipmap_level, 0 /* x */, 0 /* y */, z_offset, texture_width, in prepareDataForTexture()
908 glw::GLenum texture_format, glw::GLenum texture_type, glw::GLsizei texture_width, in prepareDataForColorFloatTexture() argument
916 texture_width, texture_height, components); in prepareDataForColorFloatTexture()
936 glw::GLenum texture_format, glw::GLenum texture_type, glw::GLsizei texture_width, in prepareDataForColorIntTexture() argument
943 …ture<T, 4>(gl, cube_face, element_index, mipmap_level, texture_format, texture_type, texture_width, in prepareDataForColorIntTexture()
[all …]
DesextcTextureCubeMapArrayColorDepthAttachments.cpp476 glw::GLuint texture_width, glw::GLuint n_cubemaps, bool should_generate_mutable_textures) in generateAndConfigureTextureObjects() argument
493 prepareMutableTextureObject(m_color_texture_id, texture_width, n_cubemaps, in generateAndConfigureTextureObjects()
495 prepareMutableTextureObject(m_depth_texture_id, texture_width, n_cubemaps, in generateAndConfigureTextureObjects()
500 prepareImmutableTextureObject(m_color_texture_id, texture_width, n_cubemaps, in generateAndConfigureTextureObjects()
502 prepareImmutableTextureObject(m_depth_texture_id, texture_width, n_cubemaps, in generateAndConfigureTextureObjects()
/external/mesa3d/src/gallium/frontends/glx/xlib/
Dxm_st.c43 unsigned texture_width, texture_height, texture_mask; member
126 if (xstfb->texture_width != width || xstfb->texture_height != height) { in xmesa_st_framebuffer_validate_textures()
182 xstfb->texture_width = width; in xmesa_st_framebuffer_validate_textures()
225 resized = (xstfb->buffer->width != xstfb->texture_width || in xmesa_st_framebuffer_validate()
245 0, 0, xstfb->texture_width, xstfb->texture_height); in xmesa_st_framebuffer_validate()
/external/openscreen/cast/standalone_receiver/
Dsdl_video_player.cc87 int texture_width = -1; in RenderNextFrame() local
89 SDL_QueryTexture(texture_.get(), &texture_format, nullptr, &texture_width, in RenderNextFrame()
91 if (texture_format != sdl_format || texture_width != picture.width || in RenderNextFrame()
/external/mesa3d/src/gallium/frontends/wgl/
Dstw_st.c46 unsigned texture_width, texture_height; member
86 if (stwfb->texture_width != width || stwfb->texture_height != height) { in stw_st_framebuffer_validate_locked()
149 stwfb->texture_width = width; in stw_st_framebuffer_validate_locked()
/external/deqp/external/openglcts/modules/glesext/
DesextcTestCaseBase.cpp948 glw::GLuint texture_width, glw::GLuint texture_height) const in setupFramebufferWithTextureAsAttachment() argument
954 gl.texStorage2D(GL_TEXTURE_2D, 1 /* levels */, texture_format, texture_width, texture_height); in setupFramebufferWithTextureAsAttachment()
965 gl.viewport(0, 0, texture_width, texture_height); in setupFramebufferWithTextureAsAttachment()
/external/deqp/external/openglcts/modules/gl/
Dgl4cTextureViewTests.cpp2109 glw::GLint texture_height, glw::GLint texture_width, in initTextureStorage() argument
2152 …gl.texImage1D(texture_target, n_level, texture_internalformat, texture_width >> n_level, 0, /* bor… in initTextureStorage()
2164 gl.texImage2D(texture_target, n_level, texture_internalformat, texture_width >> n_level, in initTextureStorage()
2181 gl.texImage3D(texture_target, n_level, texture_internalformat, texture_width >> n_level, in initTextureStorage()
2196 texture_internalformat, texture_width >> n_level, texture_height >> n_level, in initTextureStorage()
2209 texture_internalformat, texture_width >> n_level, texture_height >> n_level, in initTextureStorage()
2226 … gl.texImage2D(cubemap_texture_target, n_level, texture_internalformat, texture_width >> n_level, in initTextureStorage()
2241 gl.texImage3D(texture_target, n_level, texture_internalformat, texture_width >> n_level, in initTextureStorage()
2265 gl.texStorage1D(texture_target, n_levels_needed, texture_internalformat, texture_width); in initTextureStorage()
2279 gl.texStorage2D(texture_target, n_levels, texture_internalformat, texture_width, texture_height); in initTextureStorage()
[all …]
Dgl4cTextureViewTests.hpp160 glw::GLint texture_depth, glw::GLint texture_height, glw::GLint texture_width,
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/
Doperation_selector.cc364 int texture_width = dst_depth; in GPUOperationFromNode() local
368 {BHWC(1, texture_height, texture_width, 4), in GPUOperationFromNode()