| 110 | }; |
| 111 | |
| 112 | IConvolutionLayer* add_convolution(INetworkDefinition& self, ITensor& input, int32_t numOutputMaps, DimsHW kernelSize, Weights kernel, Weights* bias) |
| 113 | { |
| 114 | return self.addConvolution(input, numOutputMaps, kernelSize, kernel, optionalWeights(bias)); |
| 115 | }; |
| 116 | |
| 117 | static const auto add_convolution_nd = [](INetworkDefinition& self, ITensor& input, int32_t numOutputMaps, Dims kernelSize, Weights kernel, Weights* bias) |
| 118 | { |
nothing calls this directly
no test coverage detected