red-candle 0.0.3 → 0.0.5

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.
@@ -0,0 +1,17 @@
1
+ module Candle
2
+ class Tensor
3
+ include Enumerable
4
+
5
+ def each
6
+ if self.rank == 1
7
+ self.values.each do |value|
8
+ yield value
9
+ end
10
+ else
11
+ shape.first.times do |i|
12
+ yield self[i]
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,3 +1,3 @@
1
1
  module Candle
2
- VERSION = '0.0.3'
2
+ VERSION = "0.0.5"
3
3
  end
data/lib/candle.rb CHANGED
@@ -1 +1,2 @@
1
- require_relative 'candle/candle'
1
+ require_relative "candle/candle"
2
+ require_relative "candle/tensor"
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: red-candle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
+ - Christopher Petersen
7
8
  - kojix2
8
- autorequire:
9
+ autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2023-09-28 00:00:00.000000000 Z
12
+ date: 2025-03-18 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: rb_sys
@@ -26,6 +27,7 @@ dependencies:
26
27
  version: '0'
27
28
  description: huggingface/candle for Ruby
28
29
  email:
30
+ - christopher.petersen@gmail.com
29
31
  - 2xijok@gmail.com
30
32
  executables: []
31
33
  extensions:
@@ -39,12 +41,13 @@ files:
39
41
  - ext/candle/extconf.rb
40
42
  - ext/candle/src/lib.rs
41
43
  - lib/candle.rb
44
+ - lib/candle/tensor.rb
42
45
  - lib/candle/version.rb
43
- homepage: https://github.com/kojix2/red-candle
46
+ homepage: https://github.com/assaydepot/red-candle
44
47
  licenses:
45
48
  - MIT
46
49
  metadata: {}
47
- post_install_message:
50
+ post_install_message:
48
51
  rdoc_options: []
49
52
  require_paths:
50
53
  - lib
@@ -60,8 +63,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
63
  version: 3.3.26
61
64
  requirements:
62
65
  - Rust >= 1.61
63
- rubygems_version: 3.4.10
64
- signing_key:
66
+ rubygems_version: 3.5.3
67
+ signing_key:
65
68
  specification_version: 4
66
69
  summary: huggingface/candle for ruby
67
70
  test_files: []