Skip to content

Commit

Permalink
Merge pull request #42 from dstarkenburg/main
Browse files Browse the repository at this point in the history
Uncommenting Bool
  • Loading branch information
jw3126 authored Dec 30, 2024
2 parents 4a5a2bc + ec6455b commit b1b81be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ONNXRunTime"
uuid = "e034b28e-924e-41b2-b98f-d2bbeb830c6a"
authors = ["Jan Weidner <[email protected]> and contributors"]
version = "1.3.0"
version = "1.3.1"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
2 changes: 1 addition & 1 deletion src/capi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ for (onnx, T) in [
(ONNX_TENSOR_ELEMENT_DATA_TYPE_INT32, Int32),
(ONNX_TENSOR_ELEMENT_DATA_TYPE_INT64, Int64),
(ONNX_TENSOR_ELEMENT_DATA_TYPE_STRING, Cstring), # is this correct on windows?
# (ONNX_TENSOR_ELEMENT_DATA_TYPE_BOOL ,
(ONNX_TENSOR_ELEMENT_DATA_TYPE_BOOL, Bool),
# (ONNX_TENSOR_ELEMENT_DATA_TYPE_FLOAT16 ,
(ONNX_TENSOR_ELEMENT_DATA_TYPE_DOUBLE, Cdouble),
(ONNX_TENSOR_ELEMENT_DATA_TYPE_UINT32, UInt32),
Expand Down

2 comments on commit b1b81be

@jw3126
Copy link
Owner Author

@jw3126 jw3126 commented on b1b81be Dec 30, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/122151

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.3.1 -m "<description of version>" b1b81bea48881568cc473ead91372c836d058623
git push origin v1.3.1

Please sign in to comment.