Sian Cao

Results 2 issues of Sian Cao

It seems that Nvidia does not support EGL GBM, and it occurred to me that they propose EGLStreams instead. need more info later.

大神,我初学 cuda,对代码中的实现有一个困惑,在 kernel 中x 维度代表的是行还是列,看代码应该是列(一行的0~blockDim.x-1列)? ```cuda __global__ __launch_bounds__(1024) void mysgemm_v1(int M, int N, int K, float alpha, float *A, float *B, float beta, float *C) { int gx = blockIdx.x...