We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For profiling purposes I'm interested in developing a julia tool that asynchronously monitors threading load and measure quality of threading balance.
That's simple now in julia 1.8 because profiling can identify which julia tasks/threads are awake.
Is there a way to do that asynchronously with FFTW? Crudely, just a count of active FFTW threads at a given time?
Answering my question partly, as on inspection I'm realizing that FFTW threads are managed by julia via @spawn
@spawn
FFTW.jl/src/providers.jl
Line 58 in 17bc81a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For profiling purposes I'm interested in developing a julia tool that asynchronously monitors threading load and measure quality of threading balance.
That's simple now in julia 1.8 because profiling can identify which julia tasks/threads are awake.
Is there a way to do that asynchronously with FFTW? Crudely, just a count of active FFTW threads at a given time?
Answering my question partly, as on inspection I'm realizing that FFTW threads are managed by julia via
@spawn
FFTW.jl/src/providers.jl
Line 58 in 17bc81a
The text was updated successfully, but these errors were encountered: