| 116 | } |
| 117 | |
| 118 | Convolution3DForward::Algorithm* Convolution3DForwardImpl::get_algorithm_heuristic( |
| 119 | const TensorLayout& /* src */, const TensorLayout& /* filter */, |
| 120 | const TensorLayout& /* dst */, size_t /* workspace_limit_in_bytes */, |
| 121 | const AlgoAttribute& positive_attr, const AlgoAttribute& negative_attr) { |
| 122 | auto algo = static_cast<HandleImpl*>(handle())->default_conv3d_fwd_algo(); |
| 123 | algo->check_attribute(positive_attr, negative_attr); |
| 124 | return algo; |
| 125 | } |
| 126 | |
| 127 | Convolution3DForward::Algorithm* Convolution3DForwardImpl::get_algorithm_from_desc( |
| 128 | const AlgorithmDesc& desc) { |
nothing calls this directly
no test coverage detected