-
Notifications
You must be signed in to change notification settings - Fork 1
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
egdeeno
committed
Aug 18, 2023
0 parents
commit 1dd9eaa
Showing
7 changed files
with
5,312 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 @@ | ||
/target |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,34 @@ | ||
[package] | ||
name = "pocketfft-rs" | ||
version = "1.0.0" | ||
edition = "2018" | ||
rust-version = "1.56" | ||
description = "Rust pocketfft lib" | ||
documentation = "https://github.com/egdeeno/pocketfft-rs" | ||
readme = "README.md" | ||
homepage = "https://github.com/egdeeno/pocketfft-rs" | ||
repository = "https://github.com/egdeeno/pocketfft-rs" | ||
license-file = "LICENSE" | ||
keywords = ["FFT"] | ||
|
||
[lib] | ||
name = "pocketfft_rs" | ||
crate-type = ["cdylib", "staticlib", "rlib"] | ||
|
||
[profile.release] | ||
opt-level = 'z' | ||
lto = true # enable link time optimization | ||
panic = "abort" # disable stack unwinding on panic | ||
strip = true | ||
|
||
[profile.dev] | ||
opt-level = 0 | ||
lto = false # disable link time optimization | ||
panic = "abort" # disable stack unwinding on panic | ||
|
||
[profile.test] | ||
opt-level = 3 | ||
lto = false # disable link time optimization | ||
|
||
[dev-dependencies] | ||
libc = "0.2.98" |
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,32 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (C) 2010-2019 Max-Planck-Society | ||
All rights reserved. | ||
|
||
Copyright (c) 2020 | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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,4 @@ | ||
# pocketfft_rust | ||
pocketfft rewritten in Rust lang. | ||
|
||
Original repo https://gitlab.mpcdf.mpg.de/mtr/pocketfft |
Oops, something went wrong.