Skip to content

Commit

Permalink
test [cz]symv and [cz]syr
Browse files Browse the repository at this point in the history
  • Loading branch information
mgates3 committed Nov 6, 2024
1 parent 01873d5 commit 3640355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ def filter_csv( values, csv ):
[ 'hemv', dtype + layout + align + uplo + n + incx + incy ],
[ 'her', dtype + layout + align + uplo + n + incx ],
[ 'her2', dtype + layout + align + uplo + n + incx + incy ],
[ 'symv', dtype_real + layout + align + uplo + n + incx + incy ], # complex is in lapack++
[ 'syr', dtype_real + layout + align + uplo + n + incx ], # complex is in lapack++
[ 'symv', dtype + layout + align + uplo + n + incx + incy ],
[ 'syr', dtype + layout + align + uplo + n + incx ],
[ 'syr2', dtype + layout + align + uplo + n + incx + incy ],
[ 'trmv', dtype + layout + align + uplo + trans + diag + n + incx ],
[ 'trsv', dtype + layout + align + uplo + trans + diag + n + incx ],
Expand Down

0 comments on commit 3640355

Please sign in to comment.