| 304 | } |
| 305 | |
| 306 | ConvBiasForward::Algorithm* ConvBiasForwardImpl::get_algorithm_heuristic( |
| 307 | const TensorLayout& /* src */, const TensorLayout& /* filter */, |
| 308 | const TensorLayout& /* bias */, const TensorLayout& /* z */, |
| 309 | const TensorLayout& /* dst */, size_t /* workspace_limit_in_bytes */, |
| 310 | const AlgoAttribute& positive_attr, const AlgoAttribute& negative_attr) { |
| 311 | auto algo = static_cast<HandleImpl*>(handle())->default_conv_bias_fwd_algo(); |
| 312 | algo->check_attribute(positive_attr, negative_attr); |
| 313 | return algo; |
| 314 | } |
| 315 | |
| 316 | ConvBiasForward::Algorithm* ConvBiasForwardImpl::get_algorithm_from_desc( |
| 317 | const AlgorithmDesc& desc) { |
nothing calls this directly
no test coverage detected