update calculation error

This commit is contained in:
unknown 2021-11-22 23:34:28 +08:00
parent cecb5af32e
commit f93fbe151f
1 changed files with 2 additions and 2 deletions

View File

@ -20,8 +20,8 @@ int main()
{
// 由于显存 2 GBfloat 为 4 字节double 为 8 字节,所以在 transpose3, transpose4中
// float 矩阵维度不能超过 726
// double 矩阵维度不能超过 342
const int N = 300;
// double 矩阵维度不能超过 512
const int N = 500;
const int M = N * N * sizeof(real);
int SIZE = 0;