-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0ab7e34
Showing
27 changed files
with
2,831 additions
and
0 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
bin/ |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
variables: | ||
SampleName: FfxParallelSort | ||
GIT_SUBMODULE_STRATEGY: normal | ||
stages: | ||
- build | ||
- deploy | ||
build_dx12: | ||
tags: | ||
- windows | ||
- amd64 | ||
stage: build | ||
script: | ||
- 'cmake -S sample -B sample/build/DX12 -G "Visual Studio 16 2019" -A x64 -DGFX_API=DX12 -DBUILD_INSTALLER=ON' | ||
- 'cmake --build sample/build/DX12 --config Release' | ||
artifacts: | ||
paths: | ||
- sample/bin/ | ||
package_sample: | ||
tags: | ||
- windows | ||
- amd64 | ||
stage: deploy | ||
dependencies: | ||
- build_dx12 | ||
script: | ||
- echo "Packaging build" | ||
- echo cd .\sample\bin\ > %SampleName%_DX12.bat | ||
- echo start %SampleName%_DX12.exe >> %SampleName%_DX12.bat | ||
artifacts: | ||
name: "%SampleName%-%CI_COMMIT_TAG%-%CI_COMMIT_REF_NAME%-%CI_COMMIT_SHORT_SHA%" | ||
paths: | ||
- "sample/bin/" | ||
- "sample/media/" | ||
- "docs/" | ||
- "readme.md" | ||
- "license.txt" | ||
- "%SampleName%_DX12.bat" |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "libs/cauldron"] | ||
path = sample/libs/cauldron | ||
url = ../../GPUOpen-LibrariesAndSDKs/Cauldron.git |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Copyright (c) 2020 Advanced Micro Devices, Inc. All rights reserved. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# FidelityFX Parallel Sort | ||
|
||
The AMD FidelityFX Parallel Sort provides an open source header implementation to easily integrate a highly optimized compute-based radix sort into your game. | ||
|
||
Features of the implementation: | ||
|
||
- Direct and Indirect execution support | ||
- RDNA+ optimized algorithm | ||
- Support for DirectX 12 | ||
- Shaders written in HLSL utilizing SM 6.0 wave-level operations | ||
- DirectX 12 sample | ||
|
||
Resources: | ||
|
||
Introduction to GPU Radix Sort - http://www.heterogeneouscompute.org/wordpress/wp-content/uploads/2011/06/RadixSort.pdf |
Oops, something went wrong.