From 4c83254d7fe11e1c514df2ee55166a4b1ceeb4d3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 16:46:22 +0000 Subject: [PATCH 1/2] Initial plan From 39abda69b0164b47f8e04b1fb54069517c10b843 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 16:53:04 +0000 Subject: [PATCH 2/2] test: accept static alias for sliding window cache Agent-Logs-Url: https://github.com/sdpython/onnx-diagnostic/sessions/8c07d019-c51a-4d37-b87f-4b3d4b0df475 Co-authored-by: xadupre <22452781+xadupre@users.noreply.github.com> --- _unittests/ut_helpers/test_cache_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_unittests/ut_helpers/test_cache_helper.py b/_unittests/ut_helpers/test_cache_helper.py index 16b444c5..cf1d5a74 100644 --- a/_unittests/ut_helpers/test_cache_helper.py +++ b/_unittests/ut_helpers/test_cache_helper.py @@ -180,7 +180,7 @@ def test_make_sliding_window_cache(self): ) text = self.string_type(cache, with_shape=True) self.assertEqual( - "SlidingWindowCache(key_cache=#3[T1s4x5x6x7,T1s4x5x6x7,T1s4x5x6x7], " + f"{type(cache).__name__}(key_cache=#3[T1s4x5x6x7,T1s4x5x6x7,T1s4x5x6x7], " "value_cache=#3[T1s4x5x6x7,T1s4x5x6x7,T1s4x5x6x7])", text, )