Searched refs:dim_y (Results 1 – 9 of 9) sorted by relevance
/external/eigen/unsupported/test/ |
D | cxx11_tensor_reduction_cuda.cu | 62 int dim_y = 1; in test_first_dim_reductions() local 65 Tensor<Type, 3, DataLayout> in(dim_x, dim_y, dim_z); in test_first_dim_reductions() 77 Type* in_data = (Type*)dev.allocate(dim_x*dim_y*dim_z*sizeof(Type)); in test_first_dim_reductions() 78 Type* out_data = (Type*)dev.allocate(dim_z*dim_y*sizeof(Type)); in test_first_dim_reductions() 79 Eigen::TensorMap<Eigen::Tensor<Type, 3, DataLayout> > gpu_in(in_data, dim_x, dim_y, dim_z); in test_first_dim_reductions() 80 Eigen::TensorMap<Eigen::Tensor<Type, 2, DataLayout> > gpu_out(out_data, dim_y, dim_z); in test_first_dim_reductions() 86 Tensor<Type, 2, DataLayout> redux_gpu(dim_y, dim_z); in test_first_dim_reductions() 102 int dim_y = 1; in test_last_dim_reductions() local 105 Tensor<Type, 3, DataLayout> in(dim_x, dim_y, dim_z); in test_last_dim_reductions() 117 Type* in_data = (Type*)dev.allocate(dim_x*dim_y*dim_z*sizeof(Type)); in test_last_dim_reductions() [all …]
|
D | cxx11_tensor_reduction_sycl.cpp | 58 int dim_y = 1; in test_first_dim_reductions_sycl() local 61 array<int, 3> tensorRange = {{dim_x, dim_y, dim_z}}; in test_first_dim_reductions_sycl() 64 array<int, 2> reduced_tensorRange = {{dim_y, dim_z}}; in test_first_dim_reductions_sycl() 96 int dim_y = 1; in test_last_dim_reductions_sycl() local 99 array<int, 3> tensorRange = {{dim_x, dim_y, dim_z}}; in test_last_dim_reductions_sycl() 102 array<int, 2> reduced_tensorRange = {{dim_x, dim_y}}; in test_last_dim_reductions_sycl()
|
/external/tensorflow/tensorflow/python/framework/ |
D | common_shapes.py | 534 for (dim_x, dim_y) in broadcasted_dims: 535 if dim_x.value is None or dim_y.value is None: 543 elif dim_y.value is not None and dim_y.value > 1: 544 return_dims.append(dim_y) 549 return_dims.append(dim_y) 550 elif dim_y.value == 1: 553 elif dim_x.value == dim_y.value: 556 return_dims.append(dim_x.merge_with(dim_y))
|
/external/u-boot/include/ |
D | video_fb.h | 69 unsigned int dim_y /* frame height */ 79 unsigned int dim_y, /* frame height */
|
/external/tensorflow/tensorflow/core/framework/ |
D | common_shape_fns.cc | 1336 const auto dim_y = in BroadcastBinaryOpOutputShapeFnHelper() local 1338 if (!c->ValueKnown(dim_x) || !c->ValueKnown(dim_y)) { in BroadcastBinaryOpOutputShapeFnHelper() 1349 } else if (c->Value(dim_y) > 1) { in BroadcastBinaryOpOutputShapeFnHelper() 1350 dims.push_back(dim_y); in BroadcastBinaryOpOutputShapeFnHelper() 1352 dims.push_back(dim_y); in BroadcastBinaryOpOutputShapeFnHelper() 1353 } else if (c->Value(dim_y) == 1) { in BroadcastBinaryOpOutputShapeFnHelper() 1355 } else if (dim_y.SameHandle(dim_x)) { in BroadcastBinaryOpOutputShapeFnHelper() 1360 } else if (c->Value(dim_x) == 1 || c->Value(dim_y) == 1) { in BroadcastBinaryOpOutputShapeFnHelper() 1363 dims.push_back(dim_y); in BroadcastBinaryOpOutputShapeFnHelper() 1365 DCHECK_EQ(c->Value(dim_y), 1); in BroadcastBinaryOpOutputShapeFnHelper() [all …]
|
/external/u-boot/drivers/video/ |
D | mb862xx.c | 448 unsigned int dim_y, unsigned int color) in video_hw_rectfill() argument 456 DE_WR_FIFO ((dim_y << 16) | dim_x); in video_hw_rectfill()
|
/external/tensorflow/tensorflow/lite/toco/graph_transformations/ |
D | propagate_fixed_sizes.cc | 101 int dim_y = dim_y_is_one ? 1 : input_shape_y.dims(i - (rank_out - rank_y)); in ComputeBinaryOperatorOutputSize() local 102 if (dim_x == -1 || dim_y == -1) { in ComputeBinaryOperatorOutputSize() 105 } else if (dim_x == 1 || dim_y == 1) { in ComputeBinaryOperatorOutputSize() 109 dims_out->push_back(dim_y); in ComputeBinaryOperatorOutputSize() 112 DCHECK_EQ(dim_y, 1); in ComputeBinaryOperatorOutputSize() 117 CHECK_EQ(dim_x, dim_y) << "Dimensions must match"; in ComputeBinaryOperatorOutputSize()
|
/external/tensorflow/tensorflow/python/eager/ |
D | function.py | 177 for dim_x, dim_y in zip(x.dims, y.dims): 178 if (dim_x != dim_y 180 or tensor_shape.dimension_value(dim_y) is None):
|
/external/freetype/src/pshinter/ |
D | pshalgo.c | 2114 PSH_Dimension dim_y = &glyph->globals->dimension[1]; in ps_hints_apply() local 2117 FT_Fixed y_scale = dim_y->scale_mult; in ps_hints_apply()
|