1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
// Copyright ©2015 The Gonum Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package testlapack
import (
"fmt"
"testing"
"golang.org/x/exp/rand"
"gonum.org/v1/gonum/blas"
"gonum.org/v1/gonum/floats"
)
type Dormqrer interface {
Dorm2rer
Dormqr(side blas.Side, trans blas.Transpose, m, n, k int, a []float64, lda int, tau, c []float64, ldc int, work []float64, lwork int)
}
func DormqrTest(t *testing.T, impl Dormqrer) {
rnd := rand.New(rand.NewSource(1))
for _, side := range []blas.Side{blas.Left, blas.Right} {
for _, trans := range []blas.Transpose{blas.NoTrans, blas.Trans} {
for _, test := range []struct {
common, adim, cdim, lda, ldc int
}{
{6, 7, 8, 0, 0},
{6, 8, 7, 0, 0},
{7, 6, 8, 0, 0},
{7, 8, 6, 0, 0},
{8, 6, 7, 0, 0},
{8, 7, 6, 0, 0},
{100, 200, 300, 0, 0},
{100, 300, 200, 0, 0},
{200, 100, 300, 0, 0},
{200, 300, 100, 0, 0},
{300, 100, 200, 0, 0},
{300, 200, 100, 0, 0},
{100, 200, 300, 400, 500},
{100, 300, 200, 400, 500},
{200, 100, 300, 400, 500},
{200, 300, 100, 400, 500},
{300, 100, 200, 400, 500},
{300, 200, 100, 400, 500},
{100, 200, 300, 500, 400},
{100, 300, 200, 500, 400},
{200, 100, 300, 500, 400},
{200, 300, 100, 500, 400},
{300, 100, 200, 500, 400},
{300, 200, 100, 500, 400},
} {
var ma, na, mc, nc int
if side == blas.Left {
ma = test.common
na = test.adim
mc = test.common
nc = test.cdim
} else {
ma = test.common
na = test.adim
mc = test.cdim
nc = test.common
}
// Generate a random matrix
lda := test.lda
if lda == 0 {
lda = na
}
a := make([]float64, ma*lda)
for i := range a {
a[i] = rnd.Float64()
}
// Compute random C matrix
ldc := test.ldc
if ldc == 0 {
ldc = nc
}
c := make([]float64, mc*ldc)
for i := range c {
c[i] = rnd.Float64()
}
// Compute QR
k := min(ma, na)
tau := make([]float64, k)
work := make([]float64, 1)
impl.Dgeqrf(ma, na, a, lda, tau, work, -1)
work = make([]float64, int(work[0]))
impl.Dgeqrf(ma, na, a, lda, tau, work, len(work))
cCopy := make([]float64, len(c))
copy(cCopy, c)
ans := make([]float64, len(c))
copy(ans, cCopy)
if side == blas.Left {
work = make([]float64, nc)
} else {
work = make([]float64, mc)
}
impl.Dorm2r(side, trans, mc, nc, k, a, lda, tau, ans, ldc, work)
// Make sure Dorm2r and Dormqr match with small work
for i := range work {
work[i] = rnd.Float64()
}
copy(c, cCopy)
impl.Dormqr(side, trans, mc, nc, k, a, lda, tau, c, ldc, work, len(work))
if !floats.EqualApprox(c, ans, 1e-12) {
t.Errorf("Dormqr and Dorm2r mismatch for small work")
}
// Try with the optimum amount of work
copy(c, cCopy)
impl.Dormqr(side, trans, mc, nc, k, a, lda, tau, c, ldc, work, -1)
work = make([]float64, int(work[0]))
for i := range work {
work[i] = rnd.Float64()
}
impl.Dormqr(side, trans, mc, nc, k, a, lda, tau, c, ldc, work, len(work))
if !floats.EqualApprox(c, ans, 1e-12) {
t.Errorf("Dormqr and Dorm2r mismatch for full work")
fmt.Println("ccopy")
for i := 0; i < mc; i++ {
fmt.Println(cCopy[i*ldc : (i+1)*ldc])
}
fmt.Println("ans =")
for i := 0; i < mc; i++ {
fmt.Println(ans[i*ldc : (i+1)*ldc])
}
fmt.Println("c =")
for i := 0; i < mc; i++ {
fmt.Println(c[i*ldc : (i+1)*ldc])
}
}
// Try with amount of work that is less than
// optimal but still long enough to use the
// blocked code.
copy(c, cCopy)
if side == blas.Left {
work = make([]float64, 3*nc)
} else {
work = make([]float64, 3*mc)
}
impl.Dormqr(side, trans, mc, nc, k, a, lda, tau, c, ldc, work, len(work))
if !floats.EqualApprox(c, ans, 1e-12) {
t.Errorf("Dormqr and Dorm2r mismatch for medium work")
}
}
}
}
}
|