-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will hidet launch all cuda kernel on the same cudaStream? #388
Comments
Hi @VincentXWD, Yes, it is for all cuda kernels. Hidet comes with two libraries: We can use this api to change the current cuda stream to launch the kernels. |
I see. It seems that it is determined by users. Thanks @yaoyaoding . |
Cast return value of `get_parallel_num_workers` to float. Fix #388
Cast return value of `get_parallel_num_workers` to float. Fix #388
Cast return value of `get_parallel_num_workers` to float. Fix #388
Hi, I noticed in generated cuda kernel has launch methods like this:
And the cudaStream paramater is set to
(cudaStream_t)get_cuda_stream()
. This is returned by a singleton classCudaContext::global()
. Is this for all kernels without changing(or arranging)?Thanks.
The text was updated successfully, but these errors were encountered: