File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
onnx_diagnostic/torch_onnx Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Change Logs
440.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
Original file line number Diff line number Diff 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`.
You can’t perform that action at this time.
0 commit comments