| 120 | }; |
| 121 | |
| 122 | IFullyConnectedLayer* add_fully_connected(INetworkDefinition& self, ITensor& input, int32_t numOutputs, Weights kernel, Weights* bias) |
| 123 | { |
| 124 | return self.addFullyConnected(input, numOutputs, kernel, optionalWeights(bias)); |
| 125 | }; |
| 126 | |
| 127 | IGridSampleLayer* add_grid_sample(INetworkDefinition& self, ITensor& input, ITensor& grid) |
| 128 | { |
nothing calls this directly
no test coverage detected