This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#include <iostream>
#include <ctime> // 用于 clock() 函数
#include <cstdlib> // 用于 rand() 函数
#include <cstdio> // 用于 printf 函数
// 定义矩阵大小
#define SIZE 1024
// 矩阵乘法函数
void matmul(float** A, float** B, float** C, int n) {