numo-openblas 0.4.15 → 0.5.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: f41d3a05e9a1aa532de7e4f72b527f2316ba1de2936442dfa6fb2e61438a5aa2
4
- data.tar.gz: a715fcf2d156a0d413c06a2abb2f006ec4f57a8895e933533ee2cf51c340a491
3
+ metadata.gz: 6f8c4ca1d2001e96161b86e7f49b9383d6d4011e859838533c01b704c6d44146
4
+ data.tar.gz: fb2d59b0c3d38a0fc75fec19b74f1ed6ade347944e1eb29341fecec3ac665732
5
5
  SHA512:
6
- metadata.gz: ebbff6a7fd1e997fcf03fad73908fb9a17ce588a6fb3316b1904fcf5947830d8c74332d3c83d7d1bb538be60e21e0a386f81b2a66002b48acebb7a55d75d23ab
7
- data.tar.gz: d6ce79b4f96f1cd256dc497443d78153616786a967a55e740fddb6e3047157904be1027248d0d40ce294edccd1e99d34bc18c01c6d8356d9315674e1d574ee3e
6
+ metadata.gz: 927f0f313aaab0292fb5280526f787a7315d620feb2c6783885eb79420b7ce43aa973319149fd92a609f23e890a6ad04d579f3361fcd11c0aae7ffbc97018aa9
7
+ data.tar.gz: 15ac957497086c7f1c94e6e9d8dcc81af5bbfb2fa255110990bc14f74038f143d4da33a3ee6432cc88b49081f7aae6baad04359d3a24743e7afbcda6acc22286
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [[0.5.0](https://github.com/yoshoku/numo-openblas/compare/v0.4.16...v0.5.0)]
2
+ - Add 'shared' target to make command of OpenBLAS for reducing build time.
3
+
4
+ ## [[0.4.16](https://github.com/yoshoku/numo-openblas/compare/v0.4.15...v0.4.16)]
5
+ - Change the version of OpenBLAS to be downloaded to [0.3.29](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.29).
6
+
1
7
  ## [[0.4.15](https://github.com/yoshoku/numo-openblas/compare/v0.4.14...v0.4.15)]
2
8
  - Change the version of OpenBLAS to be downloaded to [0.3.28](https://github.com/OpenMathLib/OpenBLAS/releases/tag/v0.3.28).
3
9
 
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2024 Atsushi Tatsuma
1
+ Copyright (c) 2020-2025 Atsushi Tatsuma
2
2
  All rights reserved.
3
3
 
4
4
  Redistribution and use in source and binary forms, with or without
@@ -8,8 +8,8 @@ require 'open-uri'
8
8
  require 'open3'
9
9
  require 'rubygems/package'
10
10
 
11
- OPENBLAS_VER = '0.3.28'
12
- OPENBLAS_KEY = '0f54185b6ef804173c01b9a40520a0e8'
11
+ OPENBLAS_VER = '0.3.29'
12
+ OPENBLAS_KEY = '853a0c5c0747c5943e7ef4bbb793162d'
13
13
  OPENBLAS_URI = "https://github.com/OpenMathLib/OpenBLAS/archive/v#{OPENBLAS_VER}.tar.gz"
14
14
  OPENBLAS_DIR = File.expand_path("#{__dir__}/../../../vendor")
15
15
 
@@ -34,7 +34,7 @@ unless File.exist?("#{OPENBLAS_DIR}/installed_#{OPENBLAS_VER}")
34
34
  end
35
35
 
36
36
  Dir.chdir("#{OPENBLAS_DIR}/tmp/OpenBLAS-#{OPENBLAS_VER}") do
37
- mkstdout, _mkstderr, mkstatus = Open3.capture3("make -j#{Etc.nprocessors}")
37
+ mkstdout, _mkstderr, mkstatus = Open3.capture3("make -j#{Etc.nprocessors} shared")
38
38
  File.open("#{OPENBLAS_DIR}/tmp/openblas.log", 'w') { |f| f.puts(mkstdout) }
39
39
  unless mkstatus.success?
40
40
  abort("Failed to build OpenBLAS. Check the openblas.log file for more details: #{OPENBLAS_DIR}/tmp/openblas.log")
@@ -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.4.15'
8
+ VERSION = '0.5.0'
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: numo-openblas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.15
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-08-09 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: numo-linalg
@@ -52,7 +51,6 @@ metadata:
52
51
  changelog_uri: https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md
53
52
  documentation_uri: https://github.com/yoshoku/numo-openblas/blob/main/README.md
54
53
  rubygems_mfa_required: 'true'
55
- post_install_message:
56
54
  rdoc_options: []
57
55
  require_paths:
58
56
  - lib
@@ -67,8 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
65
  - !ruby/object:Gem::Version
68
66
  version: '0'
69
67
  requirements: []
70
- rubygems_version: 3.5.9
71
- signing_key:
68
+ rubygems_version: 3.6.7
72
69
  specification_version: 4
73
70
  summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses
74
71
  that as a background library for Numo::Linalg.