Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
deepspeed
Commits
dc226fdb
Commit
dc226fdb
authored
Feb 01, 2020
by
Elton Zheng
Browse files
add two test files
parent
8c4e2a30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
117 additions
and
0 deletions
+117
-0
tests/unit/test_config.py
tests/unit/test_config.py
+9
-0
tests/unit/test_run.py
tests/unit/test_run.py
+108
-0
No files found.
tests/unit/test_config.py
0 → 100644
View file @
dc226fdb
# A test on its own
import
torch
# A test on its own
import
deepspeed
def
test_cuda
():
assert
(
torch
.
cuda
.
is_available
())
tests/unit/test_run.py
0 → 100644
View file @
dc226fdb
import
pytest
from
deepspeed.pt
import
deepspeed_run
as
dsrun
def
test_parser_mutual_exclusive
():
'''Ensure dsrun.parse_resource_filter() raises a ValueError when include_str and
exclude_str are both provided.
'''
with
pytest
.
raises
(
ValueError
):
dsrun
.
parse_resource_filter
({},
include_str
=
'A'
,
exclude_str
=
'B'
)
def
test_parser_local
():
''' Test cases with only one node. '''
# First try no incude/exclude
hosts
=
{
'worker-0'
:
[
0
,
1
,
2
,
3
]}
ret
=
dsrun
.
parse_resource_filter
(
hosts
)
assert
(
ret
==
hosts
)
# exclude slots
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-0:1'
)
assert
(
ret
==
{
'worker-0'
:
[
0
,
2
,
3
]})
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-0:1,2'
)
assert
(
ret
==
{
'worker-0'
:
[
0
,
3
]})
# only use one slot
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'worker-0:1'
)
assert
(
ret
==
{
'worker-0'
:
[
1
]})
# including slots multiple times shouldn't break things
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'worker-0:1,1'
)
assert
(
ret
==
{
'worker-0'
:
[
1
]})
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'worker-0:1@worker-0:0,1'
)
assert
(
ret
==
{
'worker-0'
:
[
0
,
1
]})
# including just 'worker-0' without : should still use all GPUs
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'worker-0'
)
assert
(
ret
==
hosts
)
# excluding just 'worker-0' without : should eliminate everything
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-0'
)
assert
(
ret
==
{})
# exclude all slots manually
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-0:0,1,2,3'
)
assert
(
ret
==
{})
def
test_parser_multinode
():
# First try no incude/exclude
hosts
=
{
'worker-0'
:
[
0
,
1
,
2
,
3
],
'worker-1'
:
[
0
,
1
,
2
,
3
]}
ret
=
dsrun
.
parse_resource_filter
(
hosts
)
assert
(
ret
==
hosts
)
# include a node
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'worker-1:0,3'
)
assert
(
ret
==
{
'worker-1'
:
[
0
,
3
]})
# exclude a node
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-1'
)
assert
(
ret
==
{
'worker-0'
:
[
0
,
1
,
2
,
3
]})
# exclude part of each node
ret
=
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-0:0,1@worker-1:3'
)
assert
(
ret
==
{
'worker-0'
:
[
2
,
3
],
'worker-1'
:
[
0
,
1
,
2
]})
def
test_parser_errors
():
'''Ensure we catch errors. '''
hosts
=
{
'worker-0'
:
[
0
,
1
,
2
,
3
],
'worker-1'
:
[
0
,
1
,
2
,
3
]}
# host does not exist
with
pytest
.
raises
(
ValueError
):
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'jeff'
)
with
pytest
.
raises
(
ValueError
):
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'jeff'
)
# slot does not exist
with
pytest
.
raises
(
ValueError
):
dsrun
.
parse_resource_filter
(
hosts
,
include_str
=
'worker-1:4'
)
with
pytest
.
raises
(
ValueError
):
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-1:4'
)
# formatting
with
pytest
.
raises
(
ValueError
):
dsrun
.
parse_resource_filter
(
hosts
,
exclude_str
=
'worker-1@worker-0:1@5'
)
def
test_num_plus_parser
():
''' Ensure we catch errors relating to num_nodes/num_gpus + -i/-e being mutually exclusive'''
# inclusion
with
pytest
.
raises
(
ValueError
):
dsrun
.
main
(
args
=
"--num_nodes 1 -i localhost foo.py"
.
split
())
with
pytest
.
raises
(
ValueError
):
dsrun
.
main
(
args
=
"--num_nodes 1 --num_gpus 1 -i localhost foo.py"
.
split
())
with
pytest
.
raises
(
ValueError
):
dsrun
.
main
(
args
=
"--num_gpus 1 -i localhost foo.py"
.
split
())
# exclusion
with
pytest
.
raises
(
ValueError
):
dsrun
.
main
(
args
=
"--num_nodes 1 -e localhost foo.py"
.
split
())
with
pytest
.
raises
(
ValueError
):
dsrun
.
main
(
args
=
"--num_nodes 1 --num_gpus 1 -e localhost foo.py"
.
split
())
with
pytest
.
raises
(
ValueError
):
dsrun
.
main
(
args
=
"--num_gpus 1 -e localhost foo.py"
.
split
())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment