HomeSort by relevance Sort by last modified time
    Searched refs:cols_ (Results 1 - 9 of 9) sorted by null

  /external/webrtc/webrtc/system_wrappers/include/
aligned_array.h 25 cols_(cols) {
30 head_row_[i] = static_cast<T*>(AlignedMalloc(cols_ * sizeof(**head_row_),
61 RTC_CHECK_LE(col, cols_);
66 RTC_CHECK_LE(col, cols_);
75 return cols_;
80 size_t cols_; member in class:webrtc::AlignedArray
  /external/gemmlowp/public/
map.h 39 int rows_, cols_, stride_; member in class:gemmlowp::MatrixMap
42 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {}
46 cols_(cols),
49 : data_(data), rows_(rows), cols_(cols), stride_(stride) {}
53 cols_(other.cols_),
57 int cols() const { return cols_; }
72 assert(start_col + block_cols <= cols_);
  /external/gemmlowp/test/
test.h 55 using Map::cols_;
67 Resize(other.rows_, other.cols_);
73 return a.rows_ == b.rows_ && a.cols_ == b.cols_ &&
79 cols_ = cols;
85 int size() const { return rows_ * cols_; }
89 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); }
benchmark_all_sizes.cc 55 using Map::cols_;
69 Resize(other.rows_, other.cols_);
75 return a.rows_ == b.rows_ && a.cols_ == b.cols_ &&
81 cols_ = cols;
87 int size() const { return rows_ * cols_; }
91 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); }
  /external/tensorflow/tensorflow/python/kernel_tests/
qr_op_test.py 57 for cols_ in 4, 5:
58 matrix1 = random_ops.random_normal([rows_, cols_], seed=42)
59 matrix2 = random_ops.random_normal([rows_, cols_], seed=42)
  /external/tensorflow/tensorflow/compiler/xla/
reference_util_test.cc 39 matrix_ = MakeUnique<Array2D<float>>(rows_, cols_);
43 for (int64 j = 0; j < cols_; ++j) {
44 (*matrix_)(i, j) = i * cols_ + j + 1;
50 const int64 cols_ = 3; member in class:xla::__anon38840::ReferenceUtilTest
  /external/gemmlowp/internal/
unpack.h 64 MatrixBlockBounds(int start_row_, int start_col_, int rows_, int cols_)
68 cols(cols_) {}
  /external/tensorflow/tensorflow/core/kernels/
deep_conv2d.cc 591 cols_(cols),
600 void PackRhs() { pack_rhs(rhs_block_, rhs_mapper_, depth_, cols_); }
604 gebp(out_mapper_, lhs_block_, rhs_block_, rows_, depth_, cols_, 1.0);
609 const int64 cols_; member in class:tensorflow::GemmState
    [all...]
reduction_gpu_kernels.cu.h 411 __host__ __device__ explicit RowOffset(const int& cols) : cols_(cols) {}
413 __host__ __device__ int operator()(const int& x) const { return cols_ * x; }
415 int cols_; member in struct:tensorflow::functor::RowOffset
    [all...]

Completed in 389 milliseconds