Skip to content

Commit

Permalink
fix openmp error in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
samayala22 committed Feb 5, 2024
1 parent 6597804 commit 77c1d3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup xmake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
xmake-version: branch@master
actions-cache-folder: .xmake-cache

# Update xmake repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup xmake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
xmake-version: branch@master
actions-cache-folder: .xmake-cache

# Update xmake repository (in order to have the file that will be cached)
Expand Down
3 changes: 2 additions & 1 deletion vlm/backends/avx2/xmake.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
add_requires("tbb")

add_requires("openblas")

target("backend-avx2")
Expand All @@ -7,7 +8,7 @@ target("backend-avx2")
add_vectorexts("avx2", "fma")
add_packages("tbb")
add_defines("HAVE_LAPACK_CONFIG_H")
add_packages("openblas")
add_packages("openblas", { public = true })

add_includedirs("../../include")
add_files("src/*.cpp")
Expand Down

0 comments on commit 77c1d3d

Please sign in to comment.