func check_level3_func(ind *linalg.IndexOpts, fn funcNum, A, B, C matrix.Matrix, pars *linalg.Parameters) (err error) { // defaults for these arows := ind.LDa brows := ind.LDb crows := ind.LDc switch fn { case fgemm: if ind.M < 0 { if pars.TransA == linalg.PNoTrans { ind.M = A.Rows() } else { ind.M = A.Cols() } } if ind.N < 0 { if pars.TransB == linalg.PNoTrans { ind.N = B.Cols() } else { ind.N = B.Rows() } } if ind.M == 0 || ind.N == 0 { return nil } if ind.K < 0 { if pars.TransA == linalg.PNoTrans { ind.K = A.Cols() } else { ind.K = A.Rows() } if pars.TransB == linalg.PNoTrans && ind.K != B.Rows() || pars.TransB != linalg.PNoTrans && ind.K != B.Cols() { return onError("dimensions of A and B do not match") } } if ind.OffsetA < 0 { return onError("offsetA illegal, <0") } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.K > 0 { if (pars.TransA == linalg.PNoTrans && ind.LDa < max(1, ind.M)) || (pars.TransA != linalg.PNoTrans && ind.LDa < max(1, ind.K)) { return onError("inconsistent ldA") } sizeA := A.NumElements() if (pars.TransA == linalg.PNoTrans && sizeA < ind.OffsetA+(ind.K-1)*arows+ind.M) || (pars.TransA != linalg.PNoTrans && sizeA < ind.OffsetA+(ind.M-1)*arows+ind.K) { return onError("sizeA") } } // B matrix if ind.OffsetB < 0 { return onError("offsetB illegal, <0") } if ind.LDb == 0 { ind.LDb = max(1, B.LeadingIndex()) brows = max(1, B.Rows()) } if ind.K > 0 { if (pars.TransB == linalg.PNoTrans && ind.LDb < max(1, ind.K)) || (pars.TransB != linalg.PNoTrans && ind.LDb < max(1, ind.N)) { return onError("inconsistent ldB") } sizeB := B.NumElements() if (pars.TransB == linalg.PNoTrans && sizeB < ind.OffsetB+(ind.N-1)*brows+ind.K) || (pars.TransB != linalg.PNoTrans && sizeB < ind.OffsetB+(ind.K-1)*brows+ind.N) { return onError("sizeB") } } // C matrix if ind.OffsetC < 0 { return onError("offsetC illegal, <0") } if ind.LDc == 0 { ind.LDc = max(1, C.LeadingIndex()) crows = max(1, C.Rows()) } if ind.LDc < max(1, ind.M) { return onError("inconsistent ldC") } sizeC := C.NumElements() if sizeC < ind.OffsetC+(ind.N-1)*crows+ind.M { return onError("sizeC") } case fsymm, ftrmm, ftrsm: if ind.M < 0 { ind.M = B.Rows() if pars.Side == linalg.PLeft && (ind.M != A.Rows() || ind.M != A.Cols()) { return onError("dimensions of A and B do not match") } } if ind.N < 0 { ind.N = B.Cols() if pars.Side == linalg.PRight && (ind.N != A.Rows() || ind.N != A.Cols()) { return onError("dimensions of A and B do not match") } } if ind.M == 0 || ind.N == 0 { return } // check A if ind.OffsetB < 0 { return onError("offsetB illegal, <0") } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if pars.Side == linalg.PLeft && ind.LDa < max(1, ind.M) || ind.LDa < max(1, ind.N) { return onError("ldA") } sizeA := A.NumElements() if (pars.Side == linalg.PLeft && sizeA < ind.OffsetA+(ind.M-1)*arows+ind.M) || (pars.Side == linalg.PRight && sizeA < ind.OffsetA+(ind.N-1)*arows+ind.N) { return onError("sizeA") } if B != nil { if ind.OffsetB < 0 { return onError("offsetB illegal, <0") } if ind.LDb == 0 { ind.LDb = max(1, B.LeadingIndex()) brows = max(1, B.Rows()) } if ind.LDb < max(1, ind.M) { return onError("ldB") } sizeB := B.NumElements() if sizeB < ind.OffsetB+(ind.N-1)*brows+ind.M { return onError("sizeB") } } if C != nil { if ind.OffsetC < 0 { return onError("offsetC illegal, <0") } if ind.LDc == 0 { ind.LDc = max(1, C.LeadingIndex()) crows = max(1, C.Rows()) } if ind.LDc < max(1, ind.M) { return onError("ldC") } sizeC := C.NumElements() if sizeC < ind.OffsetC+(ind.N-1)*crows+ind.M { return onError("sizeC") } } case fsyrk: if ind.N < 0 { if pars.Trans == linalg.PNoTrans { ind.N = A.Rows() } else { ind.N = A.Cols() } //ind.N = C.Rows() } if ind.K < 0 { if pars.Trans == linalg.PNoTrans { ind.K = A.Cols() } else { ind.K = A.Rows() } } if ind.N == 0 { return } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.OffsetA < 0 { return onError("offsetA") } if ind.K > 0 { if (pars.Trans == linalg.PNoTrans && ind.LDa < max(1, ind.N)) || (pars.Trans != linalg.PNoTrans && ind.LDa < max(1, ind.K)) { return onError("inconsistent ldA") } sizeA := A.NumElements() if (pars.Trans == linalg.PNoTrans && sizeA < ind.OffsetA+(ind.K-1)*arows+ind.N) || (pars.TransA != linalg.PNoTrans && sizeA < ind.OffsetA+(ind.N-1)*arows+ind.K) { return onError("sizeA") } } if ind.OffsetC < 0 { return onError("offsetC illegal, <0") } if ind.LDc == 0 { ind.LDc = max(1, C.LeadingIndex()) crows = max(1, C.Rows()) } if ind.LDc < max(1, ind.N) { return onError("ldC") } sizeC := C.NumElements() if sizeC < ind.OffsetC+(ind.N-1)*crows+ind.N { return onError("sizeC") } case fsyr2k: if ind.N < 0 { if pars.Trans == linalg.PNoTrans { ind.N = A.Rows() if ind.N != B.Rows() { return onError("dimensions of A and B do not match") } } else { ind.N = A.Cols() if ind.N != B.Cols() { return onError("dimensions of A and B do not match") } } } if ind.N == 0 { return } if ind.K < 0 { if pars.Trans == linalg.PNoTrans { ind.K = A.Cols() if ind.K != B.Cols() { return onError("dimensions of A and B do not match") } } else { ind.K = A.Rows() if ind.K != B.Rows() { return onError("dimensions of A and B do not match") } } } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.K > 0 { if (pars.Trans == linalg.PNoTrans && ind.LDa < max(1, ind.N)) || (pars.Trans != linalg.PNoTrans && ind.LDa < max(1, ind.K)) { return onError("inconsistent ldA") } sizeA := A.NumElements() if (pars.Trans == linalg.PNoTrans && sizeA < ind.OffsetA+(ind.K-1)*arows+ind.N) || (pars.TransA != linalg.PNoTrans && sizeA < ind.OffsetA+(ind.N-1)*arows+ind.K) { return onError("sizeA") } } if ind.OffsetB < 0 { return onError("offsetB illegal, <0") } if ind.LDb == 0 { ind.LDb = max(1, B.LeadingIndex()) brows = max(1, B.Rows()) } if ind.K > 0 { if (pars.Trans == linalg.PNoTrans && ind.LDb < max(1, ind.N)) || (pars.Trans != linalg.PNoTrans && ind.LDb < max(1, ind.K)) { return onError("ldB") } sizeB := B.NumElements() if (pars.Trans == linalg.PNoTrans && sizeB < ind.OffsetB+(ind.K-1)*brows+ind.N) || (pars.Trans != linalg.PNoTrans && sizeB < ind.OffsetB+(ind.N-1)*brows+ind.K) { return onError("sizeB") } } if ind.OffsetC < 0 { return onError("offsetC illegal, <0") } if ind.LDc == 0 { ind.LDc = max(1, C.LeadingIndex()) crows = max(1, C.Rows()) } if ind.LDc < max(1, ind.N) { return onError("ldC") } sizeC := C.NumElements() if sizeC < ind.OffsetC+(ind.N-1)*crows+ind.N { return onError("sizeC") } } err = nil return }
func checkGesvd(ind *linalg.IndexOpts, pars *linalg.Parameters, A, S, U, Vt matrix.Matrix) error { arows := ind.LDa if ind.M < 0 { ind.M = A.Rows() } if ind.N < 0 { ind.N = A.Cols() } if ind.M == 0 || ind.N == 0 { return nil } if pars.Jobu == linalg.PJobO && pars.Jobvt == linalg.PJobO { return onError("Gesvd: jobu and jobvt cannot both have value PJobO") } if pars.Jobu == linalg.PJobAll || pars.Jobu == linalg.PJobS { if U == nil { return onError("Gesvd: missing matrix U") } if ind.LDu == 0 { ind.LDu = max(1, U.LeadingIndex()) } if ind.LDu < max(1, ind.M) { return onError("Gesvd: ldU") } } else { if ind.LDu == 0 { ind.LDu = 1 } if ind.LDu < 1 { return onError("Gesvd: ldU") } } if pars.Jobvt == linalg.PJobAll || pars.Jobvt == linalg.PJobS { if Vt == nil { return onError("Gesvd: missing matrix Vt") } if ind.LDvt == 0 { ind.LDvt = max(1, Vt.LeadingIndex()) } if pars.Jobvt == linalg.PJobAll && ind.LDvt < max(1, ind.N) { return onError("Gesvd: ldVt") } else if pars.Jobvt != linalg.PJobAll && ind.LDvt < max(1, min(ind.M, ind.N)) { return onError("Gesvd: ldVt") } } else { if ind.LDvt == 0 { ind.LDvt = 1 } if ind.LDvt < 1 { return onError("Gesvd: ldVt") } } if ind.OffsetA < 0 { return onError("Gesvd: offsetA") } sizeA := A.NumElements() if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if sizeA < ind.OffsetA+(ind.N-1)*arows+ind.M { return onError("Gesvd: sizeA") } if ind.OffsetS < 0 { return onError("Gesvd: offsetS") } sizeS := S.NumElements() if sizeS < ind.OffsetS+min(ind.M, ind.N) { return onError("Gesvd: sizeA") } /* if U != nil { if ind.OffsetU < 0 { return onError("Gesvd: OffsetU") } sizeU := U.NumElements() if pars.Jobu == linalg.PJobAll && sizeU < ind.LDu*(ind.M-1) { return onError("Gesvd: sizeU") } else if pars.Jobu == linalg.PJobS && sizeU < ind.LDu*(min(ind.M,ind.N)-1) { return onError("Gesvd: sizeU") } } if Vt != nil { if ind.OffsetVt < 0 { return onError("Gesvd: OffsetVt") } sizeVt := Vt.NumElements() if pars.Jobvt == linalg.PJobAll && sizeVt < ind.N { return onError("Gesvd: sizeVt") } else if pars.Jobvt == linalg.PJobS && sizeVt < min(ind.M, ind.N) { return onError("Gesvd: sizeVt") } } */ return nil }
func check_level2_func(ind *linalg.IndexOpts, fn funcNum, X, Y, A matrix.Matrix, pars *linalg.Parameters) error { if ind.IncX <= 0 { return onError("incX") } if ind.IncY <= 0 { return onError("incY") } sizeA := A.NumElements() arows := ind.LDa switch fn { case fgemv: // general matrix if ind.M < 0 { ind.M = A.Rows() } if ind.N < 0 { ind.N = A.Cols() } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.OffsetA < 0 { return onError("offsetA") } if ind.N > 0 && ind.M > 0 && sizeA < ind.OffsetA+(ind.N-1)*arows+ind.M { return onError("sizeA") } if ind.OffsetX < 0 { return onError("offsetX") } if ind.OffsetY < 0 { return onError("offsetY") } sizeX := X.NumElements() sizeY := Y.NumElements() if pars.Trans == linalg.PNoTrans { if ind.N > 0 && sizeX < ind.OffsetX+(ind.N-1)*abs(ind.IncX)+1 { return onError("sizeX") } if ind.M > 0 && sizeY < ind.OffsetY+(ind.M-1)*abs(ind.IncY)+1 { return onError("sizeY") } } else { if ind.M > 0 && sizeX < ind.OffsetX+(ind.M-1)*abs(ind.IncX)+1 { return onError("sizeX") } if ind.N > 0 && sizeY < ind.OffsetY+(ind.N-1)*abs(ind.IncY)+1 { return onError("sizeY") } } case fger: if ind.M < 0 { ind.M = A.Rows() } if ind.N < 0 { ind.N = A.Cols() } if ind.M == 0 || ind.N == 0 { return nil } if ind.M > 0 && ind.N > 0 { if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.LDa < max(1, ind.M) { return onError("ldA") } if ind.OffsetA < 0 { return onError("offsetA") } if sizeA < ind.OffsetA+(ind.N-1)*arows+ind.M { return onError("sizeA") } if ind.OffsetX < 0 { return onError("offsetX") } if ind.OffsetY < 0 { return onError("offsetY") } sizeX := X.NumElements() if sizeX < ind.OffsetX+(ind.M-1)*abs(ind.IncX)+1 { return onError("sizeX") } sizeY := Y.NumElements() if sizeY < ind.OffsetY+(ind.N-1)*abs(ind.IncY)+1 { return onError("sizeY") } } case fgbmv: // general banded if ind.M < 0 { ind.M = A.Rows() } if ind.N < 0 { ind.N = A.Cols() } if ind.Kl < 0 { return onError("kl") } if ind.Ku < 0 { ind.Ku = A.Rows() - 1 - ind.Kl } if ind.Ku < 0 { return onError("ku") } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.LDa < ind.Kl+ind.Ku+1 { return onError("ldA") } if ind.OffsetA < 0 { return onError("offsetA") } sizeA := A.NumElements() if ind.N > 0 && ind.M > 0 && sizeA < ind.OffsetA+(ind.N-1)*arows+ind.Kl+ind.Ku+1 { return onError("sizeA") } if ind.OffsetX < 0 { return onError("offsetX") } if ind.OffsetY < 0 { return onError("offsetY") } sizeX := X.NumElements() sizeY := Y.NumElements() if pars.Trans == linalg.PNoTrans { if ind.N > 0 && sizeX < ind.OffsetX+(ind.N-1)*abs(ind.IncX)+1 { return onError("sizeX") } if ind.N > 0 && sizeY < ind.OffsetY+(ind.M-1)*abs(ind.IncY)+1 { return onError("sizeY") } } else { if ind.N > 0 && sizeX < ind.OffsetX+(ind.M-1)*abs(ind.IncX)+1 { return onError("sizeX") } if ind.N > 0 && sizeY < ind.OffsetY+(ind.N-1)*abs(ind.IncY)+1 { return onError("sizeY") } } case ftrmv, ftrsv: // ftrmv = triangular // ftrsv = triangular solve if ind.N < 0 { if A.Rows() != A.Cols() { return onError("A not square") } ind.N = A.Rows() } if ind.N > 0 { if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.LDa < max(1, ind.N) { return onError("ldA") } if ind.OffsetA < 0 { return onError("offsetA") } sizeA := A.NumElements() if sizeA < ind.OffsetA+(ind.N-1)*arows+ind.N { return onError("sizeA") } sizeX := X.NumElements() if sizeX < ind.OffsetX+(ind.N-1)*abs(ind.IncX)+1 { return onError("sizeX") } } case ftbmv, ftbsv, fsbmv: // ftbmv = triangular banded // ftbsv = triangular banded solve // fsbmv = symmetric banded product arows := ind.LDa if ind.N < 0 { ind.N = A.Rows() } if ind.N > 0 { if ind.K < 0 { ind.K = max(0, A.Rows()-1) } if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.LDa < ind.K+1 { return onError("ldA") } if ind.OffsetA < 0 { return onError("offsetA") } sizeA := A.NumElements() if sizeA < ind.OffsetA+(ind.N-1)*arows+ind.K+1 { return onError("sizeA") } sizeX := X.NumElements() if sizeX < ind.OffsetX+(ind.N-1)*abs(ind.IncX)+1 { return onError("sizeX") } if Y != nil { sizeY := Y.NumElements() if sizeY < ind.OffsetY+(ind.N-1)*abs(ind.IncY)+1 { return onError("sizeY") } } } case fsymv, fsyr, fsyr2: // fsymv = symmetric product // fsyr = symmetric rank update // fsyr2 = symmetric rank-2 update if ind.N < 0 { if A.Rows() != A.Cols() { return onError("A not square") } ind.N = A.Rows() } arows := ind.LDa if ind.N > 0 { if ind.LDa == 0 { ind.LDa = max(1, A.LeadingIndex()) arows = max(1, A.Rows()) } if ind.LDa < max(1, ind.N) { return onError("ldA") } if ind.OffsetA < 0 { return onError("offsetA") } sizeA := A.NumElements() if sizeA < ind.OffsetA+(ind.N-1)*arows+ind.N { return onError("sizeA") } if ind.OffsetX < 0 { return onError("offsetX") } sizeX := X.NumElements() if sizeX < ind.OffsetX+(ind.N-1)*abs(ind.IncX)+1 { return onError("sizeX") } if Y != nil { if ind.OffsetY < 0 { return onError("offsetY") } sizeY := Y.NumElements() if sizeY < ind.OffsetY+(ind.N-1)*abs(ind.IncY)+1 { return onError("sizeY") } } } case fspr, fdspr2, ftpsv, fspmv, ftpmv: // ftpsv = triangular packed solve // fspmv = symmetric packed product // ftpmv = triangular packed } return nil }