Skip to content

Commit 1939652

Browse files
committed
doc
1 parent 1e0b64f commit 1939652

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOGS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Change Logs
44
0.8.3
55
+++++
66

7+
* :pr:`322`: support rerunning onnx kernels with torch intermediate results in side-by-side
78
* :pr:`314`: fix modelbuilder download needed after this change https://github.com/microsoft/onnxruntime-genai/pull/1862
89
* :pr:`311`: use custom and local function to use PackedMultiHeadAttention from onnxruntime
910
* :pr:`310`: splits patches into multiple files

onnx_diagnostic/torch_onnx/sbs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,8 @@ def run_aligned(
595595
<onnx_diagnostic.torch_onnx.sbs.ReplayConfiguration>`
596596
:param run_onnx_with_torch_inputs: run an onnx operator with torch results
597597
if they available
598-
:return: a list of :class:`RunAlignedRecord`
598+
:return: a list of :class:`RunAlignedRecord
599+
<onnx_diagnostic.torch_onnx.sbs_dataclasses.RunAlignedRecord>`
599600
600601
Example:
601602
@@ -638,7 +639,6 @@ def forward(self, x):
638639
df = df.apply(lambda col: col.fillna("") if col.dtype == "object" else col)
639640
print(df)
640641
641-
642642
This example uses :class:`onnx.reference.ReferenceEvaluator` to run the onnx model
643643
but onnxruntime can also be used through
644644
:class:`onnx_diagnostic.helpers.ort_session.InferenceSessionForTorch`.

0 commit comments

Comments
 (0)