HomeSort by relevance Sort by last modified time
    Searched defs:MatrixMap (Results 1 - 3 of 3) sorted by null

  /external/gemmlowp/public/
map.h 29 // A MatrixMap is a view of an existing buffer as a matrix. It does not own
32 class MatrixMap {
42 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {}
43 MatrixMap(Scalar* data, int rows, int cols)
48 MatrixMap(Scalar* data, int rows, int cols, int stride)
50 MatrixMap(const MatrixMap& other)
67 MatrixMap block(int start_row, int start_col, int block_rows,
74 return MatrixMap(data(start_row, start_col), block_rows, block_cols,
  /external/tensorflow/tensorflow/core/kernels/
conv_grad_input_ops.cc 520 MatrixMap;
542 MatrixMap C(im2col_buf, output_image_size, filter_total_size);
    [all...]
deep_conv2d.cc 192 MatrixMap;
217 MatrixMap C(out_buffer, tile_spatial_size, in_stride);
687 MatrixMap;
716 MatrixMap C(tile_transform, tile_spatial_size, coord_stride);
739 MatrixMap;
765 MatrixMap C(out_transform_buffer, out_tile_spatial_size, out_buf_stride);
    [all...]

Completed in 418 milliseconds