Skip to content
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
18 changes: 14 additions & 4 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
# GPU tests
################################################################################
###############################################################################

########################################
# Linux DG2
########################################

linux-GPU-JIT-build:
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
cmd: |
cmake --preset windows-DG2-JIT-INTERNAL-L0RTAS -DCMAKE_BUILD_TYPE=Release -DEMBREE_TESTING_INTENSITY=3
cmake --build build --config Release --target test_package

windows-DG2-JIT-INTERNAL-test:
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/windows.yml@main
Expand Down Expand Up @@ -275,6 +275,16 @@ jobs:
cmake --build build --config RelWithDebInfo --target build
cmake --build build --config RelWithDebInfo --target test_package

linux-ubuntu24_04-GCC:
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/docker.yml@main
with:
image: embree/ubuntu:24.04
runs-on: '[ "Linux", "docker", "avx512" ]'
cmd: |
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON -DEMBREE_TESTING_INSTALL_TESTS=ON -DCMAKE_INSTALL_TESTDIR="testing" -DEMBREE_TESTING_INTENSITY=3
cmake --build build --config Release --target build
cmake --build build --config Release --target test_package

########################################
# Windows
Expand Down Expand Up @@ -337,7 +347,7 @@ jobs:
cmake --preset macos-x64-CLANG -DCMAKE_BUILD_TYPE=RelWithDebInfo -DEMBREE_TESTING_INTENSITY=2
cmake --build build --config RelWithDebInfo --target build
cmake --build build --config RelWithDebInfo --target test_package

macosx-ARM-CLANG-NEON-AVX2-universal-binaries:
secrets: inherit
uses: intel-innersource/libraries.devops.renderkit.workflows/.github/workflows/macos.yml@main
Expand Down
5 changes: 5 additions & 0 deletions kernels/bvh/bvh_intersector_hybrid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,12 @@ namespace embree
#endif

/* return if there are no valid rays */
#if defined(__GNUC__) && (__GNUC__ < 14)
/* Before GCC 14, AVX512 masks could end up broken by optimization */
unsigned short valid_bits = movemask(valid) & 0xffff;
#else
size_t valid_bits = movemask(valid);
#endif
if (unlikely(valid_bits == 0)) return;

/* verify correct input */
Expand Down