TimeRobber commited on
Commit
191b540
1 Parent(s): f9b2efc

Update app.py

Browse files



@teven

has suggested that the question was unclear. I'll let him figure out if the question is clearer now.

Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -116,11 +116,9 @@ For some resources, you may want to check out:
116
  """
117
 
118
  fast_distributed_framework_question = """
119
- 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
- <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}
 
116
  """
117
 
118
  fast_distributed_framework_question = """
119
+ We are going to understand how many operations does a matrix multiplication hold using the simplest algorithm.
120
  <br/>
121
  <br/>
 
 
122
  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:
123
  <br/>
124
  multiplications: {YOUR_ANSWER_AS_A_SINGLE_NUMBER}