上QQ阅读APP看书,第一时间看更新
体例格式
本书中有一些不同的文本样式,用以区别不同种类的信息。相应说明如下。
黑体:表示新术语和关键词。
代码段以如下格式显示:
cublas.cublasDestroy(handle)
print 'cuBLAS returned the correct value: %s' % np.allclose(np.dot(A,x),
y_gpu.get())
代码段中需要关注的某些特定代码会以如下形式显示:
def compute_gflops(precision='S'):
if precision=='S':
float_type = 'float32'
elif precision=='D':
float_type = 'float64'
else:
return -1
命令行输入或输出内容会显示为如下格式:
$ run cublas_gemm_flops.py
警告或者重要的提示以这样的形式给出。
技巧以这样的形式给出。