Hello,
I noticed a function for lu factorization of batched matrices - cublasDgetrfBatched() which accepts the vector of matrices. Is there a possibility to pass one-dimensional array of matrices to this function or is there any alternative to this function for that purpose. From the function signature I understood that it expects something like vector[BatchId][NxN], where first major index is index of a matrix and second corresponds to matrix element. I already have a matrix but stored as a one-dim array, like this - vector[N1xN1, N2xN2, … NkxNk], where N1 = N2 = … = Nk Could you please give some clarifications, whether such layout could be passed into that function?
Thank you,
Anton