Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
huiyuxie committed Aug 13, 2024
1 parent fef4f78 commit 8be7077
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@

**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.

The acceleration focus of this package is currently on the semidiscretization part (with plans to extend to other parts) of the PDE solvers (with plans to extend to other areas), and [**CUDA.jl**](https://github.com/JuliaGPU/CUDA.jl) is our primary support (will expand to more types of GPUs in the future). Please check the progress of our development [**here**](https://github.com/users/huiyuxie/projects/2).
The acceleration focus of this package is currently on the semidiscretization part (with plans to extend to other parts) of the PDE solvers (with plans to extend to other areas), and [**CUDA.jl**](https://github.com/JuliaGPU/CUDA.jl) is our primary support (will expand to more types of GPUs in the future).

Please check the progress of our development [**here**](https://github.com/users/huiyuxie/projects/2).

# Example of Semidiscretization on GPU
```julia
# 1D Linear Advection Equation
# Take 1D Linear Advection Equation as an example
using Trixi, TrixiGPU
using OrdinaryDiffEq

Expand Down
2 changes: 1 addition & 1 deletion test/test_advection_basic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ isdir(outdir) && rm(outdir, recursive = true)
# it is further relaxed) is satisfied. Any new methods and optimizations introduced later
# should at least satisfy this error bound.

# FIXME: Maybe use `Float64` thoughout the tests to avoid the relaxed error bound issue
# FIXME: Maybe use `Float64` throughout the tests to avoid the relaxed error bound issue

# Test precision of the semidiscretization process
@testset "Test Linear Advection Equation" begin
Expand Down

0 comments on commit 8be7077

Please sign in to comment.