numo-pocketfft 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +2 -2
- data/ext/numo/pocketfft/extconf.rb +6 -0
- data/lib/numo/pocketfft/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5fa60c7c4f1066756e1e9d8b953623f12a5025a802855f299b22375922ccb67
|
|
4
|
+
data.tar.gz: 17971400018c337cdaba02ab2a9564ddcd8a5fa96ca38473ac875a9ef99bec92
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e3f8253555afff5c0b15e7c97a007df3bd4a6b468b0e535ac4696a97da9fda13178170b6403c9bb6c65ab4849961288a46d40ca358dfe71d4fafd89f48b90ab2
|
|
7
|
+
data.tar.gz: a137be01ea73aac4cca32e7d79f784be9df59f4b2f844cf8cd950040ff09fd98e74b586fe9d097ed902ab05f114d4f4cc3d64451b4446fb44878525f38e2d765
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
[](https://coveralls.io/github/yoshoku/numo-pocketfft?branch=main)
|
|
5
5
|
[](https://badge.fury.io/rb/numo-pocketfft)
|
|
6
6
|
[](https://github.com/yoshoku/numo-pocketfft/blob/main/LICENSE.txt)
|
|
7
|
-
[](https://yoshoku.github.io/numo-pocketfft/doc/)
|
|
8
8
|
|
|
9
9
|
Numo::Pocketfft provides functions for performing descrete Fourier Transform with
|
|
10
10
|
[Numo::NArray](https://github.com/ruby-numo/numo-narray) by using
|
|
@@ -61,7 +61,7 @@ Numo::Pocketfft.ifft2(Numo::Pocketfft.fft2(c))
|
|
|
61
61
|
|
|
62
62
|
## Contributing
|
|
63
63
|
|
|
64
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/numo-pocketfft. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](
|
|
64
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/numo-pocketfft. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://contributor-covenant.org) code of conduct.
|
|
65
65
|
|
|
66
66
|
## License
|
|
67
67
|
|
|
@@ -26,6 +26,12 @@ if RUBY_PLATFORM =~ /mswin|cygwin|mingw/
|
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
|
|
29
|
+
if RUBY_PLATFORM.match?(/darwin/) && Gem::Version.new('3.1.0') <= Gem::Version.new(RUBY_VERSION)
|
|
30
|
+
if try_link('int main(void){return 0;}', '-Wl,-undefined,dynamic_lookup')
|
|
31
|
+
$LDFLAGS << ' -Wl,-undefined,dynamic_lookup'
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
29
35
|
$CFLAGS = "#{$CFLAGS} -std=c99"
|
|
30
36
|
|
|
31
37
|
$srcs = Dir.glob("#{$srcdir}/**/*.c").map { |path| File.basename(path) }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-pocketfft
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-11-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: numo-narray
|
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: '0'
|
|
73
73
|
requirements: []
|
|
74
|
-
rubygems_version: 3.
|
|
74
|
+
rubygems_version: 3.3.26
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 4
|
|
77
77
|
summary: Numo::Pocketfft provides functions for descrete Fourier Transform based on
|