Skip to content

Commit

Permalink
Use SoA MB for global memory
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jan 3, 2024
1 parent f090f0a commit e068322
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/alpaka/nbody/nbody.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,11 @@ set y2tics auto
run<Acc, AoS, SoA_SB>(plotFile);
if constexpr(hasSharedMem<Acc>)
run<Acc, AoS, AoSoA>(plotFile);
run<Acc, SoA_SB, AoS>(plotFile);
run<Acc, SoA_MB, AoS>(plotFile);
if constexpr(hasSharedMem<Acc>)
run<Acc, SoA_SB, SoA_SB>(plotFile);
run<Acc, SoA_MB, SoA_SB>(plotFile);
if constexpr(hasSharedMem<Acc>)
run<Acc, SoA_SB, AoSoA>(plotFile);
run<Acc, SoA_MB, AoSoA>(plotFile);
run<Acc, AoSoA, AoS>(plotFile);
if constexpr(hasSharedMem<Acc>)
run<Acc, AoSoA, SoA_SB>(plotFile);
Expand Down

0 comments on commit e068322

Please sign in to comment.