numo-openblas 0.4.8 → 0.4.9

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: da2b2e38346c3d4b9cd8fd5394e9efda46d640af065318cd1a9f949bd39542cb
4
- data.tar.gz: 6dd25aa74b00a354abe64cf92bdf2f298946adadc3ed12fddde80f704ce06553
3
+ metadata.gz: f3992584075243b93b120749f8363ec1d3a32f2403342f52260e4dc55ff92b39
4
+ data.tar.gz: a8bf97ef48ce9f745105301ebf86f61f3a38125388783e59b02ecd81da299147
5
5
  SHA512:
6
- metadata.gz: 80a41adb9b479160c2300ebabed54bbcf5245d9b973bf8ffe0a936f95542de03639251ec05b8f600bac79a69bad2f6b0e2edd1ce45a6001d05c9b2252fcb4ba5
7
- data.tar.gz: 8617d4b184922a945de55db1c1fa61cf7a3088a206ec8336036aeb105f7cef81e83fa8d5d169ed4e2c73c50f9751b5b08071c0ead0666cff9eb4b90db11c134d
6
+ metadata.gz: e35af4c011aac12b77f226dda01a8fa1b3ed90a90f3aa5f1ef42f2d4548de28fc80c367821b48502899bb364fbf95a55d4be9dfc1475c1f3f7f746a523f60722
7
+ data.tar.gz: cc429204340fa5bb3c5add549e309160954b1fea89c9b40b5180845a00903b8f41e2a3efa6ee37eba24a705058c44118f3ced6976f28258b6bbe47587fed614a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 0.4.9
2
+ - Change the version of OpenBLAS to be downloaded to 0.3.23.
3
+
1
4
  ## 0.4.8
2
5
  - Change the version of OpenBLAS to be downloaded to 0.3.21.
3
6
 
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2022 Atsushi Tatsuma
1
+ Copyright (c) 2020-2023 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.21'
12
- OPENBLAS_KEY = 'b052d196ad694b29302e074b3eb8cc66745f6e2f'
11
+ OPENBLAS_VER = '0.3.23'
12
+ OPENBLAS_KEY = '6b781727c7b95850ae4a3eb0a391492eb4f3e780'
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
 
@@ -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.8'
8
+ VERSION = '0.4.9'
9
9
  end
10
10
  end
data/lib/numo/openblas.rb CHANGED
@@ -1,4 +1,4 @@
1
- # frozen-string-literal: true
1
+ # frozen_string_literal: true
2
2
 
3
3
  require 'numo/narray'
4
4
  require 'numo/linalg/linalg'
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.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-11 00:00:00.000000000 Z
11
+ date: 2023-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-linalg
@@ -67,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  requirements: []
70
- rubygems_version: 3.2.33
70
+ rubygems_version: 3.3.26
71
71
  signing_key:
72
72
  specification_version: 4
73
73
  summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses