Skip to content
Snippets Groups Projects
Commit 23e8e04b authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Skip llvm cuda compilation if llc not in $PATH

parent 8d22fddf
1 merge request!53Compile CUDA using the LLVM backend
import numpy as np
import pytest
from pystencils import Assignment, Field, show_code
from pystencils.cpu.cpujit import get_llc_command
from pystencils.llvm import create_kernel, make_python_function
from pystencils.llvm.llvmjit import generate_and_jit
......@@ -30,6 +32,7 @@ def test_jacobi_fixed_field_size():
np.testing.assert_almost_equal(error, 0.0)
@pytest.mark.skipif(not get_llc_command(), reason="Tests requires llc in $PATH")
def test_jacobi_fixed_field_size_gpu():
size = (30, 20)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment