Skip to content

Commit

Permalink
Allow M1/M2 macs for LLM Training (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekkrthakur authored Oct 5, 2023
1 parent cea8675 commit 3534d4d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
12 changes: 9 additions & 3 deletions src/autotrain/cli/run_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -407,10 +407,16 @@ def __init__(self, args):
break
print(f"Bot: {tgi.chat(prompt)}")

if not torch.cuda.is_available():
raise ValueError("No GPU found. Please install CUDA and try again.")
cuda_available = torch.cuda.is_available()
mps_available = torch.backends.mps.is_available()

self.num_gpus = torch.cuda.device_count()
if not cuda_available and not mps_available:
raise ValueError("No GPU/MPS device found. LLM training requires an accelerator")

if cuda_available:
self.num_gpus = torch.cuda.device_count()
elif mps_available:
self.num_gpus = 1

def run(self):
from autotrain.backend import EndpointsRunner, SpaceRunner
Expand Down
6 changes: 4 additions & 2 deletions src/autotrain/trainers/clm/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,19 @@ def train(config):
bnb_4bit_compute_dtype=torch.float16,
bnb_4bit_use_double_quant=False,
)
config.fp16 = True
elif config.use_int8:
bnb_config = BitsAndBytesConfig(load_in_8bit=config.use_int8)
config.fp16 = True
else:
bnb_config = BitsAndBytesConfig()
bnb_config = None

model = AutoModelForCausalLM.from_pretrained(
config.model,
config=model_config,
token=config.token,
quantization_config=bnb_config,
torch_dtype=torch.float16,
torch_dtype=torch.float16 if config.fp16 else torch.float32,
device_map={"": Accelerator().process_index} if torch.cuda.is_available() else None,
trust_remote_code=True,
use_flash_attention_2=config.use_flash_attention_2,
Expand Down

0 comments on commit 3534d4d

Please sign in to comment.