Skip to content

Commit fc98d41

Browse files
authored
Bump compat for Trixi to 0.10 to adapt the latest version of CUDA (#141)
* Bump Trixi * Fix 1D * Fix typo * Fix 2D * Update readme
1 parent 592bd1a commit fc98d41

File tree

6 files changed

+27
-37
lines changed

6 files changed

+27
-37
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ BenchmarkTools = "1"
1515
CUDA = "5"
1616
SciMLBase = "2"
1717
StaticArrays = "1"
18-
Trixi = "0.9.10 - 0.9.15"
18+
Trixi = "0.10.0 - 0.10.2"
1919
julia = "1.10"
2020

2121
[extras]

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ General docs: https://trixi-gpu.github.io
1212
> [!WARNING]
1313
> The package may not always be updated with the latest updates in Trixi.jl. Forcing an update of Trixi.jl as a dependency for TrixiCUDA.jl beyond the version bounds specified in Project.toml may cause unexpected errors.
1414
15+
*Update on Mar 19, 2025*:
16+
- The issue between the latest version of CUDA.jl and Trixi.jl has been resolved. The package is now compatible with CUDA.jl v5.7.0 and Trixi.jl v0.10 (see [TrixiCUDA.jl PR #141](https://github.com/trixi-gpu/TrixiCUDA.jl/pull/141)).
17+
1518
*Update on Jan 28, 2025*:
1619
- It is recommended to update your Julia version to 1.10.8 (the latest LTS release) to avoid the issue of circular dependencies during package precompilation, which is present in Julia 1.10.7 (see [issue](https://discourse.julialang.org/t/circular-dependency-warning/123388)).
1720

1821
*Update on Dec 31, 2024*:
19-
- The kernel optimization starts with the volume integral kernels (see [TrixiCUDA.jl PR #102](https://github.com/trixi-gpu/TrixiCUDA.jl/pull/102)) and will extend to all existing kernels used in the semidiscretization. The approach includes improving global memory access patterns, using shared memory, and selecting appropriate launch sizes to reduce warp stalls and achieve better occupancy.
20-
21-
*Update on Nov 21, 2024*:
22-
- Due to the [issue](https://github.com/trixi-framework/Trixi.jl/issues/2108) from upstream with Trixi.jl and CUDA.jl in Julia v1.11, this package now supports only Julia v1.10. Using or developing this package with Julia v1.11 will result in precompilation errors. To fix this, downgrade to Julia v1.10. If you have any other problems, please file issues [here](https://github.com/trixi-gpu/TrixiCUDA.jl/issues).
22+
- The kernel optimization starts with the volume integral kernels (see [TrixiCUDA.jl PR #102](https://github.com/trixi-gpu/TrixiCUDA.jl/pull/102)) and will extend to all existing kernels used in the semidiscretization.
2323

2424
[Archived Update](https://trixi-gpu.github.io/update/)
2525

src/solvers/dg_1d.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,8 @@ end
424424
# Pack kernels for calculating boundary fluxes
425425
function cuda_boundary_flux!(t, mesh::TreeMesh{1}, boundary_conditions::NamedTuple,
426426
nonconservative_terms::True, equations, dg::DGSEM, cache)
427-
surface_flux, nonconservative_flux = dg.surface_integral.surface_flux
427+
# Contain both conservative and nonconservative fluxes
428+
surface_flux = dg.surface_integral.surface_flux
428429

429430
n_boundaries_per_direction = cache.boundaries.n_boundaries_per_direction
430431
neighbor_ids = cache.boundaries.neighbor_ids
@@ -456,11 +457,11 @@ function cuda_boundary_flux!(t, mesh::TreeMesh{1}, boundary_conditions::NamedTup
456457
boundary_conditions_callable,
457458
equations,
458459
surface_flux,
459-
nonconservative_flux)
460+
nonconservative_terms)
460461
boundary_flux_kernel(surface_flux_values, boundaries_u, node_coordinates, t, boundary_arr,
461462
indices_arr, neighbor_ids, neighbor_sides, orientations,
462463
boundary_conditions_callable, equations, surface_flux,
463-
nonconservative_flux;
464+
nonconservative_terms;
464465
kernel_configurator_1d(boundary_flux_kernel, length(boundary_arr))...)
465466

466467
return nothing

src/solvers/dg_1d_kernel.jl

+5-9
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ end
836836
function boundary_flux_kernel!(surface_flux_values, boundaries_u, node_coordinates, t, boundary_arr,
837837
indices_arr, neighbor_ids, neighbor_sides, orientations,
838838
boundary_conditions::NamedTuple, equations::AbstractEquations{1},
839-
surface_flux::Any, nonconservative_flux::Any)
839+
surface_flux::Any, nonconservative_terms::True)
840840
k = (blockIdx().x - 1) * blockDim().x + threadIdx().x
841841

842842
if (k <= length(boundary_arr))
@@ -855,15 +855,11 @@ function boundary_flux_kernel!(surface_flux_values, boundaries_u, node_coordinat
855855

856856
# TODO: Improve this part
857857
if direction == 1
858-
flux_node = boundary_conditions[1](u_inner, orientation, direction, x, t, surface_flux,
859-
equations)
860-
noncons_flux_node = boundary_conditions[1](u_inner, orientation, direction, x, t,
861-
nonconservative_flux, equations)
858+
flux_node, noncons_flux_node = boundary_conditions[1](u_inner, orientation, direction,
859+
x, t, surface_flux, equations)
862860
else
863-
flux_node = boundary_conditions[2](u_inner, orientation, direction, x, t, surface_flux,
864-
equations)
865-
noncons_flux_node = boundary_conditions[2](u_inner, orientation, direction, x, t,
866-
nonconservative_flux, equations)
861+
flux_node, noncons_flux_node = boundary_conditions[2](u_inner, orientation, direction,
862+
x, t, surface_flux, equations)
867863
end
868864

869865
for ii in axes(surface_flux_values, 1)

src/solvers/dg_2d.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,8 @@ end
491491
# Pack kernels for calculating boundary fluxes
492492
function cuda_boundary_flux!(t, mesh::TreeMesh{2}, boundary_conditions::NamedTuple,
493493
nonconservative_terms::True, equations, dg::DGSEM, cache)
494-
surface_flux, nonconservative_flux = dg.surface_integral.surface_flux
494+
# Contain both conservative and nonconservative fluxes
495+
surface_flux = dg.surface_integral.surface_flux
495496

496497
n_boundaries_per_direction = cache.boundaries.n_boundaries_per_direction
497498
neighbor_ids = cache.boundaries.neighbor_ids
@@ -523,11 +524,11 @@ function cuda_boundary_flux!(t, mesh::TreeMesh{2}, boundary_conditions::NamedTup
523524
boundary_conditions_callable,
524525
equations,
525526
surface_flux,
526-
nonconservative_flux)
527+
nonconservative_terms)
527528
boundary_flux_kernel(surface_flux_values, boundaries_u, node_coordinates, t, boundary_arr,
528529
indices_arr, neighbor_ids, neighbor_sides, orientations,
529530
boundary_conditions_callable, equations, surface_flux,
530-
nonconservative_flux;
531+
nonconservative_terms;
531532
kernel_configurator_2d(boundary_flux_kernel, size(surface_flux_values, 2),
532533
length(boundary_arr))...)
533534

src/solvers/dg_2d_kernel.jl

+9-17
Original file line numberDiff line numberDiff line change
@@ -1120,7 +1120,7 @@ end
11201120
function boundary_flux_kernel!(surface_flux_values, boundaries_u, node_coordinates, t, boundary_arr,
11211121
indices_arr, neighbor_ids, neighbor_sides, orientations,
11221122
boundary_conditions::NamedTuple, equations::AbstractEquations{2},
1123-
surface_flux::Any, nonconservative_flux::Any)
1123+
surface_flux::Any, nonconservative_terms::True)
11241124
j = (blockIdx().x - 1) * blockDim().x + threadIdx().x
11251125
k = (blockIdx().y - 1) * blockDim().y + threadIdx().y
11261126

@@ -1141,25 +1141,17 @@ function boundary_flux_kernel!(surface_flux_values, boundaries_u, node_coordinat
11411141

11421142
# TODO: Improve this part
11431143
if direction == 1
1144-
flux_node = boundary_conditions[1](u_inner, orientation, direction, x, t, surface_flux,
1145-
equations)
1146-
noncons_flux_node = boundary_conditions[1](u_inner, orientation, direction, x, t,
1147-
nonconservative_flux, equations)
1144+
flux_node, noncons_flux_node = boundary_conditions[1](u_inner, orientation, direction,
1145+
x, t, surface_flux, equations)
11481146
elseif direction == 2
1149-
flux_node = boundary_conditions[2](u_inner, orientation, direction, x, t, surface_flux,
1150-
equations)
1151-
noncons_flux_node = boundary_conditions[2](u_inner, orientation, direction, x, t,
1152-
nonconservative_flux, equations)
1147+
flux_node, noncons_flux_node = boundary_conditions[2](u_inner, orientation, direction,
1148+
x, t, surface_flux, equations)
11531149
elseif direction == 3
1154-
flux_node = boundary_conditions[3](u_inner, orientation, direction, x, t, surface_flux,
1155-
equations)
1156-
noncons_flux_node = boundary_conditions[3](u_inner, orientation, direction, x, t,
1157-
nonconservative_flux, equations)
1150+
flux_node, noncons_flux_node = boundary_conditions[3](u_inner, orientation, direction,
1151+
x, t, surface_flux, equations)
11581152
else
1159-
flux_node = boundary_conditions[4](u_inner, orientation, direction, x, t, surface_flux,
1160-
equations)
1161-
noncons_flux_node = boundary_conditions[4](u_inner, orientation, direction, x, t,
1162-
nonconservative_flux, equations)
1153+
flux_node, noncons_flux_node = boundary_conditions[4](u_inner, orientation, direction,
1154+
x, t, surface_flux, equations)
11631155
end
11641156

11651157
for ii in axes(surface_flux_values, 1)

0 commit comments

Comments
 (0)