Race condition in the fortran code
duerrsimon opened this issue · 2 comments
duerrsimon commented
There is a possible race condition for the tmp variables in the fortran codes supplied for the f90 files
https://github.com/eth-cscs/PythonHPC/blob/master/f2py/distance-f90/euclidean.f90
https://github.com/eth-cscs/PythonHPC/blob/master/f2py/distance-f90/cityblock.f90
A possible fix would be to wrap the OMP PARALLEL like so
!$OMP PARALLEL DO PRIVATE(tmp)
as reported by @andersx
rsarm commented
Fixed in #33
Thanks! @duerrsimon
rsarm commented
.