From 6c51cb7909ab90e8a85f5db85477cb40a5032082 Mon Sep 17 00:00:00 2001 From: Andrey Miroshnikov Date: Mon, 6 Nov 2023 23:27:52 +0000 Subject: [PATCH] Lose the 4-space indent on the table --- openpower/sv/cookbook/remap_matrix.mdwn | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/openpower/sv/cookbook/remap_matrix.mdwn b/openpower/sv/cookbook/remap_matrix.mdwn index 4a3264192..46610a7eb 100644 --- a/openpower/sv/cookbook/remap_matrix.mdwn +++ b/openpower/sv/cookbook/remap_matrix.mdwn @@ -421,20 +421,20 @@ For the above `svshape` instruction example: `x`, `y`, and `z` (1, 1, and 2 respectively). ``` - | (x == | (y == | (z == - index | x | y | z | x_end) | y_end) | z_end) - 0 | 0 | 0 | 0 | F | F | F - 1 | 1 | 0 | 0 | T | F | F - 2 | 0 | 1 | 0 | F | T | F - 3 | 1 | 1 | 0 | T | T | F - 4 | 0 | 0 | 1 | F | F | F - 5 | 1 | 0 | 1 | T | F | F - 6 | 0 | 1 | 1 | F | T | F - 7 | 1 | 1 | 1 | T | T | F - 8 | 0 | 0 | 2 | F | F | T - 9 | 1 | 0 | 2 | T | F | T - 10 | 0 | 1 | 2 | F | T | T - 11 | 1 | 1 | 2 | T | T | T + | (x == | (y == | (z == +index | x | y | z | x_end) | y_end) | z_end) + 0 | 0 | 0 | 0 | F | F | F + 1 | 1 | 0 | 0 | T | F | F + 2 | 0 | 1 | 0 | F | T | F + 3 | 1 | 1 | 0 | T | T | F + 4 | 0 | 0 | 1 | F | F | F + 5 | 1 | 0 | 1 | T | F | F + 6 | 0 | 1 | 1 | F | T | F + 7 | 1 | 1 | 1 | T | T | F + 8 | 0 | 0 | 2 | F | F | T + 9 | 1 | 0 | 2 | T | F | T + 10 | 0 | 1 | 2 | F | T | T + 11 | 1 | 1 | 2 | T | T | T ``` If the `x`, `y`, and `z` sequences are compared with the inner product index -- 2.30.2