From 94a8bed96721a534d3e33ee7f33c6887cd117f58 Mon Sep 17 00:00:00 2001 From: skydoorkai Date: Mon, 22 Jan 2024 13:57:00 +0800 Subject: [PATCH] use bash --- atorch/README.md | 4 ++-- atorch/examples/llama2/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/atorch/README.md b/atorch/README.md index 30c5012ae..31db40605 100644 --- a/atorch/README.md +++ b/atorch/README.md @@ -77,8 +77,8 @@ pip install atorch git clone https://github.com/intelligent-machine-learning/dlrover.git cd dlrover/atorch # build package, optional set version. -sh dev/scripts/build.sh [version] -# install the created package in dist directory. Not that if version is set, file name is different. +bash dev/scripts/build.sh [version] +# install the created package in dist directory. Note that if version is set, file name is different. pip install dist/atorch-0.1.0.dev0-py3-none-any.whl ``` diff --git a/atorch/examples/llama2/README.md b/atorch/examples/llama2/README.md index 61c69123a..2ddab5e87 100644 --- a/atorch/examples/llama2/README.md +++ b/atorch/examples/llama2/README.md @@ -26,7 +26,7 @@ pip install -r requirements.txt bash fsdp_llama2_entry.sh # use fp8 -USE_FP8=1 sh fsdp_llama2_entry.sh +USE_FP8=1 bash fsdp_llama2_entry.sh # use lora USE_LORA=1 bash fsdp_llama2_entry.sh