diff --git a/4.c b/4.c new file mode 100644 index 0000000..45c5314 --- /dev/null +++ b/4.c @@ -0,0 +1,52 @@ +#include +#include +#include +#include +#include +#include +#define SIZE 1024 +int main(){ + void matmul_optimized(float **A,float **B,float **C,int n); + int i,j,n; + float **A=new float*[n]; + float **B=new float*[n]; + float **C=new float*[n]; + for(i=0;i