Skip to content

Commit

Permalink
try runner with updated driver
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental committed Aug 23, 2024
1 parent 95b6988 commit 10dab9e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ jobs:

test_linux:
name: E2E Test linux
runs-on: amd7940hs
runs-on: nod-nuc-linux-2
needs: build_and_ctest
strategy:
fail-fast: true
env:
XILINXD_LICENSE_FILE: /home/svcnod/Xilinx.lic
XILINXD_LICENSE_FILE: /opt/xilinx/Xilinx.lic
steps:
- name: "Checking out repository" # for test scripts
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
Expand Down
28 changes: 14 additions & 14 deletions compiler/plugins/target/AMD-AIE/iree-amd-aie/Target/XCLBinGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,20 +93,20 @@ using Path = std::filesystem::path;
namespace {

FailureOr<std::string> getNPUVersion() {
std::string errorMessage;
auto maybeVbnv =
openInputFile("/sys/bus/pci/devices/0000:c5:00.1/vbnv", &errorMessage);
if (!maybeVbnv) {
llvm::errs() << "couldn't read pci info for npu because: " << errorMessage;
return failure();
}

std::string vbnv = std::string{maybeVbnv->getBuffer()};
std::regex rgx("RyzenAI-(.*)");
std::smatch matches;
if (std::regex_search(vbnv, matches, rgx)) return {matches[1]};
llvm::errs() << "couldn't find npu version in " << vbnv;
return failure();
// std::string errorMessage;
// auto maybeVbnv =
// openInputFile("/sys/bus/pci/devices/0000:c5:00.1/vbnv", &errorMessage);
// if (!maybeVbnv) {
// llvm::errs() << "couldn't read pci info for npu because: " << errorMessage;
// return failure();
// }
//
// std::string vbnv = std::string{maybeVbnv->getBuffer()};
// std::regex rgx("RyzenAI-(.*)");
// std::smatch matches;
// if (std::regex_search(vbnv, matches, rgx)) return {matches[1]};
// llvm::errs() << "couldn't find npu version in " << vbnv;
return std::string{"npu1"};
}

FailureOr<std::string> getTargetDir() {
Expand Down

0 comments on commit 10dab9e

Please sign in to comment.