-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Replace robin-hood-hashing with unordered_dense
robin-hood-hashing is no longer developed. unordered_dense is its replacement, by the same author.
- Loading branch information
1 parent
58b5024
commit 5257776
Showing
9 changed files
with
40 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Copyright (c) 2021-2023 Valve Corporation | ||
# Copyright (c) 2021-2023 LunarG, Inc. | ||
# Copyright (c) 2021-2024 Valve Corporation | ||
# Copyright (c) 2021-2024 LunarG, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
|
@@ -60,27 +60,27 @@ jobs: | |
|
||
linux: | ||
runs-on: ubuntu-22.04 | ||
name: "linux (${{matrix.sanitize}} sanitizer, ${{matrix.config}}, robinhood ${{matrix.robin_hood}} )" | ||
name: "linux (${{matrix.sanitize}} sanitizer, ${{matrix.config}}, unordered_dense ${{matrix.unordered_dense}} )" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
sanitize: [ address, thread ] | ||
config: [debug, release] | ||
robin_hood: [ "ON" ] | ||
unordered_dense: [ "ON" ] | ||
include: | ||
# Test with Robin Hood disabled | ||
# Test with unordered_dense disabled | ||
# Chromium build, and some package managers don't use it. | ||
- config: release | ||
robin_hood: "OFF" | ||
unordered_dense: "OFF" | ||
sanitize: address | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: lukka/get-cmake@latest | ||
- uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.config }}-${{ matrix.sanitize }}-${{matrix.robin_hood}} | ||
key: ${{ matrix.config }}-${{ matrix.sanitize }}-${{matrix.unordered_dense}} | ||
- run: sudo apt-get -qq update && sudo apt-get install -y libwayland-dev xorg-dev | ||
- run: python scripts/tests.py --build --config ${{ matrix.config }} --cmake='-DUSE_ROBIN_HOOD_HASHING=${{matrix.robin_hood}}' | ||
- run: python scripts/tests.py --build --config ${{ matrix.config }} --cmake='-DUSE_UNORDERED_DENSE=${{matrix.unordered_dense}}' | ||
env: | ||
CFLAGS: -fsanitize=${{ matrix.sanitize }} | ||
CXXFLAGS: -fsanitize=${{ matrix.sanitize }} | ||
|
@@ -145,7 +145,7 @@ jobs: | |
build-ci/external/glslang/build/install | ||
build-ci/external/googltest/build/install | ||
build-ci/external/mimalloc/build/install | ||
build-ci/external/robin-hood-hashing/build/install | ||
build-ci/external/unordered_dense/build/install | ||
build-ci/external/SPIRV-Headers/build/install | ||
build-ci/external/SPIRV-Tools/build/install | ||
build-ci/external/Vulkan-Headers/build/install | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters