numo-openblas 0.3.0 → 0.3.1

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: a31c289de2f166a3ef7b5f85c26a7b4b950930017aea3e1ac30c7f58dd33a1f5
4
- data.tar.gz: 4cff2b301fb14c20699b3a66066a730694694798b2efb92538d80edc4456f1f6
3
+ metadata.gz: ac2aed2679cd061818edb12f371deaf05e606c14447b5e37c0e1a6aabb5eab1b
4
+ data.tar.gz: 0dc9e41b885d24604ca4f334d75341ca5861e3d066ffa077935e878c23e87a33
5
5
  SHA512:
6
- metadata.gz: d278ca8478bf9b22b9f8cbc8008d87ebbc17922d4123480082d4015e812873e61ae54233e4cc5376d2cc202c239efbbbc32aef6e7210c2381df23c0f78b7dcfd
7
- data.tar.gz: 596c45ca92f199b2a9dd22c80610d3ab545db664d7aeb97994204af529d06b3348674d23586db4fc139b5e8af5cbab15aa9305d48b1d049fd6ddaaba50ca0486
6
+ metadata.gz: c6cb3e8ffa4835247fd029cc4e81d89851d6c02231c86ff7cf61faab914ce239e8595d43ebd3b6668efce5ca94df27ca63605451a9c6f19b2b368090908ec767
7
+ data.tar.gz: 79da324b51d42b019c66e584b62fabbc1dbb000db91129a1c3f55da8e35af81cb6c7b4d56062abbad89016f492598bbbeaef7604073deb0650cfa4c92f90bc60
@@ -1,3 +1,6 @@
1
+ ## 0.3.1
2
+ - Change the version of OpenBLAS to be downloaded to 0.3.13.
3
+
1
4
  ## 0.3.0
2
5
  - Simplified code for loading of OpenBLAS library.
3
6
 
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Build Status](https://github.com/yoshoku/numo-openblas/workflows/build/badge.svg)](https://github.com/yoshoku/numo-openblas/actions?query=workflow%3Abuild)
4
4
  [![Gem Version](https://badge.fury.io/rb/numo-openblas.svg)](https://badge.fury.io/rb/numo-openblas)
5
- [![BSD 3-Clause License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://github.com/yoshoku/suika/blob/master/LICENSE.txt)
5
+ [![BSD 3-Clause License](https://img.shields.io/badge/License-BSD%203--Clause-orange.svg)](https://github.com/yoshoku/suika/blob/main/LICENSE.txt)
6
6
 
7
7
  Numo::OpenBLAS downloads and builds [OpenBLAS](https://www.openblas.net/) during installation and
8
8
  uses that as a background library for [Numo::Linalg](https://github.com/ruby-numo/numo-linalg).
@@ -62,7 +62,7 @@ Moreover, some of the build options are defined by constants.
62
62
 
63
63
  ## Contributing
64
64
 
65
- Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/numo-openblas. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/master/CODE_OF_CONDUCT.md).
65
+ Bug reports and pull requests are welcome on GitHub at https://github.com/yoshoku/numo-openblas. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/main/CODE_OF_CONDUCT.md).
66
66
 
67
67
  ## License
68
68
 
@@ -70,4 +70,4 @@ The gem is available as open source under the terms of the [BSD-3-Clause License
70
70
 
71
71
  ## Code of Conduct
72
72
 
73
- Everyone interacting in the Numo::Openblas project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/master/CODE_OF_CONDUCT.md).
73
+ Everyone interacting in the Numo::Openblas project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/yoshoku/numo-openblas/blob/main/CODE_OF_CONDUCT.md).
@@ -8,8 +8,8 @@ require 'open-uri'
8
8
  require 'open3'
9
9
  require 'rubygems/package'
10
10
 
11
- OPENBLAS_VER = '0.3.12'
12
- OPENBLAS_KEY = 'ae647fed597ae891a7f122b9ddc6b15d4b7e0656'
11
+ OPENBLAS_VER = '0.3.13'
12
+ OPENBLAS_KEY = '685537a821819ef4dae5901998a57f0eec5bddad'
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.3.0'
8
+ VERSION = '0.3.1'
9
9
  end
10
10
  end
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
19
19
 
20
20
  spec.metadata['homepage_uri'] = spec.homepage
21
21
  spec.metadata['source_code_uri'] = 'https://github.com/yoshoku/numo-openblas'
22
- spec.metadata['changelog_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/master/CHANGELOG.md'
23
- spec.metadata['documentation_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/master/README.md'
22
+ spec.metadata['changelog_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md'
23
+ spec.metadata['documentation_uri'] = 'https://github.com/yoshoku/numo-openblas/blob/main/README.md'
24
24
 
25
25
  # Specify which files should be added to the gem when it is released.
26
26
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
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.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-11-28 00:00:00.000000000 Z
11
+ date: 2020-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: numo-linalg
@@ -55,9 +55,9 @@ licenses:
55
55
  metadata:
56
56
  homepage_uri: https://github.com/yoshoku/numo-openblas
57
57
  source_code_uri: https://github.com/yoshoku/numo-openblas
58
- changelog_uri: https://github.com/yoshoku/numo-openblas/blob/master/CHANGELOG.md
59
- documentation_uri: https://github.com/yoshoku/numo-openblas/blob/master/README.md
60
- post_install_message:
58
+ changelog_uri: https://github.com/yoshoku/numo-openblas/blob/main/CHANGELOG.md
59
+ documentation_uri: https://github.com/yoshoku/numo-openblas/blob/main/README.md
60
+ post_install_message:
61
61
  rdoc_options: []
62
62
  require_paths:
63
63
  - lib
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubygems_version: 3.1.4
76
- signing_key:
76
+ signing_key:
77
77
  specification_version: 4
78
78
  summary: Numo::OpenBLAS downloads and builds OpenBLAS during installation and uses
79
79
  that as a background library for Numo::Linalg.