1
1
mirror of https://github.com/foxsen/archbase.git synced 2026-04-13 17:50:22 +08:00

initial import to public repository

This commit is contained in:
Zhang Fuxin
2021-10-27 19:14:51 +08:00
commit c632bed67e
362 changed files with 53748 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
opname,operation,description
Copy,a(i)=b(i),2个双精度浮点的访存操作16字节每个迭代没有浮点操作
Scale,a(i)=q*b(i),2个双精度浮点的访存操作16字节每个迭代包含一个浮点乘法操作
Add,a(i)=b(i)+c(i),3个双精度浮点的访存操作24字节每次迭代包含一个浮点加法操作
Triad,a(i)=b(i)+q*c(i),3个双精度浮点的访存操作24字节每次迭代两个浮点操作
1 opname operation description
2 Copy a(i)=b(i) 2个双精度浮点的访存操作(16字节),每个迭代没有浮点操作
3 Scale a(i)=q*b(i) 2个双精度浮点的访存操作(16字节),每个迭代包含一个浮点乘法操作
4 Add a(i)=b(i)+c(i) 3个双精度浮点的访存操作(24字节),每次迭代包含一个浮点加法操作
5 Triad a(i)=b(i)+q*c(i) 3个双精度浮点的访存操作(24字节),每次迭代两个浮点操作