Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOGS.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Logs
===========

0.7.15
++++++

0.7.14
++++++

Expand Down
2 changes: 1 addition & 1 deletion _doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ The function replaces dynamic dimensions defined as strings by
Older versions
==============

* `0.7.15 <../v0.7.15/index.html>`_
* `0.7.14 <../v0.7.14/index.html>`_
* `0.7.13 <../v0.7.13/index.html>`_
* `0.7.12 <../v0.7.12/index.html>`_
* `0.7.11 <../v0.7.11/index.html>`_
* `0.6.3 <../v0.6.3/index.html>`_
Expand Down
4 changes: 4 additions & 0 deletions _unittests/ut_tasks/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ def test_text_generation(self):
mid = "arnir0/Tiny-LLM"
data = get_untrained_model_with_inputs(mid, verbose=1, add_second_input=True)
self.assertEqual(data["task"], "text-generation")
self.assertIn("inputs", data)
self.assertIn("inputs2", data)
self.assertIn("inputs_batch1", data)
self.assertIn("inputs_empty_cache", data)
self.assertIn((data["size"], data["n_weights"]), [(51955968, 12988992)])
model, inputs, ds = data["model"], data["inputs"], data["dynamic_shapes"]
model(**inputs)
Expand Down
2 changes: 1 addition & 1 deletion onnx_diagnostic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
Functions, classes to dig into a model when this one is right, slow, wrong...
"""

__version__ = "0.7.14"
__version__ = "0.7.15"
__author__ = "Xavier Dupré"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "onnx-diagnostic"
version = "0.7.14"
version = "0.7.15"
description = "Tools to help converting pytorch models into ONNX."
readme = "README.rst"
authors = [
Expand Down
Loading