Spaces:
Runtime error
Runtime error
Commit
·
f9b2efc
1
Parent(s):
48b89e1
Indentation (#29)
Browse files- Indentation (f51833a3a35d84b3371b9ee7e127a9893c53bb9b)
Co-authored-by: Thomas Wang <TimeRobber@users.noreply.huggingface.co>
app.py
CHANGED
@@ -120,9 +120,13 @@ We are going to understand how many operations does a matrix multiplication hold
|
|
120 |
<br/>
|
121 |
<br/>
|
122 |
Let N=128, M=256, K=64
|
|
|
123 |
Let A,B two matrices of size 256x64 and 128x64 respectively. When computing the matrix multiplication of A and (B^T), how many scalar multiplications are done? How many scalar additions are done? Please answer in the following format:
|
|
|
124 |
multiplications: {YOUR_ANSWER_AS_A_SINGLE_NUMBER}
|
|
|
125 |
additions: {YOUR_ANSWER_AS_A_SINGLE_NUMBER}
|
|
|
126 |
"""
|
127 |
|
128 |
internships = {
|
|
|
120 |
<br/>
|
121 |
<br/>
|
122 |
Let N=128, M=256, K=64
|
123 |
+
<br/>
|
124 |
Let A,B two matrices of size 256x64 and 128x64 respectively. When computing the matrix multiplication of A and (B^T), how many scalar multiplications are done? How many scalar additions are done? Please answer in the following format:
|
125 |
+
<br/>
|
126 |
multiplications: {YOUR_ANSWER_AS_A_SINGLE_NUMBER}
|
127 |
+
<br/>
|
128 |
additions: {YOUR_ANSWER_AS_A_SINGLE_NUMBER}
|
129 |
+
<br/>
|
130 |
"""
|
131 |
|
132 |
internships = {
|