Skip to content

Commit 5a665b2

Browse files
committed
Re-enable Apple GPU profiling.
1 parent 2416719 commit 5a665b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scalene/scalene_arguments.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class ScaleneArguments(argparse.Namespace):
99

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

0 commit comments

Comments
 (0)