From 92e1462656b7798a30445d197a7bf08ecac6987b Mon Sep 17 00:00:00 2001 From: David Kunzmann Date: Tue, 10 Dec 2024 14:15:55 +0100 Subject: [PATCH] Modify rule S6984: Update einsum link (#4565) --- rules/S6984/python/rule.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/S6984/python/rule.adoc b/rules/S6984/python/rule.adoc index 547a81036da..4ca3415f179 100644 --- a/rules/S6984/python/rule.adoc +++ b/rules/S6984/python/rule.adoc @@ -4,7 +4,7 @@ This rule raises an issue when an incorrect pattern is provided to an `einops` o == Why is this an issue? The `einops` library provides a powerful and flexible way to manipulate tensors using the Einstein summation convention. -The `einops` uses a different convention than the https://rockt.github.io/2018/04/30/einsum[traditional] one. +The `einops` uses a different convention than the https://ejenner.com/post/einsum/[traditional] one. In particular, the axis names can be more than one letter long and are separated by spaces.