From 652e9648a97d3b3ae9f77e8850c3f21ad6e626f0 Mon Sep 17 00:00:00 2001 From: georgiatai <161803507+georgiatai@users.noreply.github.com> Date: Tue, 10 Jun 2025 13:55:33 -0700 Subject: [PATCH 1/3] Fixed typo in constants.py Signed-off-by: georgiatai <161803507+georgiatai@users.noreply.github.com> --- riscv_config/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv_config/constants.py b/riscv_config/constants.py index b2c7d9a..8a368f5 100644 --- a/riscv_config/constants.py +++ b/riscv_config/constants.py @@ -8,7 +8,7 @@ platform_schema = os.path.join(root, 'schemas/schema_platform.yaml') custom_schema = os.path.join(root, 'schemas/schema_custom.yaml') Zvl_extensions = [ - "Zvl32b", "Zvl64b", "Zvl128b", "Zvl256b", "Zve512b", "Zvl1024b" + "Zvl32b", "Zvl64b", "Zvl128b", "Zvl256b", "Zvl512b", "Zvl1024b" ] Zvef_extensions = [ "Zve32f", "Zve64f" From 1aabed72792ab54ed69fff6c0572f0513b07b299 Mon Sep 17 00:00:00 2001 From: georgiatai <161803507+georgiatai@users.noreply.github.com> Date: Fri, 13 Jun 2025 14:08:21 -0700 Subject: [PATCH 2/3] Added Zvl2048b for Zvl extensions Signed-off-by: georgiatai <161803507+georgiatai@users.noreply.github.com> --- riscv_config/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv_config/constants.py b/riscv_config/constants.py index 8a368f5..a958608 100644 --- a/riscv_config/constants.py +++ b/riscv_config/constants.py @@ -8,7 +8,7 @@ platform_schema = os.path.join(root, 'schemas/schema_platform.yaml') custom_schema = os.path.join(root, 'schemas/schema_custom.yaml') Zvl_extensions = [ - "Zvl32b", "Zvl64b", "Zvl128b", "Zvl256b", "Zvl512b", "Zvl1024b" + "Zvl32b", "Zvl64b", "Zvl128b", "Zvl256b", "Zvl512b", "Zvl1024b", "Zvl2048b" ] Zvef_extensions = [ "Zve32f", "Zve64f" From 7443f845f027ef6b446f3907dc63bd1eaa5268ee Mon Sep 17 00:00:00 2001 From: georgiatai <161803507+georgiatai@users.noreply.github.com> Date: Thu, 26 Jun 2025 15:12:13 -0700 Subject: [PATCH 3/3] Added Zvl4096b Signed-off-by: georgiatai <161803507+georgiatai@users.noreply.github.com> --- riscv_config/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv_config/constants.py b/riscv_config/constants.py index a958608..ba1a2b6 100644 --- a/riscv_config/constants.py +++ b/riscv_config/constants.py @@ -8,7 +8,7 @@ platform_schema = os.path.join(root, 'schemas/schema_platform.yaml') custom_schema = os.path.join(root, 'schemas/schema_custom.yaml') Zvl_extensions = [ - "Zvl32b", "Zvl64b", "Zvl128b", "Zvl256b", "Zvl512b", "Zvl1024b", "Zvl2048b" + "Zvl32b", "Zvl64b", "Zvl128b", "Zvl256b", "Zvl512b", "Zvl1024b", "Zvl2048b", "Zvl4096b" ] Zvef_extensions = [ "Zve32f", "Zve64f"