| 1445 | } |
| 1446 | |
| 1447 | void Bindings::transferInputToDevice(TrtCudaStream& stream) |
| 1448 | { |
| 1449 | for (auto& b : mNames) |
| 1450 | { |
| 1451 | if (mBindings[b.second].isInput) |
| 1452 | { |
| 1453 | mBindings[b.second].buffer->hostToDevice(stream); |
| 1454 | } |
| 1455 | } |
| 1456 | } |
| 1457 | |
| 1458 | void Bindings::transferOutputToHost(TrtCudaStream& stream) |
| 1459 | { |
no test coverage detected