cuda matrix inverse gaussian jordan
问题 I didn't find any similar question to mine. I'm trying to write the gaussian-jordan inverse matrix algorithm. The idea of the algorithm is simple:) I want to inverse only a lower triangular matrix. I got almost correct answer. Where did I do sth wrong? Does anyone can help me? I will appreciate it. d _ A lower triangular matrix (nxn) dI identity matrix (nxn) n size of a matrix in one direction (n%16=0) dim3 threadsPerBlock(n/16,n/16); dim3 numBlocks(16,16); I know it is a simple