Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

!!GREAT need for help of c programing(using simd intrinsic instruction) to perfo

ID: 3875784 • Letter: #

Question

!!GREAT need for help of c programing(using simd intrinsic instruction) to perform the 3 matrix calculation

Better to have 2 version of code.(one is simply c,the other is the simd version)

(better to have the input output file ,thx)

detail input output format is below:

(the suggested SIMD function is in last pic)

!Deeply appreciate ur help!thanku

Write a C program to perform: Read a text file named "data.txt" which contains . A matrix A, each element is a float data type .A matrix B, each element is a float data type A matrix C, each element is a float data type

Explanation / Answer

#include int main() { int m, n, c, d, first[10][10], second[10][10], sum[10][10]; printf("Enter the number of rows and columns of matrix "); scanf("%d%d", &m, &n); printf("Enter the elements of first matrix "); for (c = 0; c