Home
last modified time | relevance | path

Searched refs:orig_width (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/python/keras/layers/preprocessing/
Dimage_preprocessing_test.py44 orig_width = 8
51 input_shape=(num_samples, orig_height, orig_width, channels),
96 orig_width = images.shape[2]
98 width_start = int((orig_width - expected_width) / 2)
111 orig_width = 8
115 (num_samples, orig_height, orig_width, channels)).astype(np.float32)
122 input_shape=(num_samples, orig_height, orig_width, channels),
172 orig_width = 8
179 input_shape=(num_samples, orig_height, orig_width, channels),
301 orig_width = 8
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_ResizeNearestNeighborGrad.pbtxt13 = A 1-D int32 Tensor of 2 elements: `orig_height, orig_width`. The
20 4-D with shape `[batch, orig_height, orig_width, channels]`. Gradients
Dapi_def_ResizeBicubicGrad.pbtxt13 4-D with shape `[batch, orig_height, orig_width, channels]`,
20 4-D with shape `[batch, orig_height, orig_width, channels]`.
Dapi_def_ResizeBilinearGrad.pbtxt13 4-D with shape `[batch, orig_height, orig_width, channels]`,
20 4-D with shape `[batch, orig_height, orig_width, channels]`.
/external/deqp-deps/SPIRV-Tools/source/opt/
Dconvert_to_half_pass.cpp127 uint32_t orig_width = (cty_inst->GetSingleWordInOperand(0) == 16) ? 32 : 16; in MatConvertCleanup() local
129 uint32_t orig_vty_id = EquivFloatTypeId(vty_id, orig_width); in MatConvertCleanup()
145 inst->SetResultType(EquivFloatTypeId(mty_id, orig_width)); in MatConvertCleanup()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dconvert_to_half_pass.cpp127 uint32_t orig_width = (cty_inst->GetSingleWordInOperand(0) == 16) ? 32 : 16; in MatConvertCleanup() local
129 uint32_t orig_vty_id = EquivFloatTypeId(vty_id, orig_width); in MatConvertCleanup()
145 inst->SetResultType(EquivFloatTypeId(mty_id, orig_width)); in MatConvertCleanup()
/external/angle/third_party/spirv-tools/src/source/opt/
Dconvert_to_half_pass.cpp127 uint32_t orig_width = (cty_inst->GetSingleWordInOperand(0) == 16) ? 32 : 16; in MatConvertCleanup() local
129 uint32_t orig_vty_id = EquivFloatTypeId(vty_id, orig_width); in MatConvertCleanup()
145 inst->SetResultType(EquivFloatTypeId(mty_id, orig_width)); in MatConvertCleanup()
/external/libaom/libaom/av1/encoder/
Dintra_mode_search.c520 int orig_width, int orig_height, in extend_palette_color_map() argument
523 assert(new_width >= orig_width); in extend_palette_color_map()
525 if (new_width == orig_width && new_height == orig_height) return; in extend_palette_color_map()
528 memmove(color_map + j * new_width, color_map + j * orig_width, orig_width); in extend_palette_color_map()
530 memset(color_map + j * new_width + orig_width, in extend_palette_color_map()
531 color_map[j * new_width + orig_width - 1], new_width - orig_width); in extend_palette_color_map()
/external/mesa3d/src/intel/compiler/
Dbrw_fs_copy_propagation.cpp623 const unsigned orig_width = 1 << entry->src.width; in try_copy_propagate() local
626 inst->src[arg].width = cvt(MIN2(orig_width, reg_width)) - 1; in try_copy_propagate()