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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
|
// Copyright ©2013 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 mat
import (
"fmt"
"math"
"reflect"
"testing"
"golang.org/x/exp/rand"
"gonum.org/v1/gonum/blas"
"gonum.org/v1/gonum/blas/blas64"
"gonum.org/v1/gonum/floats/scalar"
)
func panics(fn func()) (panicked bool, message string) {
defer func() {
r := recover()
panicked = r != nil
message = fmt.Sprint(r)
}()
fn()
return
}
func flatten(f [][]float64) (r, c int, d []float64) {
r = len(f)
if r == 0 {
panic("bad test: no row")
}
c = len(f[0])
d = make([]float64, 0, r*c)
for _, row := range f {
if len(row) != c {
panic("bad test: ragged input")
}
d = append(d, row...)
}
return r, c, d
}
func unflatten(r, c int, d []float64) [][]float64 {
m := make([][]float64, r)
for i := 0; i < r; i++ {
m[i] = d[i*c : (i+1)*c]
}
return m
}
// eye returns a new identity matrix of size n×n.
func eye(n int) *Dense {
d := make([]float64, n*n)
for i := 0; i < n*n; i += n + 1 {
d[i] = 1
}
return NewDense(n, n, d)
}
func TestCol(t *testing.T) {
t.Parallel()
for id, af := range [][][]float64{
{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
},
{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
{10, 11, 12},
},
{
{1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 12},
},
} {
a := NewDense(flatten(af))
col := make([]float64, a.mat.Rows)
for j := range af[0] {
for i := range col {
col[i] = float64(i*a.mat.Cols + j + 1)
}
if got := Col(nil, j, a); !reflect.DeepEqual(got, col) {
t.Errorf("test %d: unexpected values returned for dense col %d: got: %v want: %v",
id, j, got, col)
}
got := make([]float64, a.mat.Rows)
if Col(got, j, a); !reflect.DeepEqual(got, col) {
t.Errorf("test %d: unexpected values filled for dense col %d: got: %v want: %v",
id, j, got, col)
}
}
}
denseComparison := func(a *Dense) interface{} {
r, c := a.Dims()
ans := make([][]float64, c)
for j := range ans {
ans[j] = make([]float64, r)
for i := range ans[j] {
ans[j][i] = a.At(i, j)
}
}
return ans
}
f := func(a Matrix) interface{} {
_, c := a.Dims()
ans := make([][]float64, c)
for j := range ans {
ans[j] = Col(nil, j, a)
}
return ans
}
testOneInputFunc(t, "Col", f, denseComparison, sameAnswerF64SliceOfSlice, isAnyType, isAnySize)
f = func(a Matrix) interface{} {
r, c := a.Dims()
ans := make([][]float64, c)
for j := range ans {
ans[j] = make([]float64, r)
Col(ans[j], j, a)
}
return ans
}
testOneInputFunc(t, "Col", f, denseComparison, sameAnswerF64SliceOfSlice, isAnyType, isAnySize)
}
func TestRow(t *testing.T) {
t.Parallel()
for id, af := range [][][]float64{
{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
},
{
{1, 2, 3},
{4, 5, 6},
{7, 8, 9},
{10, 11, 12},
},
{
{1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 12},
},
} {
a := NewDense(flatten(af))
for i, row := range af {
if got := Row(nil, i, a); !reflect.DeepEqual(got, row) {
t.Errorf("test %d: unexpected values returned for dense row %d: got: %v want: %v",
id, i, got, row)
}
got := make([]float64, len(row))
if Row(got, i, a); !reflect.DeepEqual(got, row) {
t.Errorf("test %d: unexpected values filled for dense row %d: got: %v want: %v",
id, i, got, row)
}
}
}
denseComparison := func(a *Dense) interface{} {
r, c := a.Dims()
ans := make([][]float64, r)
for i := range ans {
ans[i] = make([]float64, c)
for j := range ans[i] {
ans[i][j] = a.At(i, j)
}
}
return ans
}
f := func(a Matrix) interface{} {
r, _ := a.Dims()
ans := make([][]float64, r)
for i := range ans {
ans[i] = Row(nil, i, a)
}
return ans
}
testOneInputFunc(t, "Row", f, denseComparison, sameAnswerF64SliceOfSlice, isAnyType, isAnySize)
f = func(a Matrix) interface{} {
r, c := a.Dims()
ans := make([][]float64, r)
for i := range ans {
ans[i] = make([]float64, c)
Row(ans[i], i, a)
}
return ans
}
testOneInputFunc(t, "Row", f, denseComparison, sameAnswerF64SliceOfSlice, isAnyType, isAnySize)
}
func TestCond(t *testing.T) {
t.Parallel()
for i, test := range []struct {
a *Dense
condOne float64
condTwo float64
condInf float64
}{
{
a: NewDense(3, 3, []float64{
8, 1, 6,
3, 5, 7,
4, 9, 2,
}),
condOne: 16.0 / 3.0,
condTwo: 4.330127018922192,
condInf: 16.0 / 3.0,
},
{
a: NewDense(4, 4, []float64{
2, 9, 3, 2,
10, 9, 9, 3,
1, 1, 5, 2,
8, 4, 10, 2,
}),
condOne: 1 / 0.024740155174938,
condTwo: 34.521576567075087,
condInf: 1 / 0.012034465570035,
},
{
a: NewDense(3, 3, []float64{
5, 6, 7,
8, -2, 1,
7, 7, 7}),
condOne: 30.769230769230749,
condTwo: 21.662689498448440,
condInf: 31.153846153846136,
},
} {
orig := DenseCopyOf(test.a)
condOne := Cond(test.a, 1)
if !scalar.EqualWithinAbsOrRel(test.condOne, condOne, 1e-13, 1e-13) {
t.Errorf("Case %d: one norm mismatch. Want %v, got %v", i, test.condOne, condOne)
}
if !Equal(test.a, orig) {
t.Errorf("Case %d: unexpected mutation of input matrix for one norm. Want %v, got %v", i, orig, test.a)
}
condTwo := Cond(test.a, 2)
if !scalar.EqualWithinAbsOrRel(test.condTwo, condTwo, 1e-13, 1e-13) {
t.Errorf("Case %d: two norm mismatch. Want %v, got %v", i, test.condTwo, condTwo)
}
if !Equal(test.a, orig) {
t.Errorf("Case %d: unexpected mutation of input matrix for two norm. Want %v, got %v", i, orig, test.a)
}
condInf := Cond(test.a, math.Inf(1))
if !scalar.EqualWithinAbsOrRel(test.condInf, condInf, 1e-13, 1e-13) {
t.Errorf("Case %d: inf norm mismatch. Want %v, got %v", i, test.condInf, condInf)
}
if !Equal(test.a, orig) {
t.Errorf("Case %d: unexpected mutation of input matrix for inf norm. Want %v, got %v", i, orig, test.a)
}
}
for _, test := range []struct {
name string
norm float64
}{
{
name: "CondOne",
norm: 1,
},
{
name: "CondTwo",
norm: 2,
},
{
name: "CondInf",
norm: math.Inf(1),
},
} {
f := func(a Matrix) interface{} {
return Cond(a, test.norm)
}
denseComparison := func(a *Dense) interface{} {
return Cond(a, test.norm)
}
testOneInputFunc(t, test.name, f, denseComparison, sameAnswerFloatApproxTol(1e-12), isAnyType, isAnySize)
}
}
func TestDet(t *testing.T) {
t.Parallel()
for c, test := range []struct {
a *Dense
ans float64
}{
{
a: NewDense(2, 2, []float64{1, 0, 0, 1}),
ans: 1,
},
{
a: NewDense(2, 2, []float64{1, 0, 0, -1}),
ans: -1,
},
{
a: NewDense(3, 3, []float64{
1, 2, 0,
0, 1, 2,
0, 2, 1,
}),
ans: -3,
},
{
a: NewDense(3, 3, []float64{
1, 2, 3,
5, 7, 9,
6, 9, 12,
}),
ans: 0,
},
} {
a := DenseCopyOf(test.a)
det := Det(a)
if !Equal(a, test.a) {
t.Errorf("Input matrix changed during Det. Case %d.", c)
}
if !scalar.EqualWithinAbsOrRel(det, test.ans, 1e-14, 1e-14) {
t.Errorf("Det mismatch case %d. Got %v, want %v", c, det, test.ans)
}
}
// Perform the normal list test to ensure it works for all types.
f := func(a Matrix) interface{} {
return Det(a)
}
denseComparison := func(a *Dense) interface{} {
return Det(a)
}
testOneInputFunc(t, "Det", f, denseComparison, sameAnswerFloatApproxTol(1e-12), isAnyType, isSquare)
// Check that it gives approximately the same answer as Cholesky
// Ensure the input matrices are wider than tall so they are full rank
isWide := func(ar, ac int) bool {
return ar <= ac
}
f = func(a Matrix) interface{} {
ar, ac := a.Dims()
if !isWide(ar, ac) {
panic(ErrShape)
}
var tmp Dense
tmp.Mul(a, a.T())
return Det(&tmp)
}
denseComparison = func(a *Dense) interface{} {
ar, ac := a.Dims()
if !isWide(ar, ac) {
panic(ErrShape)
}
var tmp SymDense
tmp.SymOuterK(1, a)
var chol Cholesky
ok := chol.Factorize(&tmp)
if !ok {
panic("bad chol test")
}
return chol.Det()
}
testOneInputFunc(t, "DetVsChol", f, denseComparison, sameAnswerFloatApproxTol(1e-10), isAnyType, isWide)
}
func TestDot(t *testing.T) {
t.Parallel()
f := func(a, b Matrix) interface{} {
return Dot(a.(Vector), b.(Vector))
}
denseComparison := func(a, b *Dense) interface{} {
ra, ca := a.Dims()
rb, cb := b.Dims()
if ra != rb || ca != cb {
panic(ErrShape)
}
var sum float64
for i := 0; i < ra; i++ {
for j := 0; j < ca; j++ {
sum += a.At(i, j) * b.At(i, j)
}
}
return sum
}
testTwoInputFunc(t, "Dot", f, denseComparison, sameAnswerFloatApproxTol(1e-12), legalTypesVectorVector, legalSizeSameVec)
}
func TestEqual(t *testing.T) {
t.Parallel()
f := func(a, b Matrix) interface{} {
return Equal(a, b)
}
denseComparison := func(a, b *Dense) interface{} {
return Equal(a, b)
}
testTwoInputFunc(t, "Equal", f, denseComparison, sameAnswerBool, legalTypesAll, isAnySize2)
}
func TestMax(t *testing.T) {
t.Parallel()
// A direct test of Max with *Dense arguments is in TestNewDense.
f := func(a Matrix) interface{} {
return Max(a)
}
denseComparison := func(a *Dense) interface{} {
return Max(a)
}
testOneInputFunc(t, "Max", f, denseComparison, sameAnswerFloat, isAnyType, isAnySize)
}
func TestMin(t *testing.T) {
t.Parallel()
// A direct test of Min with *Dense arguments is in TestNewDense.
f := func(a Matrix) interface{} {
return Min(a)
}
denseComparison := func(a *Dense) interface{} {
return Min(a)
}
testOneInputFunc(t, "Min", f, denseComparison, sameAnswerFloat, isAnyType, isAnySize)
}
func TestNorm(t *testing.T) {
t.Parallel()
for i, test := range []struct {
a [][]float64
ord float64
norm float64
}{
{
a: [][]float64{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}},
ord: 1,
norm: 30,
},
{
a: [][]float64{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}},
ord: 2,
norm: 25.495097567963924,
},
{
a: [][]float64{{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}},
ord: math.Inf(1),
norm: 33,
},
{
a: [][]float64{{1, -2, -2}, {-4, 5, 6}},
ord: 1,
norm: 8,
},
{
a: [][]float64{{1, -2, -2}, {-4, 5, 6}},
ord: math.Inf(1),
norm: 15,
},
} {
a := NewDense(flatten(test.a))
if math.Abs(Norm(a, test.ord)-test.norm) > 1e-14 {
t.Errorf("Mismatch test %d: %v norm = %f", i, test.a, test.norm)
}
}
for _, test := range []struct {
name string
norm float64
}{
{"NormOne", 1},
{"NormTwo", 2},
{"NormInf", math.Inf(1)},
} {
f := func(a Matrix) interface{} {
return Norm(a, test.norm)
}
denseComparison := func(a *Dense) interface{} {
return Norm(a, test.norm)
}
testOneInputFunc(t, test.name, f, denseComparison, sameAnswerFloatApproxTol(1e-12), isAnyType, isAnySize)
}
}
func TestNormZero(t *testing.T) {
t.Parallel()
for _, a := range []Matrix{
&Dense{},
&SymDense{},
&SymDense{mat: blas64.Symmetric{Uplo: blas.Upper}},
&TriDense{},
&TriDense{mat: blas64.Triangular{Uplo: blas.Upper, Diag: blas.NonUnit}},
&VecDense{},
} {
for _, norm := range []float64{1, 2, math.Inf(1)} {
panicked, message := panics(func() { Norm(a, norm) })
if !panicked {
t.Errorf("expected panic for Norm(&%T{}, %v)", a, norm)
}
if message != ErrZeroLength.Error() {
t.Errorf("unexpected panic string for Norm(&%T{}, %v): got:%s want:%s",
a, norm, message, ErrShape.Error())
}
}
}
}
func TestSum(t *testing.T) {
t.Parallel()
f := func(a Matrix) interface{} {
return Sum(a)
}
denseComparison := func(a *Dense) interface{} {
return Sum(a)
}
testOneInputFunc(t, "Sum", f, denseComparison, sameAnswerFloatApproxTol(1e-12), isAnyType, isAnySize)
}
func TestTrace(t *testing.T) {
t.Parallel()
for _, test := range []struct {
a *Dense
trace float64
}{
{
a: NewDense(3, 3, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9}),
trace: 15,
},
} {
trace := Trace(test.a)
if trace != test.trace {
t.Errorf("Trace mismatch. Want %v, got %v", test.trace, trace)
}
}
f := func(a Matrix) interface{} {
return Trace(a)
}
denseComparison := func(a *Dense) interface{} {
return Trace(a)
}
testOneInputFunc(t, "Trace", f, denseComparison, sameAnswerFloatApproxTol(1e-15), isAnyType, isSquare)
}
func TestTracer(t *testing.T) {
t.Parallel()
for _, test := range []struct {
a Tracer
want float64
}{
{
a: NewDense(3, 3, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9}),
want: 15,
},
{
a: NewSymDense(4, []float64{1, 2, 3, 4, 0, 5, 6, 7, 0, 0, 8, 9, 0, 0, 0, 10}),
want: 24,
},
{
a: NewBandDense(6, 6, 1, 2, []float64{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 0, 19, 20, 0, 0}),
want: 65,
},
{
a: NewDiagDense(6, []float64{1, 2, 3, 4, 5, 6}),
want: 21,
},
{
a: NewSymBandDense(6, 2, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 15, 0, 0}),
want: 50,
},
{
a: NewTriBandDense(6, 2, Upper, []float64{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 0, 15, 0, 0}),
want: 50,
},
{
a: NewTriBandDense(6, 2, Lower, []float64{0, 0, 1, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}),
want: 46,
},
} {
got := test.a.Trace()
if got != test.want {
t.Errorf("Trace mismatch. Want %v, got %v", test.want, got)
}
}
}
func TestDoer(t *testing.T) {
t.Parallel()
type MatrixDoer interface {
Matrix
NonZeroDoer
RowNonZeroDoer
ColNonZeroDoer
}
ones := func(n int) []float64 {
data := make([]float64, n)
for i := range data {
data[i] = 1
}
return data
}
for i, m := range []MatrixDoer{
NewTriDense(3, Lower, ones(3*3)),
NewTriDense(3, Upper, ones(3*3)),
NewBandDense(6, 6, 1, 1, ones(3*6)),
NewBandDense(6, 10, 1, 1, ones(3*6)),
NewBandDense(10, 6, 1, 1, ones(7*3)),
NewSymBandDense(3, 0, ones(3)),
NewSymBandDense(3, 1, ones(3*(1+1))),
NewSymBandDense(6, 1, ones(6*(1+1))),
NewSymBandDense(6, 2, ones(6*(2+1))),
NewTriBandDense(3, 0, Upper, ones(3)),
NewTriBandDense(3, 1, Upper, ones(3*(1+1))),
NewTriBandDense(6, 1, Upper, ones(6*(1+1))),
NewTriBandDense(6, 2, Upper, ones(6*(2+1))),
NewTriBandDense(3, 0, Lower, ones(3)),
NewTriBandDense(3, 1, Lower, ones(3*(1+1))),
NewTriBandDense(6, 1, Lower, ones(6*(1+1))),
NewTriBandDense(6, 2, Lower, ones(6*(2+1))),
NewTridiag(1, nil, ones(1), nil),
NewTridiag(2, ones(1), ones(2), ones(1)),
NewTridiag(3, ones(2), ones(3), ones(2)),
NewTridiag(4, ones(3), ones(4), ones(3)),
NewTridiag(7, ones(6), ones(7), ones(6)),
NewTridiag(10, ones(9), ones(10), ones(9)),
} {
r, c := m.Dims()
want := Sum(m)
// got and fn sum the accessed elements in
// the Doer that is being operated on.
// fn also tests that the accessed elements
// are within the writable areas of the
// matrix to check that only valid elements
// are operated on.
var got float64
fn := func(i, j int, v float64) {
got += v
switch m := m.(type) {
case MutableTriangular:
m.SetTri(i, j, v)
case MutableBanded:
m.SetBand(i, j, v)
case MutableSymBanded:
m.SetSymBand(i, j, v)
case MutableTriBanded:
m.SetTriBand(i, j, v)
default:
panic("bad test: need mutable type")
}
}
panicked, message := panics(func() { m.DoNonZero(fn) })
if panicked {
t.Errorf("unexpected panic for Doer test %d: %q", i, message)
continue
}
if got != want {
t.Errorf("unexpected Doer sum: got:%f want:%f", got, want)
}
// Reset got for testing with DoRowNonZero.
got = 0
panicked, message = panics(func() {
for i := 0; i < r; i++ {
m.DoRowNonZero(i, fn)
}
})
if panicked {
t.Errorf("unexpected panic for RowDoer test %d: %q", i, message)
continue
}
if got != want {
t.Errorf("unexpected RowDoer sum: got:%f want:%f", got, want)
}
// Reset got for testing with DoColNonZero.
got = 0
panicked, message = panics(func() {
for j := 0; j < c; j++ {
m.DoColNonZero(j, fn)
}
})
if panicked {
t.Errorf("unexpected panic for ColDoer test %d: %q", i, message)
continue
}
if got != want {
t.Errorf("unexpected ColDoer sum: got:%f want:%f", got, want)
}
}
}
func TestMulVecToer(t *testing.T) {
t.Parallel()
const tol = 1e-14
rnd := rand.New(rand.NewSource(1))
random := func(n int) []float64 {
d := make([]float64, n)
for i := range d {
d[i] = rnd.NormFloat64()
}
return d
}
type mulVecToer interface {
Matrix
MulVecTo(*VecDense, bool, Vector)
}
for _, a := range []mulVecToer{
NewBandDense(1, 1, 0, 0, random(1)),
NewBandDense(3, 1, 0, 0, random(1)),
NewBandDense(3, 1, 1, 0, random(4)),
NewBandDense(1, 3, 0, 0, random(1)),
NewBandDense(1, 3, 0, 1, random(2)),
NewBandDense(7, 10, 0, 0, random(7)),
NewBandDense(7, 10, 2, 3, random(42)),
NewBandDense(10, 7, 0, 0, random(7)),
NewBandDense(10, 7, 2, 3, random(54)),
NewBandDense(10, 10, 0, 0, random(10)),
NewBandDense(10, 10, 2, 3, random(60)),
NewSymBandDense(1, 0, random(1)),
NewSymBandDense(3, 0, random(3)),
NewSymBandDense(3, 1, random(6)),
NewSymBandDense(10, 0, random(10)),
NewSymBandDense(10, 1, random(20)),
NewSymBandDense(10, 4, random(50)),
NewTridiag(1, nil, random(1), nil),
NewTridiag(2, random(1), random(2), random(1)),
NewTridiag(3, random(2), random(3), random(2)),
NewTridiag(4, random(3), random(4), random(3)),
NewTridiag(7, random(6), random(7), random(6)),
NewTridiag(10, random(9), random(10), random(9)),
} {
// Dense copy of A used for computing the expected result.
var aDense Dense
aDense.CloneFrom(a)
r, c := a.Dims()
for _, trans := range []bool{false, true} {
m, n := r, c
if trans {
m, n = c, r
}
for _, dst := range []*VecDense{
new(VecDense),
NewVecDense(m, random(m)),
} {
for xType := 0; xType <= 3; xType++ {
var x Vector
switch xType {
case 0:
x = NewVecDense(n, random(n))
case 1:
if m != n {
continue
}
x = dst
case 2:
x = &rawVector{asBasicVector(NewVecDense(n, random(n)))}
case 3:
x = asBasicVector(NewVecDense(n, random(n)))
default:
panic("bad xType")
}
var want VecDense
if !trans {
want.MulVec(&aDense, x)
} else {
want.MulVec(aDense.T(), x)
}
a.MulVecTo(dst, trans, x)
var diff VecDense
diff.SubVec(dst, &want)
if resid := Norm(&diff, 1); resid > tol*float64(m) {
t.Errorf("r=%d,c=%d,trans=%t,xType=%d: unexpected result; resid=%v, want<=%v",
r, c, trans, xType, resid, tol*float64(m))
}
}
}
}
}
}
|