numo-tiny_linalg 0.0.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.
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: numo-tiny_linalg
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - yoshoku
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-07-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: numo-narray
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.9.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.9.1
27
+ description: 'Numo::TinyLinalg is a subset library from Numo::Linalg consisting only
28
+ of methods used in Machine Learning algorithms.
29
+
30
+ '
31
+ email:
32
+ - yoshoku@outlook.com
33
+ executables: []
34
+ extensions:
35
+ - ext/numo/tiny_linalg/extconf.rb
36
+ extra_rdoc_files: []
37
+ files:
38
+ - ".clang-format"
39
+ - ".husky/commit-msg"
40
+ - ".rubocop.yml"
41
+ - CHANGELOG.md
42
+ - CODE_OF_CONDUCT.md
43
+ - Gemfile
44
+ - LICENSE.txt
45
+ - README.md
46
+ - Rakefile
47
+ - commitlint.config.js
48
+ - ext/numo/tiny_linalg/converter.hpp
49
+ - ext/numo/tiny_linalg/dot.hpp
50
+ - ext/numo/tiny_linalg/dot_sub.hpp
51
+ - ext/numo/tiny_linalg/extconf.rb
52
+ - ext/numo/tiny_linalg/gemm.hpp
53
+ - ext/numo/tiny_linalg/gemv.hpp
54
+ - ext/numo/tiny_linalg/gesdd.hpp
55
+ - ext/numo/tiny_linalg/gesvd.hpp
56
+ - ext/numo/tiny_linalg/nrm2.hpp
57
+ - ext/numo/tiny_linalg/tiny_linalg.cpp
58
+ - ext/numo/tiny_linalg/tiny_linalg.hpp
59
+ - lib/numo/tiny_linalg.rb
60
+ - lib/numo/tiny_linalg/version.rb
61
+ - numo-tiny_linalg.gemspec
62
+ - package.json
63
+ homepage: https://github.com/yoshoku/numo-tiny_linalg
64
+ licenses:
65
+ - BSD-3-Clause
66
+ metadata:
67
+ homepage_uri: https://github.com/yoshoku/numo-tiny_linalg
68
+ source_code_uri: https://github.com/yoshoku/numo-tiny_linalg
69
+ changelog_uri: https://github.com/yoshoku/numo-tiny_linalg/blob/main/CHANGELOG.md
70
+ rubygems_mfa_required: 'true'
71
+ post_install_message:
72
+ rdoc_options: []
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ required_rubygems_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ requirements: []
86
+ rubygems_version: 3.3.26
87
+ signing_key:
88
+ specification_version: 4
89
+ summary: Numo::TinyLinalg is a subset library from Numo::Linalg consisting only of
90
+ methods used in Machine Learning algorithms.
91
+ test_files: []