代写program、代做Java/Python程序语言
Assignment 4
220 pts (+ 140 bonus pts)
Due date: 11:59 PM PST, Dec 6 (Fri), 2024

Read the entire document carefully and provide appropriate answers based on the
context.



Figure 1. An illustration of the batched matrix multiplication (BMM) operator [ref].

Figure 1 illustrates the batched matrix multiplication (BMM) operator. BMM operators
are commonly used in self-attention of Transformer-based models such as GPT. BMM
operation can be represented in the loop nest presented in Figure 1.

Figure 2. Self-attention module

Figure 2 illustrates a self-attention module discussed in L04_Transformer slides. The
self-attention module consists of two BMMs. Generating Q, K, and V tensors requires
one BMM for each. See L04_Transformer slides for details.

inputA inputB output
for b in range(B):
for i in range(M):
for j in range(N):
for k in range(K):
output[b][i][j] += inputA[b][i][k] * inputB[b][k][j]Problem 1. Accelerator Design for an LLM
(170 pts + 90 bonus pts)

You are a DL accelerator architect in a major tech company. Your company has
developed a new large language model (LLM), and the model team is developing a
product like Chat-GPT based on the new LLM. To win the competition, your company
set the low latency service as their strategy. Your team is trying to develop a systolic
array-based DL accelerator to provide low latency to the new LLM.

Assumptions
Designing an accelerator for LLMs is a realistic and complicated problem. Therefore, we
will make the following assumptions to simplify the problem for this assignment.
- Like current state-of-the-art LLMs like GPT, we assume that the LLM is a variant
of the Transformer: We will assume that the model consists of 100 single-head
self-attention modules only (i.e., 100 of the blocks illustrated in Figure 2).
o We will only consider BMM computations in slides 20-26 in
L04_Transformer slides. (Ignore latencies for scale, mask, and softmax.)
o We will ignore all the other parts (e.g., embedding generation and the
linear layer after a self-attention block) for simplicity
- One “inference run” in this problem means the entire forward pass computation
for one set of input tensors (Q, K, and V).
- We will consider prefill stage only for this problem for simpilcity (i.e., no KV
cache)

A short summary of assumptions: The LLM is a Transformer model variant. In our
problems, we will ignore everything except BMMs in self-attention modules (+ Q, K, and
V projection). The LLM model consists of 100 self-attention modules.

* Note: The problems are organized to be aligned with the design process of an
accelerator. Note that this is not a complete list; the design process in this assignment
covers some essential parts of the design process, not everything.

Step 1. Workload analysis (70 pts)

Your team analyzed the new LLM and listed up useful information regarding the model
as follows:

- Number of attention blocks: 100
- Embedding dimension (d): 2048
- Query/Key/Value dimensions (Dk and Dv): 4096
- Sequence length (L): 1024 (fixed)
- Batch size (B): 1 – 128 (varied)
* Review L04_Transformer slides for the conventions Problem 1-1. Assuming the batch size is 1, what is the total number of MAC operations
to complete one inference? In addition to the answer, explain how you computed it and
why you took that approach. (30 pts)
Problem 1-2. Assuming the batch size is 1, what is the minimum number of PEs to
complete the LLM inference within one second (i.e., assuming 100% utilization of PEs
without any delay in the memory and network-on-chip, what is the required number of
PEs to meet the goal)? Assume the clock frequency of your accelerator is 1.5 GHz.
Assume each PE can compute one MAC in each cycle. In addition to the answer,
explain how you computed it and why you took that approach. (40 pts)

Step 2) Hardware Design Parameter Exploration
(50 pts + 60 bonus pts)
Based on the workload analysis, your team decided to design a systolic array with 4096
PEs (2
12
PEs).

Problem 2-1. There are many ways to organize a 2D PE array for the systolic array:
1x4096, 2x2048, … 64x64. Assuming the batch size is 1, which PE array organization
do you suggest? Qualitatively and quantitatively support your suggestion. (50 pts)
* Hint: Consider the PE array utilization

Problem 2-2. [Bonus problem] Assuming the batch size is 1, what is the minimum
memory size that minimizes the DRAM traffic? Minimum DRAM traffic is achieved when
you access DRAM only for fetching model parameters (weights) and the first input tensor
and sending the final output back to the DRAM. Extra DRAM traffic (which you need to
avoid) is incurred if you do not have sufficient memory to keep all the necesasry
intermediate tensors with model weights. In addition to the answer, explain how you
computed it and why you took that approach. Assume that all data are in FP8 format. (60
pts)

Step 3) Dataflow Exploration (50 pts + 30 bonus pts)
After many technical meetings, your team decided to design a 128 x 32 systolic array.

Problem 3-1. If the batch size is 1, which dimensions do you suggest to parallelize over
the rows and columns of the PE array? Also, based on your selection, what is the
processing order you suggest (i.e., the order of B, M, N, and K dimension movement)?
For simplicity, we will only consider the BMMs for Q, K, and V projections. Since
computations for Q, K, and V projections are the same, you can consider only one of them
in your answer.

Qualitatively and quantitatively support your answers. (50 pts)
Problem 3-2. [Bonus problem] If the batch size is 32, does that change your suggestion?
For simplicity, only consider the BMMs for Q, K, and V projections. Qualitatively discuss
the implication of larger batch size. (30 pts)

Problem 2. Systolic array and Dataflow Description
(50 pts + bonus 50 pts)
You are trying to compute a matrix multiplication where the matrix dimensions are as
follows: [M: 16, N: 4, K: 16].

Figure 3. Matrix multiplication

Assume the following for this problem:
• MAC computation on each PE requires one clock cycle
• Data forwarding between adjacent PEs requires one clock cycle
o Like examples in our slides, a PE can receive incoming data from a
neighbor and compute MAC at the same cycle. However, the output of the
MAC forwarded to the next PE is available in the next cycle for the next
PE.
o Similarly, operand a PE forward to the next PE is available in the next
cycle.
o Review L06_DL Accelerators slide deck carefully to fully understand how
a systolic array works. Assume the same style when you solve problems.
• All the necessary data are pre-loaded to a sufficiently large on-chip global buffer
for matrices A and B.
• You don't have to count the cycles to send output from the global shared buffer
(L2) to DRAM; only consider cycles consumed within the PE array
(Hint: The assumptions above create the same environment as the systolic array
examples in lecture slides)

Problem 4-1. Assuming a systolic array of 16x16 PEs (row: parallelize the K dimension,
column: parallelize the M dimension), estimate the latency of the systolic array for
computing the matrix multiplication in clock cycle counts. In addition to the answer,
explain how you computed it and why you took that approach. (50 pts)

Problem 4-2. [Bonus problem] Describe the dataflow given in Problem 4-1. You can
use a loop nest or the data-centric directives (50 pts)

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图