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

Fix crash in Linux (TBB) #24

Merged
merged 1 commit into from
Jan 9, 2025
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
3 changes: 0 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ jobs:
core.exportVariable('CCACHE_DEBUGDIR', String.raw`${{ github.workspace }}/ccache-debug`);
core.exportVariable('CCACHE_LOGFILE', String.raw`${{ github.workspace }}/ccache.log`);


- name: Update apt (Linux)
if: runner.os == 'Linux'
shell: bash
Expand Down Expand Up @@ -303,7 +302,6 @@ jobs:
id-token: write
attestations: write
contents: read

runs-on: ubuntu-latest
if: ${{ github.ref_name }} == 'work'
steps:
Expand All @@ -330,7 +328,6 @@ jobs:
id-token: write
attestations: write
contents: read

runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
Expand Down
11 changes: 8 additions & 3 deletions conan-profiles/conan-profile-Linux-X64
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,15 @@ compiler.libcxx=libstdc++11

[options]
openvdb/*:simd=AVX
embree3/*:shared=False
embree3/*:with_tbb=False
embree3/*:sse2=False
embree3/*:sse42=False
embree3/*:avx=False
embree3/*:avx2=True
embree3/*:avx512=True
embree3/*:avx512=False

[conf]
tools.build:cflags+=["-ftree-vectorize", "-march=x86-64-v3", "-O3"]
tools.build:cxxflags+=["-ftree-vectorize", "-march=x86-64-v3", "-O3"]
tools.build:cflags+=["-march=x86-64-v3", "-O3"]
tools.build:cxxflags+=["-march=x86-64-v3", "-O3"]
openvdb/*:tools.cmake.cmaketoolchain:extra_variables={ 'USE_CCACHE':'OFF' }
9 changes: 7 additions & 2 deletions debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
#export CIBW_DEBUG_KEEP_CONTAINER=TRUE
act \
--action-offline-mode \
--job build_wheels \
-s GITHUB_TOKEN="$(gh auth token)" \
--matrix os:ubuntu-latest --matrix python-minor:'12' \
--artifact-server-path /tmp/artifacts
--matrix os:ubuntu-latest --matrix python-minor:'13' \
--artifact-server-path /tmp/pyluxcore

cd /tmp/pyluxcore/1/cibw-wheels-ubuntu-latest-13
unzip cibw-wheels-ubuntu-latest-13.zip

Loading