github.com/gonum/lapack@v0.0.0-20181123203213-e4cdc5a0bff9/native/lapack_test.go (about) 1 // Copyright ©2015 The gonum Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package native 6 7 import ( 8 "testing" 9 10 "github.com/gonum/lapack/testlapack" 11 ) 12 13 var impl = Implementation{} 14 15 func TestDbdsqr(t *testing.T) { 16 testlapack.DbdsqrTest(t, impl) 17 } 18 19 func TestDhseqr(t *testing.T) { 20 testlapack.DhseqrTest(t, impl) 21 } 22 23 func TestDgebak(t *testing.T) { 24 testlapack.DgebakTest(t, impl) 25 } 26 27 func TestDgebal(t *testing.T) { 28 testlapack.DgebalTest(t, impl) 29 } 30 31 func TestDgebd2(t *testing.T) { 32 testlapack.Dgebd2Test(t, impl) 33 } 34 35 func TestDgebrd(t *testing.T) { 36 testlapack.DgebrdTest(t, impl) 37 } 38 39 func TestDgecon(t *testing.T) { 40 testlapack.DgeconTest(t, impl) 41 } 42 43 func TestDgeev(t *testing.T) { 44 testlapack.DgeevTest(t, impl) 45 } 46 47 func TestDgehd2(t *testing.T) { 48 testlapack.Dgehd2Test(t, impl) 49 } 50 51 func TestDgehrd(t *testing.T) { 52 testlapack.DgehrdTest(t, impl) 53 } 54 55 func TestDgelqf(t *testing.T) { 56 testlapack.DgelqfTest(t, impl) 57 } 58 59 func TestDgelq2(t *testing.T) { 60 testlapack.Dgelq2Test(t, impl) 61 } 62 63 func TestDgeql2(t *testing.T) { 64 testlapack.Dgeql2Test(t, impl) 65 } 66 67 func TestDgels(t *testing.T) { 68 testlapack.DgelsTest(t, impl) 69 } 70 71 func TestDgerq2(t *testing.T) { 72 testlapack.Dgerq2Test(t, impl) 73 } 74 75 func TestDgeqp3(t *testing.T) { 76 testlapack.Dgeqp3Test(t, impl) 77 } 78 79 func TestDgeqr2(t *testing.T) { 80 testlapack.Dgeqr2Test(t, impl) 81 } 82 83 func TestDgeqrf(t *testing.T) { 84 testlapack.DgeqrfTest(t, impl) 85 } 86 87 func TestDgerqf(t *testing.T) { 88 testlapack.DgerqfTest(t, impl) 89 } 90 91 func TestDgesvd(t *testing.T) { 92 testlapack.DgesvdTest(t, impl) 93 } 94 95 func TestDgetri(t *testing.T) { 96 testlapack.DgetriTest(t, impl) 97 } 98 99 func TestDgetf2(t *testing.T) { 100 testlapack.Dgetf2Test(t, impl) 101 } 102 103 func TestDgetrf(t *testing.T) { 104 testlapack.DgetrfTest(t, impl) 105 } 106 107 func TestDgetrs(t *testing.T) { 108 testlapack.DgetrsTest(t, impl) 109 } 110 111 func TestDggsvd3(t *testing.T) { 112 testlapack.Dggsvd3Test(t, impl) 113 } 114 115 func TestDggsvp3(t *testing.T) { 116 testlapack.Dggsvp3Test(t, impl) 117 } 118 119 func TestDlabrd(t *testing.T) { 120 testlapack.DlabrdTest(t, impl) 121 } 122 123 func TestDlacn2(t *testing.T) { 124 testlapack.Dlacn2Test(t, impl) 125 } 126 127 func TestDlacpy(t *testing.T) { 128 testlapack.DlacpyTest(t, impl) 129 } 130 131 func TestDlae2(t *testing.T) { 132 testlapack.Dlae2Test(t, impl) 133 } 134 135 func TestDlaev2(t *testing.T) { 136 testlapack.Dlaev2Test(t, impl) 137 } 138 139 func TestDlaexc(t *testing.T) { 140 testlapack.DlaexcTest(t, impl) 141 } 142 143 func TestDlags2(t *testing.T) { 144 testlapack.Dlags2Test(t, impl) 145 } 146 147 func TestDlahqr(t *testing.T) { 148 testlapack.DlahqrTest(t, impl) 149 } 150 151 func TestDlahr2(t *testing.T) { 152 testlapack.Dlahr2Test(t, impl) 153 } 154 155 func TestDlaln2(t *testing.T) { 156 testlapack.Dlaln2Test(t, impl) 157 } 158 159 func TestDlange(t *testing.T) { 160 testlapack.DlangeTest(t, impl) 161 } 162 163 func TestDlapy2(t *testing.T) { 164 testlapack.Dlapy2Test(t, impl) 165 } 166 167 func TestDlapll(t *testing.T) { 168 testlapack.DlapllTest(t, impl) 169 } 170 171 func TestDlapmt(t *testing.T) { 172 testlapack.DlapmtTest(t, impl) 173 } 174 175 func TestDlas2(t *testing.T) { 176 testlapack.Dlas2Test(t, impl) 177 } 178 179 func TestDlascl(t *testing.T) { 180 testlapack.DlasclTest(t, impl) 181 } 182 183 func TestDlaset(t *testing.T) { 184 testlapack.DlasetTest(t, impl) 185 } 186 187 func TestDlasrt(t *testing.T) { 188 testlapack.DlasrtTest(t, impl) 189 } 190 191 func TestDlaswp(t *testing.T) { 192 testlapack.DlaswpTest(t, impl) 193 } 194 195 func TestDlasy2(t *testing.T) { 196 testlapack.Dlasy2Test(t, impl) 197 } 198 199 func TestDlanst(t *testing.T) { 200 testlapack.DlanstTest(t, impl) 201 } 202 203 func TestDlansy(t *testing.T) { 204 testlapack.DlansyTest(t, impl) 205 } 206 207 func TestDlantr(t *testing.T) { 208 testlapack.DlantrTest(t, impl) 209 } 210 211 func TestDlanv2(t *testing.T) { 212 testlapack.Dlanv2Test(t, impl) 213 } 214 215 func TestDlaqr04(t *testing.T) { 216 testlapack.Dlaqr04Test(t, impl) 217 } 218 219 func TestDlaqp2(t *testing.T) { 220 testlapack.Dlaqp2Test(t, impl) 221 } 222 223 func TestDlaqps(t *testing.T) { 224 testlapack.DlaqpsTest(t, impl) 225 } 226 227 func TestDlaqr1(t *testing.T) { 228 testlapack.Dlaqr1Test(t, impl) 229 } 230 231 func TestDlaqr23(t *testing.T) { 232 testlapack.Dlaqr23Test(t, impl) 233 } 234 235 func TestDlaqr5(t *testing.T) { 236 testlapack.Dlaqr5Test(t, impl) 237 } 238 239 func TestDlarf(t *testing.T) { 240 testlapack.DlarfTest(t, impl) 241 } 242 243 func TestDlarfb(t *testing.T) { 244 testlapack.DlarfbTest(t, impl) 245 } 246 247 func TestDlarfg(t *testing.T) { 248 testlapack.DlarfgTest(t, impl) 249 } 250 251 func TestDlarft(t *testing.T) { 252 testlapack.DlarftTest(t, impl) 253 } 254 255 func TestDlarfx(t *testing.T) { 256 testlapack.DlarfxTest(t, impl) 257 } 258 259 func TestDlartg(t *testing.T) { 260 testlapack.DlartgTest(t, impl) 261 } 262 263 func TestDlasq1(t *testing.T) { 264 testlapack.Dlasq1Test(t, impl) 265 } 266 267 func TestDlasq2(t *testing.T) { 268 testlapack.Dlasq2Test(t, impl) 269 } 270 271 func TestDlasq3(t *testing.T) { 272 testlapack.Dlasq3Test(t, impl) 273 } 274 275 func TestDlasq4(t *testing.T) { 276 testlapack.Dlasq4Test(t, impl) 277 } 278 279 func TestDlasq5(t *testing.T) { 280 testlapack.Dlasq5Test(t, impl) 281 } 282 283 func TestDlasr(t *testing.T) { 284 testlapack.DlasrTest(t, impl) 285 } 286 287 func TestDlasv2(t *testing.T) { 288 testlapack.Dlasv2Test(t, impl) 289 } 290 291 func TestDlatrd(t *testing.T) { 292 testlapack.DlatrdTest(t, impl) 293 } 294 295 func TestDlatrs(t *testing.T) { 296 testlapack.DlatrsTest(t, impl) 297 } 298 299 func TestDorg2r(t *testing.T) { 300 testlapack.Dorg2rTest(t, impl) 301 } 302 303 func TestDorgbr(t *testing.T) { 304 testlapack.DorgbrTest(t, impl) 305 } 306 307 func TestDorghr(t *testing.T) { 308 testlapack.DorghrTest(t, impl) 309 } 310 311 func TestDorg2l(t *testing.T) { 312 testlapack.Dorg2lTest(t, impl) 313 } 314 315 func TestDorgl2(t *testing.T) { 316 testlapack.Dorgl2Test(t, impl) 317 } 318 319 func TestDorglq(t *testing.T) { 320 testlapack.DorglqTest(t, impl) 321 } 322 323 func TestDorgql(t *testing.T) { 324 testlapack.DorgqlTest(t, impl) 325 } 326 327 func TestDorgqr(t *testing.T) { 328 testlapack.DorgqrTest(t, impl) 329 } 330 331 func TestDorgtr(t *testing.T) { 332 testlapack.DorgtrTest(t, impl) 333 } 334 335 func TestDormbr(t *testing.T) { 336 testlapack.DormbrTest(t, impl) 337 } 338 339 func TestDormhr(t *testing.T) { 340 testlapack.DormhrTest(t, impl) 341 } 342 343 func TestDorml2(t *testing.T) { 344 testlapack.Dorml2Test(t, impl) 345 } 346 347 func TestDormlq(t *testing.T) { 348 testlapack.DormlqTest(t, impl) 349 } 350 351 func TestDormqr(t *testing.T) { 352 testlapack.DormqrTest(t, impl) 353 } 354 355 func TestDormr2(t *testing.T) { 356 testlapack.Dormr2Test(t, impl) 357 } 358 359 func TestDorm2r(t *testing.T) { 360 testlapack.Dorm2rTest(t, impl) 361 } 362 363 func TestDpocon(t *testing.T) { 364 testlapack.DpoconTest(t, impl) 365 } 366 367 func TestDpotf2(t *testing.T) { 368 testlapack.Dpotf2Test(t, impl) 369 } 370 371 func TestDpotrf(t *testing.T) { 372 testlapack.DpotrfTest(t, impl) 373 } 374 375 func TestDrscl(t *testing.T) { 376 testlapack.DrsclTest(t, impl) 377 } 378 379 func TestDsteqr(t *testing.T) { 380 testlapack.DsteqrTest(t, impl) 381 } 382 383 func TestDsterf(t *testing.T) { 384 testlapack.DsterfTest(t, impl) 385 } 386 387 func TestDsyev(t *testing.T) { 388 testlapack.DsyevTest(t, impl) 389 } 390 391 func TestDsytd2(t *testing.T) { 392 testlapack.Dsytd2Test(t, impl) 393 } 394 395 func TestDsytrd(t *testing.T) { 396 testlapack.DsytrdTest(t, impl) 397 } 398 399 func TestDtgsja(t *testing.T) { 400 testlapack.DtgsjaTest(t, impl) 401 } 402 403 func TestDtrcon(t *testing.T) { 404 testlapack.DtrconTest(t, impl) 405 } 406 407 func TestDtrevc3(t *testing.T) { 408 testlapack.Dtrevc3Test(t, impl) 409 } 410 411 func TestDtrexc(t *testing.T) { 412 testlapack.DtrexcTest(t, impl) 413 } 414 415 func TestDtrti2(t *testing.T) { 416 testlapack.Dtrti2Test(t, impl) 417 } 418 419 func TestDtrtri(t *testing.T) { 420 testlapack.DtrtriTest(t, impl) 421 } 422 423 func TestIladlc(t *testing.T) { 424 testlapack.IladlcTest(t, impl) 425 } 426 427 func TestIladlr(t *testing.T) { 428 testlapack.IladlrTest(t, impl) 429 }