Port MiniWeather over the CUDASTF programming model#19
Open
caugonnet wants to merge 8 commits intomrnorman:mainfrom
Open
Port MiniWeather over the CUDASTF programming model#19caugonnet wants to merge 8 commits intomrnorman:mainfrom
caugonnet wants to merge 8 commits intomrnorman:mainfrom
Conversation
|
Following #20, we might want to use a naming directory structure |
Owner
|
Sorry for the long delay. I'm still not getting notified of PRs even though I'm "watching" this on github. I'll look at this soon, and thanks so much for submitting it. |
Author
|
Hello,
No problem, there is no hurry and we keep improving it !
Thanks,
Cédric
…________________________________
De : Matt Norman ***@***.***>
Envoyé : mercredi 15 janvier 2025 16:45
À : mrnorman/miniWeather ***@***.***>
Cc : Cedric Augonnet ***@***.***>; Author ***@***.***>
Objet : Re: [mrnorman/miniWeather] Port MiniWeather over the CUDASTF programming model (PR #19)
Sorry for the long delay. I'm still not getting notified of PRs even though I'm "watching" this on github. I'll look at this soon, and thanks so much for submitting it.
—
Reply to this email directly, view it on GitHub<#19 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BFWSSGSEMPIXFSKMAT4WHW32KZ7ADAVCNFSM6AAAAABQQTU3GOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDKOJTGI3TCNRZHE>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
…) access on a logical data will provide a const data interface : for example a slice<double> is passed as a slice<const double>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces a new version of the MiniWeather benchmark based on the CUDASTF programming model.
CUDASTF is shipped in NVIDIA's CCCL project, and implements task-parallelism as a C++ header only library.
This example shows how to leverage CUDA graphs to hide latencies on small problem sizes, or to scale parallel_for kernels over multiple devices of the same machine (e.g. a DGX platform).