tensor 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 +7 -0
- data/AGENTS.md +38 -0
- data/extconf.rb +148 -0
- data/lib/tensor.rb +6 -0
- data/ruby_matrix.c +1367 -0
- metadata +46 -0
metadata
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: tensor
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Your Name
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: A native Ruby C extension providing parallelized matrix and neural-network
|
|
13
|
+
style tensor operations.
|
|
14
|
+
email:
|
|
15
|
+
- you@example.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions:
|
|
18
|
+
- extconf.rb
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- AGENTS.md
|
|
22
|
+
- extconf.rb
|
|
23
|
+
- lib/tensor.rb
|
|
24
|
+
- ruby_matrix.c
|
|
25
|
+
homepage: https://rubygems.org/gems/tensor
|
|
26
|
+
licenses:
|
|
27
|
+
- MIT
|
|
28
|
+
metadata: {}
|
|
29
|
+
rdoc_options: []
|
|
30
|
+
require_paths:
|
|
31
|
+
- lib
|
|
32
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '3.0'
|
|
37
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
38
|
+
requirements:
|
|
39
|
+
- - ">="
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '0'
|
|
42
|
+
requirements: []
|
|
43
|
+
rubygems_version: 3.6.9
|
|
44
|
+
specification_version: 4
|
|
45
|
+
summary: Fast tensor/matrix operations for Ruby using OpenMP and OpenBLAS
|
|
46
|
+
test_files: []
|