Skip to content

Commit

Permalink
CL_SUCCESS parameter was not initialized to 0 in mod_CLsupport
Browse files Browse the repository at this point in the history
this did not cause a problem in Mac OS 14 (Sonoma), but apparently became a problem in OS 15 (Sequoia)
  • Loading branch information
marcdegraef committed Jan 27, 2025
1 parent cc72fcb commit 35e9cc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/EMOpenCLLib/mod_CLsupport.f90
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,9 @@ module mod_CLsupport
integer(c_int32_t),allocatable :: num_GPUdevices(:)
logical,allocatable :: noCPUdevices(:)
logical,allocatable :: noGPUdevices(:)

! general error status
integer(c_int32_t) :: CL_SUCCESS = 0

contains
private
procedure, pass(self) :: error_check_
Expand Down

0 comments on commit 35e9cc5

Please sign in to comment.