Skip to content

Commit 33e046f

Browse files
committed
upgrade version to 0.7.15
1 parent fde0173 commit 33e046f

File tree

5 files changed

+10
-3
lines changed

5 files changed

+10
-3
lines changed

CHANGELOGS.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Change Logs
22
===========
33

4+
0.7.15
5+
++++++
6+
47
0.7.14
58
++++++
69

_doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ The function replaces dynamic dimensions defined as strings by
239239
Older versions
240240
==============
241241

242+
* `0.7.15 <../v0.7.15/index.html>`_
242243
* `0.7.14 <../v0.7.14/index.html>`_
243-
* `0.7.13 <../v0.7.13/index.html>`_
244244
* `0.7.12 <../v0.7.12/index.html>`_
245245
* `0.7.11 <../v0.7.11/index.html>`_
246246
* `0.6.3 <../v0.6.3/index.html>`_

_unittests/ut_tasks/test_tasks.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ def test_text_generation(self):
3939
mid = "arnir0/Tiny-LLM"
4040
data = get_untrained_model_with_inputs(mid, verbose=1, add_second_input=True)
4141
self.assertEqual(data["task"], "text-generation")
42+
self.assertIn("inputs", data)
43+
self.assertIn("inputs2", data)
44+
self.assertIn("inputs_batch1", data)
45+
self.assertIn("inputs_empty_cache", data)
4246
self.assertIn((data["size"], data["n_weights"]), [(51955968, 12988992)])
4347
model, inputs, ds = data["model"], data["inputs"], data["dynamic_shapes"]
4448
model(**inputs)

onnx_diagnostic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
Functions, classes to dig into a model when this one is right, slow, wrong...
44
"""
55

6-
__version__ = "0.7.14"
6+
__version__ = "0.7.15"
77
__author__ = "Xavier Dupré"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "onnx-diagnostic"
3-
version = "0.7.14"
3+
version = "0.7.15"
44
description = "Tools to help converting pytorch models into ONNX."
55
readme = "README.rst"
66
authors = [

0 commit comments

Comments
 (0)