Exemplo n.º 1
0
def test_parse_quotes_and_separators_on_options():
    targets_no_quote = parse_target("foo -option1=+v1.0x,+value,+bar")
    targets_single_quote = parse_target("foo -option1='+v1.0x,+value'")
    targets_double_quote = parse_target('foo -option1="+v1.0x,+value"')

    assert len(targets_no_quote) == 1
    assert "+v1.0x,+value,+bar" == targets_no_quote[0]["opts"]["option1"]

    assert len(targets_single_quote) == 1
    assert "+v1.0x,+value" == targets_single_quote[0]["opts"]["option1"]

    assert len(targets_double_quote) == 1
    assert "+v1.0x,+value" == targets_double_quote[0]["opts"]["option1"]
Exemplo n.º 2
0
def test_parse_multiple_target_with_opts_ethos_n78():
    targets = parse_target(
        "ethos-n -myopt=value, llvm -device=arm_cpu --system-lib")

    assert len(targets) == 2
    assert "ethos-n" == targets[0]["name"]
    assert "myopt" in targets[0]["opts"]
    assert "value" == targets[0]["opts"]["myopt"]
    assert "llvm" == targets[1]["name"]
Exemplo n.º 3
0
def test_parse_multiple_hybrid_target():
    """Hybrid Target and multiple external codegen"""
    targets = parse_target("ethos-u,cmsis-nn,c")

    assert len(targets) == 3
    assert "ethos-u" == targets[0]["name"]
    assert not targets[0]["is_tvm_target"]
    assert "cmsis-nn" == targets[1]["name"]
    assert not targets[1]["is_tvm_target"]
    assert "c" == targets[2]["name"]
    assert targets[2]["is_tvm_target"]
Exemplo n.º 4
0
def test_parse_hybrid_target():
    """Hybrid Target and external codegen"""
    targets = parse_target(
        "cmsis-nn -accelerator_config=ethos-u55-256, llvm -device=arm_cpu --system-lib"
    )

    assert len(targets) == 2
    assert "cmsis-nn" == targets[0]["name"]
    assert not targets[0]["is_tvm_target"]
    assert "llvm" == targets[1]["name"]
    assert targets[1]["is_tvm_target"]
Exemplo n.º 5
0
def test_parse_multiple_target():
    targets = parse_target("compute-library, llvm -device=arm_cpu")

    assert len(targets) == 2
    assert "compute-library" == targets[0]["name"]
    assert "llvm" == targets[1]["name"]
Exemplo n.º 6
0
def test_parse_single_target_with_opts():
    targets = parse_target("llvm -device=arm_cpu -mattr=+fp")

    assert len(targets) == 1
    assert "device" in targets[0]["opts"]
    assert "mattr" in targets[0]["opts"]