numo-blis 0.3.0 → 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: c17ae9efdc9961e6fbbd6feae48ac3fda8d8ba7ee2eb966a69795a3c2baf5d66
4
- data.tar.gz: 9f57f28fe6f632eb35164bf01d2e7aaa7f0cb3c6bc3afa8ba2589faac43b6edd
3
+ metadata.gz: 41283887872794e52a6bba356e32c7666dc210ae977a778c8ea26408e63fd9b4
4
+ data.tar.gz: 15b0c8bf79bbeee65cc2d97bcf6d7d962f2a47db0a68b251ecc6a4639905cd4e
5
5
  SHA512:
6
- metadata.gz: 1147ab83a65251bc0cd5da630780d6811cf56b678439a20826ece04d9a639ee82d0b980133b055fe6a42bf814d81e7af3ca914c2cf5b7efeb115fe3c75cdee46
7
- data.tar.gz: 80f167a7c4cf62c80d28b4b4685d8a4f761689655e7dcd758d5ac72cb7a0e7ea1f1a8e37e95829b69c4ff7132192bc4098ad672b13691613bbc66236230bd03b
6
+ metadata.gz: a15f64be0c8fbd18434191d52a12d8620900da3626a266fe07e064750193bf950d77a57b79f7ab18d82ad400c0f539d2c5e4898821ac7a03c79446b7d8d34fb3
7
+ data.tar.gz: a07a833c96ed48697573748b22a87873a222524f5345ada2dd48fb97ee99a253e876affb2aebe3c5956553bf05deabafb7f906191b5a9915b61b397bcdb6b77a
data/CHANGELOG.md CHANGED
@@ -1,4 +1,6 @@
1
- ## [Unreleased]
1
+ ## [0.4.0] - 2022-04-15
2
+
3
+ - Change the version of BLIS to be downloaded to 0.9.0.
2
4
 
3
5
  ## [0.3.0] - 2022-01-30
4
6
 
@@ -23,7 +23,7 @@ void Init_blisext()
23
23
  mBLIS = rb_define_module_under(mNumo, "BLIS");
24
24
 
25
25
  /* The version of BLIS used as a background library. */
26
- rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("0.8.1"));
26
+ rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("0.9.0"));
27
27
 
28
28
  /* The version of LAPACK used as a background library. */
29
29
  rb_define_const(mBLIS, "LAPACK_VERSION", rb_str_new_cstr("3.10.0"));
@@ -19,13 +19,13 @@ SOEXT = RbConfig::CONFIG['SOEXT'] || case RbConfig::CONFIG['host_os']
19
19
  'so'
20
20
  end
21
21
 
22
- BLIS_VERSION = '0.8.1'
22
+ BLIS_VERSION = '0.9.0'
23
23
  LAPACK_VERSION = '3.10.0'
24
24
  BLIS_URI = "https://github.com/flame/blis/archive/refs/tags/#{BLIS_VERSION}.tar.gz"
25
25
  LAPACK_URI = "https://github.com/Reference-LAPACK/lapack/archive/refs/tags/v#{LAPACK_VERSION}.tar.gz"
26
26
  BLIS_TGZ = "#{VENDOR_DIR}/tmp/blis-#{BLIS_VERSION}.tgz"
27
27
  LAPACK_TGZ = "#{VENDOR_DIR}/tmp/lapack-#{LAPACK_VERSION}.tgz"
28
- BLIS_KEY = 'ce5998fccfac88153f1e52d6497020529a3b5217'
28
+ BLIS_KEY = 'c5ff9b0437edc1f93ad30fcdd633c0a276165b7e'
29
29
  LAPACK_KEY = '4a9384523bf236c83568884e8c62d9517e41ac42'
30
30
  RB_CC = "'#{RbConfig::expand('$(CC)')}'"
31
31
  RB_CXX = "'#{RbConfig::expand('$(CPP)')}'"
@@ -5,6 +5,6 @@ module Numo
5
5
  # Numo::BLIS loads Numo::NArray and Linalg with BLIS used as backend library.
6
6
  module BLIS
7
7
  # The version of Numo::BLIS you install.
8
- VERSION = '0.3.0'
8
+ VERSION = '0.4.0'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-blis
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
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: 2022-01-29 00:00:00.000000000 Z
11
+ date: 2022-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-linalg
@@ -65,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
65
65
  - !ruby/object:Gem::Version
66
66
  version: '0'
67
67
  requirements: []
68
- rubygems_version: 3.3.3
68
+ rubygems_version: 3.3.7
69
69
  signing_key:
70
70
  specification_version: 4
71
71
  summary: Numo::BLIS downloads and builds BLIS during installation and uses that as