2023-04-11 08:38:22 -06:00
|
|
|
import torch
|
|
|
|
import torch.distributed
|
|
|
|
|
|
|
|
from opentelemetry import trace
|
|
|
|
from transformers import AutoConfig
|
|
|
|
from transformers.models.llama import LlamaTokenizer
|
2023-06-08 06:51:52 -06:00
|
|
|
from typing import Optional
|
2023-04-11 08:38:22 -06:00
|
|
|
|
|
|
|
from text_generation_server.models import FlashCausalLM
|
|
|
|
from text_generation_server.models.custom_modeling.flash_llama_modeling import (
|
|
|
|
FlashLlamaForCausalLM,
|
|
|
|
)
|
|
|
|
from text_generation_server.utils import (
|
|
|
|
initialize_torch_distributed,
|
|
|
|
weight_files,
|
2023-06-08 06:51:52 -06:00
|
|
|
Weights,
|
2023-04-11 08:38:22 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
tracer = trace.get_tracer(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class FlashLlama(FlashCausalLM):
|
|
|
|
def __init__(
|
2023-05-12 06:46:41 -06:00
|
|
|
self,
|
|
|
|
model_id: str,
|
|
|
|
revision: Optional[str] = None,
|
|
|
|
quantize: Optional[str] = None,
|
2023-05-23 12:40:39 -06:00
|
|
|
trust_remote_code: bool = False,
|
2023-04-11 08:38:22 -06:00
|
|
|
):
|
2023-05-10 07:48:21 -06:00
|
|
|
self.process_group, rank, world_size = initialize_torch_distributed()
|
2023-04-11 08:38:22 -06:00
|
|
|
if torch.cuda.is_available():
|
2023-05-10 07:48:21 -06:00
|
|
|
device = torch.device(f"cuda:{rank}")
|
2023-05-09 10:26:19 -06:00
|
|
|
dtype = torch.float16
|
2023-04-11 08:38:22 -06:00
|
|
|
else:
|
|
|
|
raise NotImplementedError("FlashLlama is only available on GPU")
|
|
|
|
|
|
|
|
tokenizer = LlamaTokenizer.from_pretrained(
|
|
|
|
model_id,
|
|
|
|
revision=revision,
|
|
|
|
padding_side="left",
|
|
|
|
truncation_side="left",
|
2023-05-23 12:40:39 -06:00
|
|
|
trust_remote_code=trust_remote_code,
|
2023-04-11 08:38:22 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
config = AutoConfig.from_pretrained(
|
2023-05-23 12:40:39 -06:00
|
|
|
model_id, revision=revision, trust_remote_code=trust_remote_code
|
2023-04-11 08:38:22 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
torch.distributed.barrier(group=self.process_group)
|
2023-06-08 06:51:52 -06:00
|
|
|
|
2023-04-11 08:38:22 -06:00
|
|
|
filenames = weight_files(model_id, revision=revision, extension=".safetensors")
|
2023-06-08 06:51:52 -06:00
|
|
|
weights = Weights(filenames, device, dtype, process_group=self.process_group)
|
2023-04-11 08:38:22 -06:00
|
|
|
|
2023-06-08 06:51:52 -06:00
|
|
|
config.quantize = quantize
|
|
|
|
model = FlashLlamaForCausalLM(config, weights)
|
2023-04-11 08:38:22 -06:00
|
|
|
|
|
|
|
torch.distributed.barrier(group=self.process_group)
|
|
|
|
super(FlashCausalLM, self).__init__(
|
2023-06-08 06:51:52 -06:00
|
|
|
model=model,
|
2023-04-11 08:38:22 -06:00
|
|
|
tokenizer=tokenizer,
|
2023-04-21 07:36:29 -06:00
|
|
|
requires_padding=False,
|
|
|
|
dtype=dtype,
|
2023-04-11 08:38:22 -06:00
|
|
|
device=device,
|
2023-05-10 07:48:21 -06:00
|
|
|
rank=rank,
|
|
|
|
world_size=world_size,
|
2023-04-11 08:38:22 -06:00
|
|
|
)
|