| 49 | } |
| 50 | |
| 51 | bool BatchedMatrixMulForwardImpl::AlgoBruteForce::is_available( |
| 52 | const SizeArgs& args) const { |
| 53 | auto config = prepare_sub_opr(args); |
| 54 | |
| 55 | return get_algorithm( |
| 56 | static_cast<MatrixMulForwardImpl*>(config.second.get()), config.first[0], |
| 57 | config.first[1], config.first[2]); |
| 58 | } |
| 59 | size_t BatchedMatrixMulForwardImpl::AlgoBruteForce::get_workspace_in_bytes( |
| 60 | const SizeArgs& args) const { |
| 61 | auto config = prepare_sub_opr(args); |
nothing calls this directly
no test coverage detected