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