Home
last modified time | relevance | path

Searched refs:n_rows (Results 1 – 21 of 21) sorted by relevance

/external/ComputeLibrary/src/core/NEON/kernels/convolution/common/
Dtensor.hpp39 int n_batches, n_rows, n_cols, n_channels; member
45 const int n_rows, in Tensor4DShape()
50 n_rows(n_rows), in Tensor4DShape()
61 return ((n*this->n_rows + i)*this->n_cols + j)*this->n_channels + c; in index()
65 return ((n*this->n_channels + c)*this->n_rows + i)*this->n_cols + j; in index()
71 return n_batches * n_rows * n_cols * n_channels; in size()
77 n_rows == other.n_rows && in TestEq()
92 int n_output_channels, n_rows, n_cols, n_input_channels; member
97 const int n_rows, in KernelShape()
102 n_rows(n_rows), in KernelShape()
[all …]
Dshims.hpp55 const int n_rows,
87 const int n_rows,
108 const int n_rows,
126 const int n_rows,
147 const int n_rows, in nchw_to_nhwc() argument
162 : n_rows * in_row_stride; in nchw_to_nhwc()
169 : n_rows * out_row_stride; in nchw_to_nhwc()
177 for (int i = 0; i < n_rows; i++) in nchw_to_nhwc()
267 const int n_rows, in nchw_to_nhwc() argument
280 n_batches, n_channels, n_rows, n_cols, in nchw_to_nhwc()
[all …]
/external/python/cpython2/Lib/idlelib/
Dtabbedpages.py23 tabs=None, n_rows=1, max_tabs_per_row=5, argument
47 self.n_rows = n_rows
153 if self.n_rows is not None and self.n_rows > 0:
154 n_rows = self.n_rows
157 n_rows = (len(self._tab_names) - 1) // self.max_tabs_per_row + 1
160 expand_tabs = self.expand_tabs or n_rows > 1
162 for row_index in xrange(n_rows):
164 n_tabs = (len(self._tab_names) - i - 1) // (n_rows - row_index) + 1
356 n_rows=1, max_tabs_per_row=5, expand_tabs=False, argument
405 self._tab_set = TabSet(self, self.change_page, n_rows=n_rows,
[all …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cVertexAttrib64BitTest.cpp1609 const GLint n_rows = configuration.m_n_rows[i]; in calculateAttributeLocation() local
1610 const GLint n_columns = n_elements / n_rows; in calculateAttributeLocation()
1620 const GLint n_rows = configuration.m_n_rows[n_type]; in calculateAttributeLocation() local
1621 const GLint n_columns = n_elements / n_rows; in calculateAttributeLocation()
1663 const GLint n_rows = configuration.m_n_rows[n_type]; in configureAttribute() local
1664 const GLint n_columns = n_elements / n_rows; in configureAttribute()
1702 const GLint column_offset = column * n_rows; in configureAttribute()
1707 gl.vertexAttribLPointer(attribute_location + column, n_rows /* size */, GL_DOUBLE, in configureAttribute()
1729 if (1 == n_rows) in configureAttribute()
1755 if (3 == n_rows) in configureAttribute()
[all …]
Dgl4cShadingLanguage420PackTests.hpp294 …oid uniform(const glw::GLchar* uniform_name, TYPES type, glw::GLuint n_columns, glw::GLuint n_rows,
374 static uniformNdv getUniformNdv(const glw::Functions& gl, glw::GLuint n_rows);
376 static uniformNfv getUniformNfv(const glw::Functions& gl, glw::GLuint n_rows);
378 static uniformNiv getUniformNiv(const glw::Functions& gl, glw::GLuint n_rows);
380 static uniformNuiv getUniformNuiv(const glw::Functions& gl, glw::GLuint n_rows);
382 …MatrixNdv getUniformMatrixNdv(const glw::Functions& gl, glw::GLuint n_columns, glw::GLuint n_rows);
384 …MatrixNfv getUniformMatrixNfv(const glw::Functions& gl, glw::GLuint n_columns, glw::GLuint n_rows);
438 static const glw::GLchar* getTypeName(TYPES type, glw::GLuint n_columns, glw::GLuint n_rows);
977 std::string getValueList(glw::GLuint n_columns, glw::GLuint n_rows);
1011 std::string getValueList(glw::GLuint n_rows);
[all …]
Dgl4cShadingLanguage420PackTests.cpp635 const glw::GLchar* Utils::getTypeName(TYPES type, glw::GLuint n_columns, glw::GLuint n_rows) in getTypeName() argument
657 if ((1 > n_columns) || (1 > n_rows) || (4 < n_columns) || (4 < n_rows)) in getTypeName()
665 result = float_lut[n_columns - 1][n_rows - 1]; in getTypeName()
668 result = double_lut[n_columns - 1][n_rows - 1]; in getTypeName()
671 result = int_lut[n_rows - 1]; in getTypeName()
674 result = uint_lut[n_rows - 1]; in getTypeName()
690 Utils::uniformNdv Utils::getUniformNdv(const glw::Functions& gl, glw::GLuint n_rows) in getUniformNdv() argument
694 switch (n_rows) in getUniformNdv()
722 Utils::uniformNfv Utils::getUniformNfv(const glw::Functions& gl, glw::GLuint n_rows) in getUniformNfv() argument
726 switch (n_rows) in getUniformNfv()
[all …]
Dgl4cGPUShaderFP64Tests.hpp126 static _variable_type getDoubleVariableType(glw::GLuint n_columns, glw::GLuint n_rows);
132 static _variable_type getIntVariableType(glw::GLuint n_columns, glw::GLuint n_rows);
146 static _variable_type getUintVariableType(glw::GLuint n_columns, glw::GLuint n_rows);
457 uniformTypeDetails(glw::GLuint n_columns, glw::GLuint n_rows);
Dgl4cEnhancedLayoutsTests.hpp83 static Type GetType(TYPES basic_type, glw::GLuint n_columns, glw::GLuint n_rows);
973 uniformNdv getUniformNdv(const glw::Functions& gl, glw::GLuint n_rows);
974 uniformNfv getUniformNfv(const glw::Functions& gl, glw::GLuint n_rows);
975 uniformNiv getUniformNiv(const glw::Functions& gl, glw::GLuint n_rows);
976 uniformNuiv getUniformNuiv(const glw::Functions& gl, glw::GLuint n_rows);
977 …MatrixNdv getUniformMatrixNdv(const glw::Functions& gl, glw::GLuint n_columns, glw::GLuint n_rows);
978 …MatrixNfv getUniformMatrixNfv(const glw::Functions& gl, glw::GLuint n_columns, glw::GLuint n_rows);
2616 const glw::GLchar* location_str, glw::GLuint n_rows, const glw::GLchar* name);
Dgl4cGPUShaderFP64Tests.cpp508 Utils::_variable_type Utils::getDoubleVariableType(glw::GLuint n_columns, glw::GLuint n_rows) in getDoubleVariableType() argument
519 type = types[n_columns - 1][n_rows - 1]; in getDoubleVariableType()
759 Utils::_variable_type Utils::getIntVariableType(glw::GLuint n_columns, glw::GLuint n_rows) in getIntVariableType() argument
772 type = types[n_rows - 1]; in getIntVariableType()
1310 Utils::_variable_type Utils::getUintVariableType(glw::GLuint n_columns, glw::GLuint n_rows) in getUintVariableType() argument
1323 type = types[n_rows - 1]; in getUintVariableType()
3374 …UShaderFP64Test2::uniformTypeDetails::uniformTypeDetails(glw::GLuint n_columns, glw::GLuint n_rows) in uniformTypeDetails() argument
3375 : m_n_columns(n_columns), m_n_rows(n_rows) in uniformTypeDetails()
3377 Utils::_variable_type type = Utils::getDoubleVariableType(n_columns, n_rows); in uniformTypeDetails()
4129 const glw::GLuint n_rows = uniform_type.m_n_rows; in prepareUniforms() local
[all …]
Dgl4cEnhancedLayoutsTests.cpp708 Type Type::GetType(TYPES basic_type, glw::GLuint n_columns, glw::GLuint n_rows) in GetType() argument
710 Type type = { basic_type, n_columns, n_rows }; in GetType()
806 uniformNdv getUniformNdv(const glw::Functions& gl, glw::GLuint n_rows) in getUniformNdv() argument
810 switch (n_rows) in getUniformNdv()
838 uniformNfv getUniformNfv(const glw::Functions& gl, glw::GLuint n_rows) in getUniformNfv() argument
842 switch (n_rows) in getUniformNfv()
870 uniformNiv getUniformNiv(const glw::Functions& gl, glw::GLuint n_rows) in getUniformNiv() argument
874 switch (n_rows) in getUniformNiv()
902 uniformNuiv getUniformNuiv(const glw::Functions& gl, glw::GLuint n_rows) in getUniformNuiv() argument
906 switch (n_rows) in getUniformNuiv()
[all …]
/external/ComputeLibrary/src/cpu/kernels/
DCpuPermuteKernel.cpp156 int n_rows = 0; in run_permute() local
168 n_rows = window_src.y().step(); in run_permute()
180 n_rows = src->info()->tensor_shape().z(); in run_permute()
202 n_batches, n_channels, n_rows, n_cols, in run_permute()
219 n_batches, n_rows, n_cols, n_channels, in run_permute()
/external/ComputeLibrary/src/core/NEON/kernels/arm_conv/depthwise/
Ddepthwise_planar.hpp224 const auto n_rows = args.strategy->get_output_rows(); in initialise() local
226 ws->output_ld_cols = reinterpret_cast<size_t *>(ws->output_row_ptrs + n_rows); in initialise()
227 ws->output_ld_vls = ws->output_ld_cols + n_rows; in initialise()
228 ws->output_padding_buffer = reinterpret_cast<T *>(ws->output_ld_vls + n_rows); in initialise()
/external/libaom/aom_dsp/x86/
Dsad_sse2.asm26 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
29 src_stride3, ref_stride3, n_rows
34 cglobal sad_skip_%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
37 src_stride3, ref_stride3, n_rows
43 second_pred, n_rows
Dhighbd_sad_sse2.asm27 cglobal highbd_sad%1x%2, 4, %3, %5, src, src_stride, ref, ref_stride, n_rows
30 src_stride3, ref_stride3, n_rows
35 second_pred, n_rows
49 cglobal highbd_sad_skip_%1x%2, 4, %3, %5, src, src_stride, ref, ref_stride, n_rows
52 src_stride3, ref_stride3, n_rows
/external/ComputeLibrary/src/cpu/operators/
DCpuWinogradConv2d.cpp100 …arm_conv::Shape2D{ static_cast<uint32_t>(in_shape.n_rows), static_cast<uint32_t>(in_shape.n_cols) … in get_winograd_kernel_implementation()
104 …arm_conv::Shape2D{ static_cast<uint32_t>(out_shape.n_rows), static_cast<uint32_t>(out_shape.n_cols… in get_winograd_kernel_implementation()
106 …arm_conv::Shape2D{ static_cast<uint32_t>(kernel_shape.n_rows), static_cast<uint32_t>(kernel_shape.… in get_winograd_kernel_implementation()
176 …ON_MSG_VAR(!success, "Unsupported kernel size: %d x %d.\n", kernel_shape.n_rows, kernel_shape.n_co… in configure()
309 …AR(success == false, "Unsupported kernel size: %d x %d.\n", kernel_shape.n_rows, kernel_shape.n_co… in validate()
/external/mesa3d/src/compiler/glsl/
Dgl_nir_link_uniform_initializers.c120 const unsigned n_rows = glsl_get_vector_elements(type); in copy_constant_to_storage() local
129 i += n_rows * dmul; in copy_constant_to_storage()
132 for (unsigned int row = 0; row < n_rows; row++) { in copy_constant_to_storage()
/external/libvpx/vpx_dsp/x86/
Dsad_sse2.asm18 cglobal sad%1x%2, 4, %3, 5, src, src_stride, ref, ref_stride, n_rows
21 src_stride3, ref_stride3, n_rows
26 second_pred, n_rows
Dhighbd_sad_sse2.asm18 cglobal highbd_sad%1x%2, 4, %3, 7, src, src_stride, ref, ref_stride, n_rows
21 src_stride3, ref_stride3, n_rows
26 second_pred, n_rows
/external/libaom/av1/encoder/
Dsparse_linear_solver.h28 int n_rows; member
Dsparse_linear_solver.c37 sm->n_rows = num_rows; in av1_init_sparse_mtx()
83 sm->n_rows = new_n_rows; in av1_init_combine_sparse_mtx()
117 sm->n_rows = 0; in av1_free_sparse_mtx_elems()
/external/tensorflow/tensorflow/python/compiler/tensorrt/model_tests/
Dresult_analyzer.py43 def n_rows(self) -> int: member in DataFrame
186 for r in range(df.n_rows):