Skip to content

Commit

Permalink
fix missing semi colons
Browse files Browse the repository at this point in the history
  • Loading branch information
robinson96 committed Aug 29, 2024
1 parent db51f86 commit f024770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/care/policies.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ using RAJAReductionExec = RAJA::hip_exec_with_reduce<256, CARE_CUDA_ASYNC>;
#elif defined(__CUDACC__)
using RAJAReductionExec = RAJA::cuda_exec_with_reduce<256, CARE_CUDA_ASYNC>;
#elif defined(_OPENMP) && defined(RAJA_ENABLE_OPENMP) // CARE_GPUCC
using RAJAReductionExec = RAJA::omp_parallel_for_exec
using RAJAReductionExec = RAJA::omp_parallel_for_exec;
#else
using RAJAReductionExec = RAJADeviceExec
using RAJAReductionExec = RAJADeviceExec;
#endif


Expand Down

0 comments on commit f024770

Please sign in to comment.