| 150 | }; |
| 151 | |
| 152 | IDeconvolutionLayer* add_deconvolution(INetworkDefinition& self, ITensor& input, int32_t numOutputMaps, DimsHW kernelSize, Weights kernel, Weights* bias) |
| 153 | { |
| 154 | return self.addDeconvolution(input, numOutputMaps, kernelSize, kernel, optionalWeights(bias)); |
| 155 | }; |
| 156 | |
| 157 | static const auto add_scatter = [](INetworkDefinition& self, ITensor& data, ITensor& indices, ITensor& updates, ScatterMode mode) |
| 158 | { |
nothing calls this directly
no test coverage detected