Merge CUDA profiling framework and GPU computation examples into main#14
Merged
Alessandro624 merged 38 commits intomainfrom Dec 30, 2025
Merged
Merge CUDA profiling framework and GPU computation examples into main#14Alessandro624 merged 38 commits intomainfrom
Alessandro624 merged 38 commits intomainfrom
Conversation
Add CUDA profiling tools with roofline analysis support
Fix shared memory format and add CUDA matrix multiplication example
Add CUDA convolution example with profiling support
Add CUDA parallel histogram example and profiling workflow
…plots for better precision
Enhance metrics parsing and add CUDA stencil example with profiling
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.
Description
This PR consolidates all recent developments into the
mainbranch, introducing a complete CUDA performance analysis framework alongside a curated set of GPU computation examples.Summary of changes
Integrated a full CUDA profiling and analysis pipeline, including:
Added multiple CUDA computation modules, each with build, run, and profiling workflows:
Standardized project structure across all modules with consistent
Makefile, execution scripts, profiling scripts, and documentation.Updated
.gitignoreto cover generated artifacts across all examples.Revised and aligned all
README.mdfiles to reflect the current architecture, tooling, and usage patterns.Impact
This merge establishes
mainas a stable and feature-complete baseline for CUDA performance experimentation. The repository now serves as a coherent GPU performance lab, combining representative computation patterns with reproducible profiling and analysis tooling.