From 6d2cd84c836cdddde60b99e7d8c5bb917026a08d Mon Sep 17 00:00:00 2001 From: Will Johnson Date: Fri, 27 Jun 2025 18:48:50 -0400 Subject: [PATCH 1/3] test: fp16 Signed-off-by: Will Johnson --- tests/models/test_decoders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/models/test_decoders.py b/tests/models/test_decoders.py index bb8a0e5b..1a00cd2b 100644 --- a/tests/models/test_decoders.py +++ b/tests/models/test_decoders.py @@ -47,7 +47,7 @@ LLAMA_3p1_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "llama-3.1-8b-layers-3-step-24000"), GRANITE_3p2_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "granite-3.2-8b-layers-3-step-100000"), # FIXME: Because this uses the same config as 3.2, re-using here, but should update - GRANITE_3p3_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "granite-3.3-8b-layers-3-step-100000"), + GRANITE_3p3_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "granite-3.3-8b-layers-3-step-100000-fp16"), LLAMA_3p1_70B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "llama-3.1-70b-layers-3-step-24000") } From 6692f986656719e4a398fd024df477afc28d9f4c Mon Sep 17 00:00:00 2001 From: Will Johnson Date: Fri, 27 Jun 2025 18:51:44 -0400 Subject: [PATCH 2/3] bf16 Signed-off-by: Will Johnson --- tests/models/test_decoders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/models/test_decoders.py b/tests/models/test_decoders.py index 1a00cd2b..165f775e 100644 --- a/tests/models/test_decoders.py +++ b/tests/models/test_decoders.py @@ -47,7 +47,7 @@ LLAMA_3p1_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "llama-3.1-8b-layers-3-step-24000"), GRANITE_3p2_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "granite-3.2-8b-layers-3-step-100000"), # FIXME: Because this uses the same config as 3.2, re-using here, but should update - GRANITE_3p3_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "granite-3.3-8b-layers-3-step-100000-fp16"), + GRANITE_3p3_8B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "granite-3.3-8b-layers-3-step-100000-bf16"), LLAMA_3p1_70B_INSTRUCT: os.path.join(MICRO_MODELS_HOME, "llama-3.1-70b-layers-3-step-24000") } From 97797324c2500a7e4dc254e29c6d33b2ab750ca0 Mon Sep 17 00:00:00 2001 From: Will Johnson Date: Thu, 17 Jul 2025 17:03:54 -0400 Subject: [PATCH 3/3] test change Signed-off-by: Will Johnson --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f75c495..c3cbc094 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ## Setup your environment -In this directory, checkout the Foundation Model Stack (FMS) and the FMS Model Optimizer: +in this directory, checkout the Foundation Model Stack (FMS) and the FMS Model Optimizer: ```shell git clone https://github.com/foundation-model-stack/foundation-model-stack.git git clone https://github.com/foundation-model-stack/fms-model-optimizer.git