Skip to content

Commit

Permalink
Quick env fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanbabbar04 committed Feb 9, 2023
1 parent 8e6cb9a commit 9c03a6b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pylops/signalprocessing/fft.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import os
os.environ['KMP_DUPLICATE_LIB_OK'] = "TRUE"
__all__ = ["FFT"]

import logging
Expand Down
3 changes: 3 additions & 0 deletions pylops/signalprocessing/fft2d.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import os
os.environ['KMP_DUPLICATE_LIB_OK'] = "TRUE"

__all__ = ["FFT2D"]

import logging
Expand Down
3 changes: 3 additions & 0 deletions pylops/signalprocessing/fftnd.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import os
os.environ['KMP_DUPLICATE_LIB_OK'] = "TRUE"

__all__ = ["FFTND"]

import logging
Expand Down

0 comments on commit 9c03a6b

Please sign in to comment.