We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03f122e commit dce0460Copy full SHA for dce0460
Makefile
@@ -8,10 +8,10 @@ EXTRA_ARGS ?= # extra arguments for pytest
8
EXTRA_LAUNCHER_ARGS ?= # extra arguments for the composer cli launcher
9
10
test:
11
- LOCAL_WORLD_SIZE=1 $(PYTHON) -m $(PYTEST) $(EXTRA_ARGS)
+ WORLD_SIZE=1 LOCAL_WORLD_SIZE=1 $(PYTHON) -m $(PYTEST) $(EXTRA_ARGS)
12
13
test-gpu:
14
- LOCAL_WORLD_SIZE=1 $(PYTHON) -m $(PYTEST) -m gpu $(EXTRA_ARGS)
+ WORLD_SIZE=1 LOCAL_WORLD_SIZE=1 $(PYTHON) -m $(PYTEST) -m gpu $(EXTRA_ARGS)
15
16
# runs tests with the launcher
17
test-dist:
0 commit comments