HomeSort by relevance Sort by last modified time
    Searched defs:cols_ (Results 1 - 5 of 5) 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/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/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/tensorflow/tensorflow/core/kernels/
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...]
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...]

Completed in 322 milliseconds