numo-openblas 0.3.2 → 0.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c9bc16e4fbf80a0451a47d632fc079cc06afc593d2c76772dd644314f75c880
4
- data.tar.gz: 9464fe4bc6d7a9ec3b75a6bef24cacb122af0d0e9ec745ea20801e82c5d5ee1a
3
+ metadata.gz: 013ec7921e8a2144bf2ea878408e429826d579f2df0c5bdd7962b27fc75d01e5
4
+ data.tar.gz: 16119dea96f0a4ad51bd51cea8b2301a1750c10fe5f2ae6f8e9647bdfb8285e5
5
5
  SHA512:
6
- metadata.gz: 850d4686ed9382c72e35eacd51a96fb90d2a22b2c5087dd30dc9ac6ad0886dd9d4246ecea6c601615461b95f1e135f4510b23732a475bd763977eb8ee5aca21c
7
- data.tar.gz: 1d75fc4aaeeb8185914470c9ab3ca55374688f14a0f2da559a52e08c388268902637cf95ff3990425cdc81babfe5310498716866fcd3e90b6d1519286f904306
6
+ metadata.gz: 9bcb090824e2cc65eb03f1f7aa74dc000a92a88e0472bb75df108dae641df170c8ebd1bbd96bd17394b39516b42bf050c624b5581806f377d56ce986ee6cfc2b
7
+ data.tar.gz: a89e4296d0788d2d7a0c17cdb11a6d6ad983f1653ce544a5c9fcf6d526e78ed8ecf38f673122916d5e4598b7bea62c901f82ed106c3da11729061cea681a81fd
@@ -8,7 +8,7 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- ruby: [ '2.5', '2.6', '2.7', '3.0' ]
11
+ ruby: [ '2.6', '2.7', '3.0' ]
12
12
  steps:
13
13
  - uses: actions/checkout@v2
14
14
  - name: Install gcc and gfortran
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.4.0
2
+ - Add type declaration file: sig/numo/openblas.rbs
3
+
1
4
  ## 0.3.2
2
5
  - Change the version of OpenBLAS to be downloaded to 0.3.15.
3
6
 
data/Gemfile CHANGED
@@ -6,3 +6,5 @@ gemspec
6
6
  gem 'rake', '~> 13.0'
7
7
  gem 'rake-compiler', '~> 1.0'
8
8
  gem 'rspec', '~> 3.0'
9
+ gem 'rbs', '~> 1.2'
10
+ gem 'steep', '~> 0.44'
data/Steepfile ADDED
@@ -0,0 +1,20 @@
1
+ target :lib do
2
+ signature "sig"
3
+
4
+ check "lib" # Directory name
5
+ # check "Gemfile" # File name
6
+ # check "app/models/**/*.rb" # Glob
7
+ # # ignore "lib/templates/*.rb"
8
+ #
9
+ # # library "pathname", "set" # Standard libraries
10
+ # library "numo-narray", "numo-linalg" # Gems
11
+ end
12
+
13
+ # target :spec do
14
+ # signature "sig", "sig-private"
15
+ #
16
+ # check "spec"
17
+ #
18
+ # # library "pathname", "set" # Standard libraries
19
+ # # library "rspec"
20
+ # end
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::OpenBLAS loads Numo::NArray and Linalg with OpenBLAS used as backend library.
6
6
  module OpenBLAS
7
7
  # The version of Numo::OpenBLAS you install.
8
- VERSION = '0.3.2'
8
+ VERSION = '0.4.0'
9
9
  end
10
10
  end
@@ -0,0 +1,8 @@
1
+ module Numo
2
+ module OpenBLAS
3
+ VERSION: String
4
+ OPENBLAS_CHAR_CORENAME: String
5
+ OPENBLAS_NUM_CORES: Integer
6
+ OPENBLAS_VERSION: String
7
+ end
8
+ end
data/sig/patch.rbs ADDED
@@ -0,0 +1,7 @@
1
+ module Numo
2
+ module Linalg
3
+ module Loader
4
+ def self?.load_openblas: (*String dirs, ?exc: bool exc) -> bool
5
+ end
6
+ end
7
+ end
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.2
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-05-22 00:00:00.000000000 Z
11
+ date: 2021-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-linalg
@@ -43,11 +43,14 @@ files:
43
43
  - LICENSE.txt
44
44
  - README.md
45
45
  - Rakefile
46
+ - Steepfile
46
47
  - ext/numo/openblas/extconf.rb
47
48
  - ext/numo/openblas/openblas.c
48
49
  - lib/numo/openblas.rb
49
50
  - lib/numo/openblas/version.rb
50
51
  - numo-openblas.gemspec
52
+ - sig/numo/openblas.rbs
53
+ - sig/patch.rbs
51
54
  - vendor/tmp/.gitkeep
52
55
  homepage: https://github.com/yoshoku/numo-openblas
53
56
  licenses: