MCPcopy Create free account
hub / github.com/Meshcapade/difflocks / rows

Method rows

extensions/include/cuMat/src/ProductOp.h:200–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

198 const RightType& right() const { return right_; }
199
200 __host__ __device__ CUMAT_STRONG_INLINE Index rows() const
201 {
202 if (TransposedOutput)
203 return TransposedRight ? right_.rows() : right_.cols();
204 else
205 return TransposedLeft ? left_.cols() : left_.rows();
206 }
207 __host__ __device__ CUMAT_STRONG_INLINE Index cols() const
208 {
209 if (TransposedOutput)

Callers 4

ProductOpMethod · 0.45
colsMethod · 0.45
innerSizeMethod · 0.45
evalImplMethod · 0.45

Calls 1

colsMethod · 0.45

Tested by

no test coverage detected