================================================================================================
| 264 | |
| 265 | // ================================================================================================ |
| 266 | hipStream_t getPerThreadDefaultStream() { |
| 267 | // Function to get per thread default stream |
| 268 | // More about the usecases yet to come |
| 269 | hipStream_t stream = hipStreamPerThread; |
| 270 | getStreamPerThread(stream); |
| 271 | return stream; |
| 272 | } |
| 273 | |
| 274 | // ================================================================================================ |
| 275 | hipError_t hipStreamCreateWithFlags(hipStream_t* stream, unsigned int flags) { |
no test coverage detected