| 270 | sgemm.run(); |
| 271 | } |
| 272 | void do_teardown() override |
| 273 | { |
| 274 | if (!output_filename.empty()) /* Save to .npy file */ |
| 275 | { |
| 276 | save_to_npy(dst, output_filename, is_fortran); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | private: |
| 281 | Tensor src0{}, src1{}, src2{}, dst{}; |
nothing calls this directly
no test coverage detected