| 143 | } |
| 144 | |
| 145 | DeformableConvForward::Algorithm* Fwd::get_algorithm_heuristic( |
| 146 | const TensorLayout& /* src */, const TensorLayout& /* filter */, |
| 147 | const TensorLayout& /* offset */, const TensorLayout& /* mask */, |
| 148 | const TensorLayout& /* dst */, size_t /* workspace_limit_in_bytes */, |
| 149 | const AlgoAttribute& positive_attr, const AlgoAttribute& negative_attr) { |
| 150 | auto algo = static_cast<HandleImpl*>(handle())->default_deformable_conv_fwd_algo(); |
| 151 | algo->check_attribute(positive_attr, negative_attr); |
| 152 | return algo; |
| 153 | } |
| 154 | |
| 155 | DeformableConvForward::Algorithm* Fwd::get_algorithm_from_desc( |
| 156 | const AlgorithmDesc& desc) { |
nothing calls this directly
no test coverage detected