浏览代码

Remove multi_gpu from learn test

/develop/nopreviousactions
Ervin Teng 5 年前
当前提交
c68b5643
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 2
      ml-agents/mlagents/trainers/tests/test_learn.py

2
ml-agents/mlagents/trainers/tests/test_learn.py


assert opt.docker_target_name is None
assert opt.no_graphics is False
assert opt.debug is False
assert opt.multi_gpu is False
assert opt.env_args is None
full_args = [

assert opt.docker_target_name == "mydockertarget"
assert opt.no_graphics is True
assert opt.debug is True
assert opt.multi_gpu is True
@patch("builtins.open", new_callable=mock_open, read_data="{}")

正在加载...
取消
保存