()
| 140 | |
| 141 | class FastMatMulBlockClass extends Block { |
| 142 | constructor() { |
| 143 | super(); |
| 144 | this.name = "fastMatMul"; |
| 145 | } |
| 146 | |
| 147 | getPipeline(rows) { |
| 148 | const settings = rows % 4 !== 0 ? "withCheck" : "noCheck"; |
nothing calls this directly
no outgoing calls
no test coverage detected