Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test fixes for HSA build #1518

Merged
merged 3 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestAieToolsHsaBuildOnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
apt update
apt install -y rocm-hip-runtime-dev5.6.0 python3.10-venv \
libboost-all-dev pkg-config libelf-dev elfutils \
libdwarf-dev libsysfs-dev clang libssl-dev
libdwarf-dev libsysfs-dev clang libssl-dev uuid-dev
apt-get clean

cd /
Expand Down
2 changes: 1 addition & 1 deletion test/aie2xclbin/simple_xclbin_chess.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//===----------------------------------------------------------------------===//

// RUN: aie2xclbin -v --use-chess --host-target=aarch64-linux-gnu %s --xclbin-name=test.xclbin | FileCheck %s
// REQUIRES: valid_xchess_license
// REQUIRES: valid_xchess_license, xrt

// Note that llc determines the architecture from the llvm IR.
// CHECK-NOT: llc
Expand Down
1 change: 1 addition & 0 deletions test/lit.cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
xrt_flags = "-I{} -L{} -luuid -lxrt_coreutil".format(
config.xrt_include_dir, config.xrt_lib_dir
)
config.available_features.add("xrt")
try:
xbutil = os.path.join(config.xrt_bin_dir, "xbutil")
result = subprocess.run(
Expand Down
Loading