onnxruntime 0.7.6-x86_64-darwin → 0.7.7-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f881d157acc14187151ce00f36c21a25f564c9c31f2180b40875c651fa1d8a10
4
- data.tar.gz: 415218dc495e171815dbe8ca4fe2c4623f1ebd359b5cf7162f6a3c8e9c348edf
3
+ metadata.gz: 6bf68a601b76d9895abd8d0ae00c73b084ca1c9cd316e38c43d4a3ded7d83965
4
+ data.tar.gz: 6b81ff6a468fb51cd4385098f3d17e291f75259d6b293d0c6c174eb6c29427e7
5
5
  SHA512:
6
- metadata.gz: b4f16a8dff69f871030e03d5710bfd97a9c15031465aeab2be76c3d52f162606ca3aa29523744c4f023ebee80b9e67a833b301754060249d9d5c7465f1cebf5b
7
- data.tar.gz: 12b9f1e13da2d984c4441781e0db434b68893c11043c63b6932dc774889fe3dc0a257cc7680f78dd0a51aba902d68cc715fd8746956e1a0462530dbbd110aebe
6
+ metadata.gz: 9bc8b3a8b720c57f93c6f0e9fd793b529c7445bb4dd82501697fe55ea9888f800400042671e70b101b7f94f0bcac132e52ab43baf9c274d5c99b7ad8d72db95a
7
+ data.tar.gz: 3b33faa125e0d9613891c0fdaed7b07ba53636cb63268f57fac9f667687e7219db4ff9cc0b36573689a779876c2b50d0c5075a0a1ee847856ecca46e7b21bc94
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.7.7 (2023-07-24)
2
+
3
+ - Updated ONNX Runtime to 1.15.1
4
+ - Fixed error with `dup` and `clone`
5
+
1
6
  ## 0.7.6 (2023-05-24)
2
7
 
3
8
  - Updated ONNX Runtime to 1.15.0
@@ -56,7 +56,7 @@ module OnnxRuntime
56
56
  end
57
57
 
58
58
  @session = load_session(path_or_bytes, session_options)
59
- ObjectSpace.define_finalizer(self, self.class.finalize(@session))
59
+ ObjectSpace.define_finalizer(@session, self.class.finalize(read_pointer.to_i))
60
60
 
61
61
  @allocator = load_allocator
62
62
  @inputs = load_inputs
@@ -566,9 +566,9 @@ module OnnxRuntime
566
566
  api[:"Release#{type}"].call(pointer.read_pointer) if pointer && !pointer.null?
567
567
  end
568
568
 
569
- def self.finalize(session)
569
+ def self.finalize(addr)
570
570
  # must use proc instead of stabby lambda
571
- proc { release :Session, session }
571
+ proc { api[:ReleaseSession].call(::FFI::Pointer.new(:pointer, addr)) }
572
572
  end
573
573
 
574
574
  # wide string on Windows
@@ -1,3 +1,3 @@
1
1
  module OnnxRuntime
2
- VERSION = "0.7.6"
2
+ VERSION = "0.7.7"
3
3
  end
data/lib/onnxruntime.rb CHANGED
@@ -2,11 +2,11 @@
2
2
  require "ffi"
3
3
 
4
4
  # modules
5
- require "onnxruntime/datasets"
6
- require "onnxruntime/inference_session"
7
- require "onnxruntime/model"
8
- require "onnxruntime/utils"
9
- require "onnxruntime/version"
5
+ require_relative "onnxruntime/datasets"
6
+ require_relative "onnxruntime/inference_session"
7
+ require_relative "onnxruntime/model"
8
+ require_relative "onnxruntime/utils"
9
+ require_relative "onnxruntime/version"
10
10
 
11
11
  module OnnxRuntime
12
12
  class Error < StandardError; end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onnxruntime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.6
4
+ version: 0.7.7
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-25 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi