2012年12月20日

摘要: 在CUDA的矩阵乘法编程中涉及到了float数组使用到了Kahan's SummationFormula来提高精度:if(row < n && column < n) {float t = 0;float y = 0;for(i = 0; i < n; i++) {float r;y -= a... 阅读全文
posted @ 2012-12-20 15:08 龙猫先生 阅读(358) 评论(0) 推荐(0)

导航