Skip to content

Commit

Permalink
Change default parallel to false
Browse files Browse the repository at this point in the history
  • Loading branch information
iguinn committed Nov 1, 2024
1 parent ee73d2a commit fa52dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pygama/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class NumbaPygamaDefaults(MutableMapping):
"""

def __init__(self) -> None:
self.parallel: bool = getenv_bool("PYGAMA_PARALLEL", default=True)
self.parallel: bool = getenv_bool("PYGAMA_PARALLEL", default=False)
self.fastmath: bool = getenv_bool("PYGAMA_FASTMATH", default=True)

def __getitem__(self, item: str) -> Any:
Expand Down

0 comments on commit fa52dec

Please sign in to comment.