| 596 | } |
| 597 | |
| 598 | int executor::execute_dynamic(const std::vector<const gpu_tensor<float> *> &bindings, int64_t stream) { |
| 599 | return ptr_->execute_dynamic<float>(bindings, (cudaStream_t) stream); |
| 600 | } |
| 601 | |
| 602 | int executor::execute_dynamic(const std::vector<const gpu_tensor<half> *> &bindings, int64_t stream) { |
| 603 | return ptr_->execute_dynamic<half>(bindings, (cudaStream_t) stream); |