numo-linalg 0.0.1 → 0.1.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 +5 -5
- data/README.md +10 -1
- data/ext/numo/linalg/blas/tmpl/mm.c +1 -1
- data/ext/numo/linalg/blas/tmpl/mv.c +1 -1
- data/lib/numo/linalg/version.rb +1 -1
- data/numo-linalg.gemspec +4 -4
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d78b166ec210437736f2153cbee645d9cb1fe43c99ebfdc8831e15b1fa46249f
|
|
4
|
+
data.tar.gz: ce602ae09a67e518a5e7bc539256b2e35ebc342c528860eb9a527d7446d4c871
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 79a092556b215e5a3667aab25ba97dc752fe3223dcca95d0a4018c71dd934d0eddad7816a94f87eb230e55cac5397ff430bdfb3d4ba8178eb443cf9f9dbd82da
|
|
7
|
+
data.tar.gz: 13774cf94a8b2724217bb3f00e6ed24337ad5c64db83f873bb5dfb7e6bf9b606311013d7eaeca8fcf99c4a2d98837cc2259d5389f5a9da1a784bb3d1d2c18176
|
data/README.md
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
[](http://mybinder.org/repo/ruby-numo/linalg)
|
|
4
4
|
[](https://travis-ci.org/ruby-numo/linalg)
|
|
5
5
|
|
|
6
|
-
[GitHub](https://github.com/ruby-numo/linalg)
|
|
6
|
+
[GitHub](https://github.com/ruby-numo/linalg) |
|
|
7
|
+
[RubyGems](https://github.com/ruby-numo/linalg)
|
|
7
8
|
|
|
8
9
|
Under development!
|
|
9
10
|
|
|
@@ -65,6 +66,14 @@ $ rake build
|
|
|
65
66
|
$ gem install pkg/numo-linalg-*.gem
|
|
66
67
|
```
|
|
67
68
|
|
|
69
|
+
## Using
|
|
70
|
+
|
|
71
|
+
* Load Numo::Linalg module with default backend:
|
|
72
|
+
|
|
73
|
+
```ruby
|
|
74
|
+
require "numo/linalg"
|
|
75
|
+
```
|
|
76
|
+
|
|
68
77
|
* Read also instruction for [Selecting Backend Library](https://github.com/ruby-numo/linalg/tree/master/doc/select-backend.md).
|
|
69
78
|
|
|
70
79
|
## Authors
|
data/lib/numo/linalg/version.rb
CHANGED
data/numo-linalg.gemspec
CHANGED
|
@@ -6,10 +6,10 @@ require_relative "lib/numo/linalg/version"
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "numo-linalg"
|
|
8
8
|
spec.version = Numo::Linalg::VERSION
|
|
9
|
-
spec.authors = ["Masahiro TANAKA"]
|
|
9
|
+
spec.authors = ["Masahiro TANAKA","Makoto KISHIMOTO"]
|
|
10
10
|
spec.email = ["masa16.tanaka@gmail.com"]
|
|
11
|
-
spec.description = %q{
|
|
12
|
-
spec.summary = %q{
|
|
11
|
+
spec.description = %q{Ruby/Numo Linear Algebra library with interface to BLAS/LAPACK.}
|
|
12
|
+
spec.summary = %q{Ruby/Numo Linear Algebra library with BLAS/LAPACK}
|
|
13
13
|
spec.homepage = "https://github.com/ruby-numo/numo-linalg"
|
|
14
14
|
spec.license = "BSD-3-Clause"
|
|
15
15
|
|
|
@@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
24
24
|
spec.add_development_dependency "rake", "~> 0"
|
|
25
|
-
spec.add_runtime_dependency "numo-narray", "~> 0.9.0
|
|
25
|
+
spec.add_runtime_dependency "numo-narray", "~> 0.9.0"
|
|
26
26
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: numo-linalg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masahiro TANAKA
|
|
8
|
+
- Makoto KISHIMOTO
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
12
|
+
date: 2017-12-28 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: bundler
|
|
@@ -44,15 +45,15 @@ dependencies:
|
|
|
44
45
|
requirements:
|
|
45
46
|
- - "~>"
|
|
46
47
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.9.0
|
|
48
|
+
version: 0.9.0
|
|
48
49
|
type: :runtime
|
|
49
50
|
prerelease: false
|
|
50
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
52
|
requirements:
|
|
52
53
|
- - "~>"
|
|
53
54
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.9.0
|
|
55
|
-
description:
|
|
55
|
+
version: 0.9.0
|
|
56
|
+
description: Ruby/Numo Linear Algebra library with interface to BLAS/LAPACK.
|
|
56
57
|
email:
|
|
57
58
|
- masa16.tanaka@gmail.com
|
|
58
59
|
executables: []
|
|
@@ -164,9 +165,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
164
165
|
version: '0'
|
|
165
166
|
requirements: []
|
|
166
167
|
rubyforge_project:
|
|
167
|
-
rubygems_version: 2.
|
|
168
|
+
rubygems_version: 2.7.3
|
|
168
169
|
signing_key:
|
|
169
170
|
specification_version: 4
|
|
170
|
-
summary:
|
|
171
|
+
summary: Ruby/Numo Linear Algebra library with BLAS/LAPACK
|
|
171
172
|
test_files:
|
|
172
173
|
- spec/lapack_spec.rb
|