onnxruntime 0.7.6-x86_64-linux → 0.7.7-x86_64-linux

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df87962e2cd2c80f9b8cd10af2922e24301264a0cebbe5302d00e9830a0dbe4a
4
- data.tar.gz: 00246a3b3e67532ccff96781f86dc1986610a835792f4bb06fc8327212fcdf32
3
+ metadata.gz: af1ff2753aeaed3c6c877b3ebd4607f95ced0d55767f971cf3bb95265c230fd5
4
+ data.tar.gz: f1995573cdca33f638d4bdf3eb53ed7db29c79f54477881a519a870e0576f109
5
5
  SHA512:
6
- metadata.gz: e5355c7ea56424c867e7a04cedb55f0b7f78a4bd26f503ff53b0109aa63fff82ca9166c16dc86f3f290f2c7c155529c612664adadafaa4b14716e155d130fee3
7
- data.tar.gz: a97b730896cabb328fc0a1f2b088b5158eec3eb7c063ecbc372c7b7e958140c5f1e4b6020d274b8f06b61b8b7ec93c519f2ab1567cc269f9e5b29a2bde951527
6
+ metadata.gz: 703c83e3421d4b508af819580002b9c9d3855a8d586affec88b1871617dde714356c0229e43e1a4201c9e78d5f543f88ae93c2d68fa705785bc33b7ffb2aa76f
7
+ data.tar.gz: cadd8319d65058c79a8b9e6fa0806eb72f83be3e91a7b84c0d0483389aade5aaa8b9c77e0712178c27b30dfa206cc879a64a2b8af9f9dd0f5962b002ecc81dc4
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-linux
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