Skip to content

Commit

Permalink
Restore GPU profiling by default on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Jan 9, 2025
1 parent 83b8725 commit 9c8b827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scalene/scalene_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ScaleneArguments(argparse.Namespace):

def __init__(self, **kwargs: Any) -> None:
self.cpu = True
self.gpu = platform.system() != "Darwin"
self.gpu = True
self.memory = sys.platform != "win32"
self.stacks = False # default - don't collect stack traces
self.cpu_percent_threshold = 1
Expand Down

0 comments on commit 9c8b827

Please sign in to comment.