Skip to content

Commit e46614e

Browse files
authored
Update README.md (#25)
* Update README.md * Fix small typo
1 parent a71b863 commit e46614e

File tree

1 file changed

+47
-18
lines changed

1 file changed

+47
-18
lines changed

README.md

+47-18
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,55 @@
33
[![Build Status](https://github.com/huiyuxie/TrixiGPU.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/huiyuxie/TrixiGPU.jl/actions/workflows/CI.yml?query=branch%3Amain)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
55

6-
**TrixiGPU.jl** is a component package of the [**Trixi.jl**](https://github.com/trixi-framework/Trixi.jl) ecosystem and provides GPU acceleration support for solving hyperbolic partial differential equations (PDEs). This package was initialized through the [**Google Summer of Code**](https://summerofcode.withgoogle.com/archive/2023/projects/upstR7K2) program in 2023 and is still under development.
6+
**TrixiGPU.jl** is a component package of the [**Trixi.jl**](https://github.com/trixi-framework/Trixi.jl) ecosystem and provides GPU acceleration support for solving hyperbolic partial differential equations (PDEs). This package was initialized through the [**Google Summer of Code**](https://summerofcode.withgoogle.com/archive/2023/projects/upstR7K2) program in 2023 and is under active development and testing.
77

88
The acceleration focus of this package is currently on the semidiscretization part (with plans to extend to other parts) of the PDE solvers, and [**CUDA.jl**](https://github.com/JuliaGPU/CUDA.jl) is our primary support (will expand to more types of GPUs using [**AMDGPU.jl**](https://github.com/JuliaGPU/AMDGPU.jl), [**OneAPI.jl**](https://github.com/JuliaGPU/oneAPI.jl), and [**Metal.jl**](https://github.com/JuliaGPU/Metal.jl) in the future).
99

10-
Please check the progress of our development [**here**](https://github.com/users/huiyuxie/projects/2).
10+
The complete documentation for this project (and now is available as a package) can be accessed here [**GSoC**](https://huiyuxie.github.io/gsoc23/). Please note that this package is intended to be part of the [**trixi-framework**](https://github.com/trixi-framework) organization in the end. Due to constrained GPU resources and ease of development, it is now under a temporary organization.
11+
12+
# Package Installation
13+
The package is now in pre-release status and will be registered once the initial release version is published. We want to make sure most key features are ready and optimizations are done before we roll out the first release.
14+
15+
## Users
16+
Users who are interested now can install the package by running the following command in the Julia REPL:
17+
```julia
18+
julia> using Pkg; Pkg.add(url="https://github.com/czha/TrixiGPU.jl.git")
19+
```
20+
Then the package can be used with the following simple command:
21+
```julia
22+
julia> using TrixiGPU
23+
```
24+
This package serves as a support package, so it is recommended to these packages together:
25+
```julia
26+
julia> using Trixi, TrixiGPU, OrdinaryDiffEq
27+
```
28+
29+
## Developers
30+
Developers can start their development by first forking and cloning the repository to their terminal.
31+
32+
Then enter the Julia REPL in the package directory, activate and instantiate the environment by running the following command:
33+
```julia
34+
julia> using Pkg; Pkg.activate("."); Pkg.instantiate()
35+
```
36+
37+
Please note that GPU-related tests are run locally rather than on CI remotely due to constrained resources. Once the repository is ready to be transferred back to the organization, we are going to set up JuliaGPU CI infrastructure to run tests on a system with a GPU using [**JuliaGPU Buildkite**](https://github.com/JuliaGPU/buildkite).
38+
39+
# Supported Mesh and Solver Types
40+
Our current focus is on the semidiscretization of PDEs. The table below shows the status of this work across different mesh types and solvers. Looking ahead, we plan to extend parallelization to include mesh initialization and callbacks on the GPU.
41+
42+
| Mesh Type | Spatial Dimension | Solver Type | Status |
43+
|--------------------|-------------------|-------------|----------------|
44+
| `TreeMesh` | 1D, 2D, 3D | `DGSEM` | ✅ Supported |
45+
| `StructuredMesh` | 1D, 2D, 3D | `DGSEM` | 🛠️ In Development|
46+
| `UnstructuredMesh` | 2D | `DGSEM` | 🟡 Planned |
47+
| `P4estMesh` | 2D, 3D | `DGSEM` | 🟡 Planned |
48+
| `DGMultiMesh` | 1D, 2D, 3D | `DGMulti` | 🟡 Planned |
49+
50+
# Example of PDE Semidiscretization on GPU
51+
Let's take a look at a simple example to see how to use **TrixiGPU.jl** to run the simulation on the GPU (now only CUDA-compatible).
1152

12-
# Example of Semidiscretization on GPU
1353
```julia
14-
# Take 1D Linear Advection Equation as an example
54+
# Take 1D linear advection equation as an example
1555
using Trixi, TrixiGPU
1656
using OrdinaryDiffEq
1757

@@ -28,7 +68,7 @@ coordinates_max = 1.0
2868

2969
mesh = TreeMesh(coordinates_min, coordinates_max,
3070
initial_refinement_level = 4,
31-
n_cells_max = 30_000) # set maximum capacity of tree data structure
71+
n_cells_max = 30_000)
3272

3373
semi = SemidiscretizationHyperbolic(mesh, equations, initial_condition_convergence_test,
3474
solver)
@@ -59,22 +99,11 @@ sol = solve(ode, CarpenterKennedy2N54(williamson_condition = false),
5999
summary_callback()
60100
```
61101

62-
# Supported Mesh and Solver Types
63-
Our current focus is on the semidiscretization of PDEs. The table below shows the status of this work across different mesh types and solvers. Looking ahead, we plan to extend parallelization to include mesh initialization and callbacks on the GPU.
64-
65-
| Mesh Type | Spatial Dimension | Solver Type | Status |
66-
|--------------------|-------------------|-------------|----------------|
67-
| `TreeMesh` | 1D, 2D, 3D | `DGSEM` | ✅ Supported |
68-
| `StructuredMesh` | 1D, 2D, 3D | `DGSEM` | 🛠️ In Development|
69-
| `UnstructuredMesh` | 2D | `DGSEM` | 🟡 Planned |
70-
| `P4estMesh` | 2D, 3D | `DGSEM` | 🟡 Planned |
71-
| `DGMultiMesh` | 1D, 2D, 3D | `DGMulti` | 🟡 Planned |
72-
73102
# GPU Kernels to be Implemented
74103
Kernels left to be implemented on `TreeMesh` with `DGSEM`:
75104
- 1D Kernels: 1) `calc_volume_integral!` - `volume_integral::VolumeIntegralShockCapturingHG`
76105
- 2D Kernels: 1) `calc_volume_integral!` - `volume_integral::VolumeIntegralShockCapturingHG`, 2) `calc_mortar_flux!`- `nonconservative_terms::True`
77106
- 3D Kernels: 1) `calc_volume_integral!` - `volume_integral::VolumeIntegralShockCapturingHG`, 2) `calc_mortar_flux!` - `nonconservative_terms::True`
78107

79-
# Show Your Support!
80-
We always welcome new people to join us, please feel free to contribute. Also, if you find this package interesting and inspiring, please give it a star. Thanks!
108+
# Show Your Support
109+
We always welcome new contributors to join us in future development. Please feel free to reach out if you would like to get involved!

0 commit comments

Comments
 (0)