Skip to content

Commit

Permalink
Merge branch 'release-2.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
alazzaro committed Aug 29, 2022
2 parents a9d653e + 440499e commit e330c82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MAJOR = 2
MINOR = 4
PATCH = 0
PATCH = 1
# A specific DATE (YYYY-MM-DD) fixes an official release, otherwise
# it is considered Development version.
DATE = 2022-08-29
Expand Down
4 changes: 2 additions & 2 deletions src/acc/libsmm_acc/libsmm_acc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ inline void jit_kernel(ACC_DRV(function) & kern_func, libsmm_acc_algo algo, int

// (JIT-)compile kernel program
#if defined(__CUDA) || defined(__HIP_PLATFORM_NVCC__)
const char* compileOptions[] = {"-D__CUDA", "-O3", "-w", ARCH_OPTION};
size_t nOptions = 4;
const char* compileOptions[] = {"-D__CUDA", "-w", ARCH_OPTION};
size_t nOptions = 3;
#else
const char* compileOptions[] = {"-D__HIP", "-O3", "-w"};
size_t nOptions = 3;
Expand Down

0 comments on commit e330c82

Please sign in to comment.