From 8be707719010a5532ab41d9cd3663b5c62692643 Mon Sep 17 00:00:00 2001 From: huiyuxie Date: Mon, 12 Aug 2024 16:14:55 -1000 Subject: [PATCH] Fix typos --- README.md | 6 ++++-- test/test_advection_basic.jl | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8dfafdf..7fe0871 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/test/test_advection_basic.jl b/test/test_advection_basic.jl index 0545d99..6fde059 100644 --- a/test/test_advection_basic.jl +++ b/test/test_advection_basic.jl @@ -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