-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from CExA-project/rename-cmake-variables
Rename cmake variables
- Loading branch information
Showing
21 changed files
with
90 additions
and
64 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
add_subdirectory(src) | ||
if(BUILD_TESTING) | ||
if(KokkosFFT_ENABLE_TESTS) | ||
add_subdirectory(unit_test) | ||
endif() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,16 @@ | ||
.. _01_1DFFT: | ||
|
||
One dimensional FFT | ||
------------------- | ||
=================== | ||
|
||
numpy | ||
----- | ||
|
||
.. literalinclude:: ../../examples/01_1DFFT/numpy_1DFFT.py | ||
:language: python | ||
|
||
KokkosFFT | ||
--------- | ||
|
||
.. literalinclude:: ../../examples/01_1DFFT/01_1DFFT.cpp | ||
:language: C++ | ||
:language: C++ |
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,10 +1,16 @@ | ||
.. _02_2DFFT: | ||
|
||
Two dimensional FFT | ||
------------------- | ||
=================== | ||
|
||
numpy | ||
----- | ||
|
||
.. literalinclude:: ../../examples/02_2DFFT/numpy_2DFFT.py | ||
:language: python | ||
|
||
KokkosFFT | ||
--------- | ||
|
||
.. literalinclude:: ../../examples/02_2DFFT/02_2DFFT.cpp | ||
:language: C++ |
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,10 +1,16 @@ | ||
.. _03_NDFFT: | ||
|
||
N-dimensional FFT | ||
----------------- | ||
================= | ||
|
||
numpy | ||
----- | ||
|
||
.. literalinclude:: ../../examples/03_NDFFT/numpy_NDFFT.py | ||
:language: python | ||
|
||
KokkosFFT | ||
--------- | ||
|
||
.. literalinclude:: ../../examples/03_NDFFT/03_NDFFT.cpp | ||
:language: C++ |
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,10 +1,16 @@ | ||
.. _04_batchedFFT: | ||
|
||
One-dimensional batched FFT | ||
--------------------------- | ||
=========================== | ||
|
||
numpy | ||
----- | ||
|
||
.. literalinclude:: ../../examples/04_batchedFFT/numpy_batchedFFT.py | ||
:language: python | ||
|
||
KokkosFFT | ||
--------- | ||
|
||
.. literalinclude:: ../../examples/04_batchedFFT/04_batchedFFT.cpp | ||
:language: C++ |
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,10 +1,16 @@ | ||
.. _05_1DFFT_HOST_DEVICE: | ||
|
||
FFT on host and device | ||
---------------------- | ||
====================== | ||
|
||
numpy | ||
----- | ||
|
||
.. literalinclude:: ../../examples/05_1DFFT_HOST_DEVICE/numpy_1DFFT.py | ||
:language: python | ||
|
||
KokkosFFT | ||
--------- | ||
|
||
.. literalinclude:: ../../examples/05_1DFFT_HOST_DEVICE/05_1DFFT_HOST_DEVICE.cpp | ||
:language: C++ |
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,10 +1,16 @@ | ||
.. _06_1DFFT_reuse_plans: | ||
|
||
Reuse fft plan | ||
-------------- | ||
Reuse FFT plan | ||
============== | ||
|
||
numpy | ||
----- | ||
|
||
.. literalinclude:: ../../examples/06_1DFFT_reuse_plans/numpy_1DFFT.py | ||
:language: python | ||
|
||
KokkosFFT | ||
--------- | ||
|
||
.. literalinclude:: ../../examples/06_1DFFT_reuse_plans/06_1DFFT_reuse_plans.cpp | ||
:language: C++ |
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 @@ | ||
add_subdirectory(src) | ||
if(BUILD_TESTING) | ||
if(KokkosFFT_ENABLE_TESTS) | ||
add_subdirectory(unit_test) | ||
endif() | ||
|
||
|
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
Oops, something went wrong.