Skip to content

Commit

Permalink
Drop test_compile_link on Nvidia
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Jan 1, 2024
1 parent 99ae6f3 commit c5e8fe9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1303,6 +1303,11 @@ def test_compile_link(ctx_factory):
if platform.name == "Apple":
pytest.skip("Apple doesn't like our compile/link test")

if platform.name.lower().startswith("nvidia"):
pytest.skip("Nvidia seems to no longer support compile/link "
"as of driver 525.147.05, results in BUILD_PROGRAM_FAILURE "
"during clCompileProgram")

queue = cl.CommandQueue(ctx)
vsink_prg = cl.Program(ctx, """//CL//
void value_sink(float x)
Expand Down

0 comments on commit c5e8fe9

Please sign in to comment.