qcd.txt

来自「A C++ class library for scientific compu」· 文本 代码 · 共 20 行

TXT
20
字号
The most expensive routines in terms of CPU time were a family of routinesthat multiplied a 2-spinors by SU(3) gauge elements: The core of theseroutines is basically the same as the following code:COMPLEX M(V,3,3) res(V,3,2), src(V,3,2)    DO spin=1,2        DO col=1,3            DO site=1,V                res(site,col,spin)=                         M(site,col,1) * src(site,1,spin)                       + M(site,col,2) * src(site,2,spin)                       + M(site,col,3) * src(site,3,spin)            END DO        END DO    END DOhttp://www.epcc.ed.ac.uk/t3d/documents/techreports/EPCC-TR96-03/EPCC-TR96-03.book_1.html

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?