numo-blis 0.5.1 → 0.5.3
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 +9 -0
- data/ext/numo/blis/blisext.c +2 -2
- data/ext/numo/blis/extconf.rb +2 -2
- data/lib/numo/blis/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: 98eb413415b10c86e42f6e94214dbae55b2624a2eb77cfc991e0e0e3ecd30e91
|
4
|
+
data.tar.gz: 6509bb315eef0fdc57d1cd6c0a3f1f4f265008519024a0e20e2f9032b92d4502
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55a13fb3e3465f04c946e4fc9f0371ee2449188c45b6c2c392e8ef8b8073b828548f76c117bd5651638edf894bf7cbf9b8301423dc0ca5154a2d725ea63924f9
|
7
|
+
data.tar.gz: 7b60be64d3b72ff67bd6085b47cb2f9ecfda13b788a77d8f99ca5dffbb4d573b47521ea16c0995801058b6c3e3ff673f5520c32fa3b9061ad7b4698406689dcf
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [0.5.3] - 2025-04-29
|
2
|
+
|
3
|
+
- Revert "change to use automatic detection of CPU type on macOS".
|
4
|
+
|
5
|
+
## [0.5.2] - 2025-04-28
|
6
|
+
|
7
|
+
- Change the version of BLIS to be downloaded to 1.1.
|
8
|
+
- Change to use automatic detection of CPU type on macOS.
|
9
|
+
|
1
10
|
## [0.5.1] - 2025-01-03
|
2
11
|
|
3
12
|
- Fix BLIS_VERSION and LAPACK_VERSION constants.
|
data/ext/numo/blis/blisext.c
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
VALUE mNumo;
|
9
9
|
VALUE mBLIS;
|
10
10
|
|
11
|
-
void Init_blisext()
|
11
|
+
RUBY_FUNC_EXPORTED void Init_blisext(void)
|
12
12
|
{
|
13
13
|
/**
|
14
14
|
* Document-module: Numo
|
@@ -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("1.
|
26
|
+
rb_define_const(mBLIS, "BLIS_VERSION", rb_str_new_cstr("1.1"));
|
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.11.0"));
|
data/ext/numo/blis/extconf.rb
CHANGED
@@ -19,13 +19,13 @@ SOEXT = RbConfig::CONFIG['SOEXT'] || case RbConfig::CONFIG['host_os']
|
|
19
19
|
'so'
|
20
20
|
end
|
21
21
|
|
22
|
-
BLIS_VERSION = '1.
|
22
|
+
BLIS_VERSION = '1.1'
|
23
23
|
LAPACK_VERSION = '3.11.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 = '
|
28
|
+
BLIS_KEY = 'ead2b3e256379a780de72bc583b131bb67657782'
|
29
29
|
LAPACK_KEY = '5ce88a2b3df11d132b43442cab6a385f85a9f667'
|
30
30
|
RB_CC = "'#{RbConfig::expand('$(CC)')}'"
|
31
31
|
RB_CXX = "'#{RbConfig::expand('$(CPP)')}'"
|
data/lib/numo/blis/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: numo-blis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- yoshoku
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: numo-linalg
|
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
- !ruby/object:Gem::Version
|
65
65
|
version: '0'
|
66
66
|
requirements: []
|
67
|
-
rubygems_version: 3.6.
|
67
|
+
rubygems_version: 3.6.7
|
68
68
|
specification_version: 4
|
69
69
|
summary: Numo::BLIS downloads and builds BLIS during installation and uses that as
|
70
70
|
a background library for Numo::Linalg.
|