-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve support for CUDA, add batched interface, improve tests, updat…
…e documentation (#2)
- Loading branch information
1 parent
66b7dfe
commit df842a3
Showing
11 changed files
with
1,271 additions
and
368 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,7 @@ | ||
--- | ||
Language: Cpp | ||
BasedOnStyle: Google | ||
ColumnLimit: 90 | ||
AccessModifierOffset: -2 | ||
DerivePointerAlignment: false | ||
PointerAlignment: Right |
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,30 @@ | ||
name: Regent-FFT Tests | ||
|
||
run-name: ${{ github.actor }} is testing Regent-FFT | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
regent-FFT-tests: | ||
runs-on: ubuntu-22.04 | ||
|
||
strategy: | ||
matrix: | ||
debug: ['1', '0'] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run clang-format | ||
run: | | ||
clang-format -i test/*.{h,cc} | ||
git status | ||
git diff --exit-code | ||
- name: Run tests | ||
env: | ||
DEBUG: ${{ matrix.debug }} | ||
run: ./test.sh |
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,4 +1,8 @@ | ||
*~ | ||
|
||
legion | ||
/fftw-* | ||
env.sh | ||
valgrind* | ||
gdb* | ||
*.log | ||
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,7 @@ | ||
# Version History | ||
|
||
- 1.0: Initial Release (Jul 2024) | ||
- Supports CPU and single-GPU transforms for 1D, 2D, and 3D. | ||
- Supports Real-to-Complex and Complex-to-Complex transforms for both CPU and GPU | ||
- Supports single-precision (`float` / `complex32`) and double precision (`double` / `complex64`) transforms | ||
- Supports batched transforms for all of the above configurations |
Oops, something went wrong.