Skip to content

Commit

Permalink
Adapt test_ukernel.py to an API change (iree-org#19197)
Browse files Browse the repository at this point in the history
Signed-off-by: Benoit Jacob <[email protected]>
  • Loading branch information
bjacob authored Nov 19, 2024
1 parent b68c535 commit 5b0740c
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import pytest
from ireers_tools import *
from pathlib import Path

###############################################################################
# Fixtures
Expand All @@ -25,7 +26,7 @@
def argmax_ukernel_host_cpu_vmfb(argmax_ukernel_source):
return iree_compile(
argmax_ukernel_source,
"host_cpu",
vmfb_path=Path("host_cpu"),
flags=COMMON_FLAGS
+ [
"--iree-hal-target-backends=llvm-cpu",
Expand All @@ -38,7 +39,7 @@ def argmax_ukernel_host_cpu_vmfb(argmax_ukernel_source):
def argmax_ukernel_gfx90a_rocm_vmfb(argmax_ukernel_source):
return iree_compile(
argmax_ukernel_source,
"gfx90a_rocm",
vmfb_path=Path("gfx90a_rocm"),
flags=COMMON_FLAGS
+ [
"--iree-hal-target-backends=rocm",
Expand All @@ -52,7 +53,7 @@ def argmax_ukernel_gfx90a_rocm_vmfb(argmax_ukernel_source):
def argmax_ukernel_gfx940_rocm_vmfb(argmax_ukernel_source):
return iree_compile(
argmax_ukernel_source,
"gfx940_rocm",
vmfb_path=Path("gfx940_rocm"),
flags=COMMON_FLAGS
+ [
"--iree-hal-target-backends=rocm",
Expand Down

0 comments on commit 5b0740c

Please sign in to comment.