留学生作业代写

.globl blocked_gemm
.globl naive_gemm

Copyright By PowCoder代写 加微信 powcoder

#################################################################
# naive_gemm: Performs C = A x B + C where A, B and C are all #
# 64×64 matrices. #
# #
# in: #
# a0: Pointer to array A of unsigned integers (16384 bytes) #
# a1: Pointer to array B of unsigned integers (16384 bytes) #
# a2: Pointer to array C of unsigned integers (16384 bytes) #
# #
# out: #
# a2: Modified C matrix holding the result of the GEMM #
#################################################################
naive_gemm:
# Your code goes here

#################################################################
# blocked_gemm: Performs C = A x B + C where A, B and C are all #
# 64×64 matrices, iterating through blocks first, #
# rather than rows and columns. #
# #
# in: #
# a0: Pointer to array A of unsigned integers (16384 bytes) #
# a1: Pointer to array B of unsigned integers (16384 bytes) #
# a2: Pointer to array C of unsigned integers (16384 bytes) #
# #
# out: #
# a2: Modified C matrix holding the result of the GEMM #
#################################################################
blocked_gemm:
# Your code goes here

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com