numo-openblas 0.3.0 → 0.3.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 +3 -3
- data/ext/numo/openblas/extconf.rb +2 -2
- data/lib/numo/openblas/version.rb +1 -1
- data/numo-openblas.gemspec +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ac2aed2679cd061818edb12f371deaf05e606c14447b5e37c0e1a6aabb5eab1b
|
|
4
|
+
data.tar.gz: 0dc9e41b885d24604ca4f334d75341ca5861e3d066ffa077935e878c23e87a33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c6cb3e8ffa4835247fd029cc4e81d89851d6c02231c86ff7cf61faab914ce239e8595d43ebd3b6668efce5ca94df27ca63605451a9c6f19b2b368090908ec767
|
|
7
|
+
data.tar.gz: 79da324b51d42b019c66e584b62fabbc1dbb000db91129a1c3f55da8e35af81cb6c7b4d56062abbad89016f492598bbbeaef7604073deb0650cfa4c92f90bc60
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/yoshoku/numo-openblas/actions?query=workflow%3Abuild)
|
|
4
4
|
[](https://badge.fury.io/rb/numo-openblas)
|
|
5
|
-
[](https://github.com/yoshoku/suika/blob/
|
|
5
|
+
[](https://github.com/yoshoku/suika/blob/main/LICENSE.txt)
|
|
6
6
|
|
|
7
7
|
Numo::OpenBLAS downloads and builds [OpenBLAS](https://www.openblas.net/) during installation and
|
|
8
8
|
uses that as a background library for [Numo::Linalg](https://github.com/ruby-numo/numo-linalg).
|
|
@@ -62,7 +62,7 @@ Moreover, some of the build options are defined by constants.
|
|
|
62
62
|
|
|
63
63
|
## Contributing
|
|
64
64
|
|
|
65
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/numo-openblas. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/
|
|
65
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/numo-openblas. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/main/CODE_OF_CONDUCT.md).
|
|
66
66
|
|
|
67
67
|
## License
|
|
68
68
|
|
|
@@ -70,4 +70,4 @@ The gem is available as open source under the terms of the [BSD-3-Clause License
|
|
|
70
70
|
|
|
71
71
|
## Code of Conduct
|
|
72
72
|
|
|
73
|
-
Everyone interacting in the Numo::Openblas project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/
|
|
73
|
+
Everyone interacting in the Numo::Openblas project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/main/CODE_OF_CONDUCT.md).
|
|
@@ -8,8 +8,8 @@ require 'open-uri'
|
|
|
8
8
|
require 'open3'
|
|
9
9
|
require 'rubygems/package'
|
|
10
10
|
|
|
11
|
-
OPENBLAS_VER = '0.3.
|
|
12
|
-
OPENBLAS_KEY = '
|
|
11
|
+
OPENBLAS_VER = '0.3.13'
|
|
12
|
+
OPENBLAS_KEY = '685537a821819ef4dae5901998a57f0eec5bddad'
|
|
13
13
|
OPENBLAS_URI = "https://github.com/xianyi/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
|
|
14
14
|
OPENBLAS_DIR = File.expand_path(__dir__ + '/../../../vendor')
|
|
15
15
|
|
data/numo-openblas.gemspec
CHANGED
|
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
|
|
20
20
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
21
21
|
spec.metadata['source_code_uri'] = 'https://github.com/yoshoku/numo-openblas'
|
|
22
|
-
spec.metadata['changelog_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/
|
|
23
|
-
spec.metadata['documentation_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/
|
|
22
|
+
spec.metadata['changelog_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md'
|
|
23
|
+
spec.metadata['documentation_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/main/README.md'
|
|
24
24
|
|
|
25
25
|
# Specify which files should be added to the gem when it is released.
|
|
26
26
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-openblas
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-12-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: numo-linalg
|
|
@@ -55,9 +55,9 @@ licenses:
|
|
|
55
55
|
metadata:
|
|
56
56
|
homepage_uri: https://github.com/yoshoku/numo-openblas
|
|
57
57
|
source_code_uri: https://github.com/yoshoku/numo-openblas
|
|
58
|
-
changelog_uri: https://github.com/yoshoku/numo-openblas/blob/
|
|
59
|
-
documentation_uri: https://github.com/yoshoku/numo-openblas/blob/
|
|
60
|
-
post_install_message:
|
|
58
|
+
changelog_uri: https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md
|
|
59
|
+
documentation_uri: https://github.com/yoshoku/numo-openblas/blob/main/README.md
|
|
60
|
+
post_install_message:
|
|
61
61
|
rdoc_options: []
|
|
62
62
|
require_paths:
|
|
63
63
|
- lib
|
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
73
73
|
version: '0'
|
|
74
74
|
requirements: []
|
|
75
75
|
rubygems_version: 3.1.4
|
|
76
|
-
signing_key:
|
|
76
|
+
signing_key:
|
|
77
77
|
specification_version: 4
|
|
78
78
|
summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses
|
|
79
79
|
that as a background library for Numo::Linalg.
|