コード例 #1
0
def backend_opt(request):
    name, options = request.param
    try:
        b = load_backend(name, options)
    except LoadingError as e:
        pytest.skip(f"Can't load {name}: {e.__cause__}")
    return b
コード例 #2
0
ファイル: test_relay.py プロジェクト: xyz3021/myia
def test_relay_backend_bad_exec():
    with pytest.raises(Exception):
        load_backend("relay", dict(target="cpu", exec_kind="potato"))
コード例 #3
0
ファイル: test_relay.py プロジェクト: xyz3021/myia
def test_relay_backend_bad_device():
    with pytest.raises(Exception):
        load_backend("relay", dict(target="cuda", device_id=31))
コード例 #4
0
ファイル: test_relay.py プロジェクト: leozhoupeng83/myia
def test_relay_backend_bad_device():
    with pytest.raises(Exception):
        load_backend('relay', dict(target='cuda', device_id=31))
コード例 #5
0
def test_nnvm_backend_bad_device():
    with pytest.raises(Exception):
        load_backend('nnvm', dict(target="cuda", device_id=31))