coopmat conversion
| 4170 | |
| 4171 | // coopmat conversion |
| 4172 | Id Builder::createCooperativeMatrixConversion(Id typeId, Id source) |
| 4173 | { |
| 4174 | Instruction* op = new Instruction(getUniqueId(), typeId, Op::OpCooperativeMatrixConvertNV); |
| 4175 | op->addIdOperand(source); |
| 4176 | addInstruction(std::unique_ptr<Instruction>(op)); |
| 4177 | |
| 4178 | return op->getResultId(); |
| 4179 | } |
| 4180 | |
| 4181 | // coopmat reduce |
| 4182 | Id Builder::createCooperativeMatrixReduce(Op opcode, Id typeId, Id source, unsigned int mask, Id func) |
no test coverage detected