-
Notifications
You must be signed in to change notification settings - Fork 3
Jan Updates #34
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
Merged
Merged
Jan Updates #34
Changes from 6 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
fa6d9c4
Create an-introduction-to-developing-highly-parallel-applications-usi…
codeplaymax 45aaddf
Create introduction-to-certifiable-general-purpose-gpu-programming-fo…
codeplaymax fc5b190
Update an-introduction-to-developing-highly-parallel-applications-usi…
codeplaymax 0bda87c
Create 2024-12-19-implementation-of-two-numerical-solvers-for-the-stu…
codeplaymax 70767a3
Fixed some timezone issues.
2f3a2e6
Tweaked line lengths.
766be2d
Update content/research_papers/2024/2024-12-19-implementation-of-two-…
scottstraughan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
...n-introduction-to-developing-highly-parallel-applications-using-c++-and-sycl.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
contributor: max | ||
date: '2025-01-22T14:46:00' | ||
starts: '2025-01-22T13:00:00+01:00' | ||
ends: '2025-12-04T16:30:00+01:00' | ||
title: 'An introduction to developing highly parallel applications using C++ and SYCL' | ||
external_url: 'https://www.hipeac.net/2025/barcelona/#/program/sessions/8191/' | ||
--- | ||
|
||
In this tutorial, we will introduce SYCL and provide programmers with a solid foundation they can build on to gain | ||
mastery of this language. The main benefit of using SYCL over other heterogeneous programming models is the single | ||
programming language approach, which enables one to target multiple devices using the same programming model, and | ||
therefore to have a cleaner, portable, and more readable code. | ||
|
||
This is a hands-on tutorial. The real learning will happen as attendees write code. The format will be short | ||
presentations followed by hands-on exercises. Hence, attendees will require their own laptop to perform the hands-on | ||
exercises. |
10 changes: 10 additions & 0 deletions
10
...neral-purpose-gpu-programming-for-safety-critical-systems-using-khronos-apis.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
contributor: max | ||
date: '2025-01-20T14:46:00' | ||
starts: '2025-01-20T13:00:00+01:00' | ||
ends: '2025-01-20T16:30:00+01:00' | ||
title: 'Introduction to Certifiable General Purpose GPU Programming for Safety-Critical Systems using Khronos APIs' | ||
external_url: 'https://www.hipeac.net/2025/barcelona/#/program/sessions/8161/' | ||
--- | ||
|
||
Tutorial at HiPEAC 2025 by Leonidas Kosmidis, Barcelona Supercomputing Center (BSC) |
30 changes: 30 additions & 0 deletions
30
...tudy-of-non-equilibrium-gas-dynamics-on-gpu-accelerated-platforms-using-sycl.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
contributor: max | ||
date: '2024-12-19T09:43:10' | ||
title: 'Implementation of Two Numerical Solvers for the Study of Non-Equilibrium Gas Dynamics on GPU-Accelerated Platforms using SYCL' | ||
external_url: 'https://ruor.uottawa.ca/items/cb39b8e3-9904-4a65-89bf-5414d364e759' | ||
authors: | ||
- El-Ghotmi, Osman | ||
tags: | ||
- sycl | ||
- gpu | ||
- portability | ||
--- | ||
|
||
The application of GPUs has extended beyond traditional graphics rendering because their parallel processing | ||
capabilities can accelerate many general-purpose tasks, such as machine learning and scientific computing. This thesis | ||
presents the implementation of two numerical solvers for the solution of non-equilibrium gas flows. It also demonstrates | ||
the computational performance of the two solvers when developed to target GPU-based supercomputers using the SYCL | ||
programming model. The first solver incorporates a novel ray-tracing technique and accurate mathematical relations to | ||
efficiently compute any observable property of free-molecular flow past convex shapes (FMFC). It computes integrals of | ||
the Maxwell-Boltzmann distribution function to create an algorithm that quickly evaluates any moment of the local | ||
particle-velocity distribution. This highly efficient technique is extended for GPUs to accelerate the computation of | ||
accurate results. Results produced with the solver serve as robust benchmarks in the validation of other scientific | ||
models that describe fluid motion in non-equilibrium regimes. The second solver extends a CPU-based implementation of | ||
the discontinuous Galerkin Hancock (DGH)method into an efficient GPU code. The DGH scheme is a high-order numerical | ||
method that solves hyperbolic partial differential equations (PDEs) with stiff source terms. This class of equations is | ||
common in many models that are used to describe non-equilibrium gas flows. The GPU implementation of the DGH solver that | ||
is presented in this work provides a computationally efficient and numerically accurate method to compute the solution | ||
for these models. Results produced by the FMFC and DGH solvers showcase their accuracy and parallel scalability as | ||
efficient GPU algorithms. Furthermore, the effectiveness of the FMFC solver as a validation tool is demonstrated by | ||
producing benchmarks to confirm the accuracy of scientific models that are solved with numerical schemes such as DGH. |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.