| 186 | }; |
| 187 | |
| 188 | Dims engine_get_binding_shape(ICudaEngine& self, std::string const& name) |
| 189 | { |
| 190 | return self.getBindingDimensions(self.getBindingIndex(name.c_str())); |
| 191 | }; |
| 192 | |
| 193 | DataType engine_get_binding_dtype(ICudaEngine& self, std::string const& name) |
| 194 | { |
nothing calls this directly
no test coverage detected