Skip to content

Instantly share code, notes, and snippets.

@ArthurZucker
Created February 8, 2024 03:32
Show Gist options
  • Save ArthurZucker/63a3d104046684adacf5333ab16b44c0 to your computer and use it in GitHub Desktop.
Save ArthurZucker/63a3d104046684adacf5333ab16b44c0 to your computer and use it in GitHub Desktop.
bench_fa2.py
import torch
import os
import argparse
import matplotlib.pyplot as plt
from tqdm import tqdm
from transformers import AutoModelForCausalLM, AutoTokenizer
import seaborn as sns
def get_parser():
parser = argparse.ArgumentParser()
parser.add_argument(
"--num-batches",
type=int,
default=10,
help="",
)
parser.add_argument(
"--max-batch-size",
type=int,
default=16,
help="",
)
parser.add_argument(
"--max-seqlen",
type=int,
default=64,
help="",
)
parser.add_argument(
"--max-new-tokens",
type=int,
default=64,
help="",
)
parser.add_argument(
"--bench-backward",
action="store_true",
)
parser.add_argument(
"--bench-generate",
action="store_true",
)
parser.add_argument(
"--use-padding",
action="store_true",
)
return parser
model_id = "meta-llama/Llama-2-7b-hf"
ARTICLE = """Marseille, France (CNN)The French prosecutor leading an investigation into the crash of Germanwings Flight 9525 insisted Wednesday that he was not aware of any video footage from on board the plane. Marseille prosecutor Brice Robin told CNN that "so far no videos were used in the crash investigation." He added, "A person who has such a video needs to immediately give it to the investigators." Robin\'s comments follow claims by two magazines, German daily Bild and French Paris Match, of a cell phone video showing the harrowing final seconds from on board Germanwings Flight 9525 as it crashed into the French Alps. All 150 on board were killed. Paris Match and Bild reported that the video was recovered from a phone at the wreckage site. The two publications described the supposed video, but did not post it on their websites. The publications said that they watched the video, which was found by a source close to the investigation. \"One can hear cries of 'My God' in several languages,\" Paris Match reported. "Metallic banging can also be heard more than three times, perhaps of the pilot trying to open the cockpit door with a heavy object. Towards the end, after a heavy shake, stronger than the others, the screaming intensifies. Then nothing." "It is a very disturbing scene," said Julian Reichelt, editor-in-chief of Bild online. An official with France's accident investigation agency, the BEA, said the agency is not aware of any such video. Lt. Col. Jean-Marc Menichini, a French Gendarmerie spokesman in charge of communications on rescue efforts around the Germanwings crash site, told CNN that the reports were "completely wrong" and "unwarranted." Cell phones have been collected at the site, he said, but that they "hadn\'t been exploited yet." Menichini said he believed the cell phones would need to be sent to the Criminal Research Institute in Rosny sous-Bois, near Paris, in order to be analyzed by specialized technicians working hand-in-hand with investigators. But none of the cell phones found so far have been sent to the institute, Menichini said. Asked whether staff involved in the search could have leaked a memory card to the media, Menichini answered with a categorical "no." Reichelt told "Erin Burnett: Outfront" that he had watched the video and stood by the report, saying Bild and Paris Match are "very confident" that the clip is real. He noted that investigators only revealed they\'d recovered cell phones from the crash site after Bild and Paris Match published their reports. "That is something we did not know before. ... Overall we can say many things of the investigation weren't revealed by the investigation at the beginning," he said. What was mental state of Germanwings co-pilot? German airline Lufthansa confirmed Tuesday that co-pilot Andreas Lubitz had battled depression years before he took the controls of Germanwings Flight 9525, which he's accused of deliberately crashing last week in the French Alps. Lubitz told his Lufthansa flight training school in 2009 that he had a "previous episode of severe depression," the airline said Tuesday. Email correspondence between Lubitz and the school discovered in an internal investigation, Lufthansa said, included medical documents he submitted in connection with resuming his flight training. The announcement indicates that Lufthansa, the parent company of Germanwings, knew of Lubitz's battle with depression, allowed him to continue training and ultimately put him in the cockpit. Lufthansa, whose CEO Carsten Spohr previously said Lubitz was 100% fit to fly, described its statement Tuesday as a "swift and seamless clarification" and said it was sharing the information and documents -- including training and medical records -- with public prosecutors. Spohr traveled to the crash site Wednesday, where recovery teams have been working for the past week to recover human remains and plane debris scattered across a steep mountainside. He saw the crisis center set up in Seyne-les-Alpes, laid a wreath in the village of Le Vernet, closer to the crash site, where grieving families have left flowers at a simple stone memorial. Menichini told CNN late Tuesday that no visible human remains were left at the site but recovery teams would keep searching. French President Francois Hollande, speaking Tuesday, said that it should be possible to identify all the victims using DNA analysis by the end of the week, sooner than authorities had previously suggested. In the meantime, the recovery of the victims' personal belongings will start Wednesday, Menichini said. Among those personal belongings could be more cell phones belonging to the 144 passengers and six crew on board. Check out the latest from our correspondents . The details about Lubitz's correspondence with the flight school during his training were among several developments as investigators continued to delve into what caused the crash and Lubitz's possible motive for downing the jet. A Lufthansa spokesperson told CNN on Tuesday that Lubitz had a valid medical certificate, had passed all his examinations and "held all the licenses required." Earlier, a spokesman for the prosecutor\'s office in Dusseldorf, Christoph Kumpa, said medical records reveal Lubitz suffered from suicidal tendencies at some point before his aviation career and underwent psychotherapy before he got his pilot's license. Kumpa emphasized there's no evidence suggesting Lubitz was suicidal or acting aggressively before the crash. Investigators are looking into whether Lubitz feared his medical condition would cause him to lose his pilot's license, a European government official briefed on the investigation told CNN on Tuesday. While flying was "a big part of his life," the source said, it\'s only one theory being considered. Another source, a law enforcement official briefed on the investigation, also told CNN that authorities believe the primary motive for Lubitz to bring down the plane was that he feared he would not be allowed to fly because of his medical problems. Lubitz's girlfriend told investigators he had seen an eye doctor and a neuropsychologist, both of whom deemed him unfit to work recently and concluded he had psychological issues, the European government official said. But no matter what details emerge about his previous mental health struggles, there's more to the story, said Brian Russell, a forensic psychologist. "Psychology can explain why somebody would turn rage inward on themselves about the fact that maybe they weren't going to keep doing their job and they're upset about that and so they're suicidal," he said. "But there is no mental illness that explains why somebody then feels entitled to also take that rage and turn it outward on 149 other people who had nothing to do with the person's problems." Germanwings crash compensation: What we know . Who was the captain of Germanwings Flight 9525? CNN's Margot Haddad reported from Marseille and Pamela Brown from Dusseldorf, while Laura Smith-Spark wrote from London. CNN's Frederik Pleitgen, Pamela Boykoff, Antonia Mortensen, Sandrine Amiel and Anna-Maja Rappard contributed to this report."""
@torch.no_grad()
def warmup_and_benchmark(
model,
batch_size,
max_seq_len,
use_padding,
num_batches,
bench_generate,
bench_backward,
max_new_tokens,
):
input_ids = tokenizer([ARTICLE]*batch_size, return_tensors="pt").to(0).input_ids[:, :max_seq_len]
inputs = {"input_ids": input_ids}
if use_padding:
attention_mask = torch.zeros_like(input_ids)
attention_mask[:, :max_seq_len // 2] = 1
inputs["attention_mask"] = attention_mask
# warmup
_ = model.generate(**inputs, max_new_tokens=20, eos_token_id=-1, use_cache=False)
start_event = torch.cuda.Event(enable_timing=True)
end_event = torch.cuda.Event(enable_timing=True)
torch.cuda.empty_cache()
torch.cuda.synchronize()
with torch.no_grad():
start_event.record()
for _ in range(num_batches):
if bench_generate:
_ = model.generate(**inputs, max_new_tokens=max_new_tokens, eos_token_id=-1, use_cache=False)
else:
_ = model(input_ids)
end_event.record()
torch.cuda.synchronize()
forward_timing = (start_event.elapsed_time(end_event) * 1.0e-3) / num_batches
backward_timing = 0
if bench_backward:
for _ in range(num_batches):
torch.cuda.empty_cache()
torch.cuda.synchronize()
logits = model(input_ids).logits
loss = logits.mean()
start_event.record()
loss.backward()
end_event.record()
torch.cuda.synchronize()
backward_timing += (start_event.elapsed_time(end_event) * 1.0e-3)
return forward_timing, backward_timing / num_batches
if __name__ == "__main__":
parser = get_parser()
args = parser.parse_args()
num_batches = args.num_batches
max_seq_len = args.max_seqlen
max_batch_size = args.max_batch_size
max_new_tokens = args.max_new_tokens
bench_generate = args.bench_generate
bench_backward = args.bench_backward
use_padding = args.use_padding
# TODO: change this
BATCH_SIZE = [max_batch_size // 4, max_batch_size // 2, max_batch_size]
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
attn_implementation="eager"
).to(0)
model_fa = AutoModelForCausalLM.from_pretrained(
model_id,
device_map={"":0},
torch_dtype=torch.float16,
attn_implementation="flash_attention_2"
)
print("native", model)
print("FA2", model_fa)
native_total_time_dict = {}
fa2_total_time_dict = {}
forward_speedups = {}
backward_speedups = {}
for batch_size in tqdm(BATCH_SIZE):
# warmup
native_timing, native_backward_timing = warmup_and_benchmark(
model,
batch_size,
max_seq_len,
use_padding,
num_batches,
bench_generate,
bench_backward,
max_new_tokens
)
native_total_time_dict[f"{batch_size}"] = native_timing
fa2_timing, fa2_backward_timing = warmup_and_benchmark(
model_fa,
batch_size,
max_seq_len,
use_padding,
num_batches,
bench_generate,
bench_backward,
max_new_tokens
)
fa2_total_time_dict[f"{batch_size}"] = fa2_timing
forward_speedups[f"{batch_size}"] = native_timing / fa2_timing
if bench_backward:
backward_speedups[f"{batch_size}"] = native_backward_timing / fa2_backward_timing
else:
backward_speedups[f"{batch_size}"] = 0
dir_name = f"flash-attn-2-benchmarks/{model_id}/seq_len_{max_seq_len}_padding_{use_padding}_generate_{bench_generate}_max_batch_size_{max_batch_size}/"
os.makedirs(dir_name, exist_ok=True)
sns.set(style="darkgrid")
# plot both lines
sns.lineplot(data=native_total_time_dict, color="blue", label="llama2-native")
sns.lineplot(data=fa2_total_time_dict, color="orange", label="llama2-FA2")
plt.ylabel("Average inference time (s)")
plt.xlabel("Batch size")
plt.title("Comparing average inference time between native model vs Flash Attention-2 model - ran on NVIDIA A100", fontsize = 8)
plt.suptitle(f"Sequence length {max_seq_len} | Use generate {bench_generate} | Use padding {use_padding} - ", fontsize = 8)
plt.legend()
# save plot
plt.savefig(os.path.join(dir_name, "timing_plot.jpg"), dpi=300)
plt.figure()
sns.set(style="darkgrid")
# plot both lines
sns.lineplot(data=forward_speedups, color="orange", label="forward-speedup")
if bench_backward:
sns.lineplot(data=backward_speedups, color="blue", label="backward-speedup")
plt.ylabel("Speedup (x)")
plt.xlabel("Batch size")
plt.title("Comparing forward/backward speedup between native model vs Flash Attention-2 model - ran on NVIDIA A100", fontsize = 8)
plt.suptitle(f"Sequence length {max_seq_len} | Use generate {bench_generate} | Use padding {use_padding} - ", fontsize = 8)
plt.legend()
# save plot
plt.savefig(os.path.join(dir_name, "speedup_plot.jpg"), dpi=300)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment