Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/cpu_operations/
DBatchMatmul.cpp48 bool canMatrixMul(uint32_t LHSRow, uint32_t LHSCol, uint32_t RHSRow, uint32_t RHSCol, bool adjX, in canMatrixMul() argument
50 if (LHSRow == 0 || LHSCol == 0 || RHSRow == 0 || RHSCol == 0) { in canMatrixMul()
54 LHSCol = LHSRow; in canMatrixMul()
59 return LHSCol == RHSRow; in canMatrixMul()