Initialize using the index of GPU
| 24 | |
| 25 | // Initialize using the index of GPU |
| 26 | DeviceStream(): gpu_id(0), stream(NULL) {} |
| 27 | DeviceStream(const size_s gpu_id): gpu_id(gpu_id), stream(NULL) {} |
| 28 | |
| 29 | inline void set_gpu_id(const size_s gpu_id) { |
nothing calls this directly
no outgoing calls
no test coverage detected