Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEA] Support for half-float mixed precise in brute-force #2382

Merged
merged 20 commits into from
Aug 22, 2024
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
recover the test cases
  • Loading branch information
rhdong committed Jul 17, 2024
commit 3dd5fdf5f5460ee6e513e2ca0cbd8748df3558e9
48 changes: 48 additions & 0 deletions cpp/test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,38 @@ if(BUILD_TESTS)
NAME
LINALG_TEST
PATH
linalg/add.cu
linalg/axpy.cu
linalg/binary_op.cu
linalg/cholesky_r1.cu
linalg/coalesced_reduction.cu
linalg/divide.cu
linalg/dot.cu
linalg/eig.cu
linalg/eig_sel.cu
linalg/gemm_layout.cu
linalg/gemv.cu
linalg/map.cu
linalg/map_then_reduce.cu
linalg/matrix_vector.cu
linalg/matrix_vector_op.cu
linalg/mean_squared_error.cu
linalg/multiply.cu
linalg/norm.cu
linalg/normalize.cu
linalg/power.cu
linalg/randomized_svd.cu
linalg/reduce.cu
linalg/reduce_cols_by_key.cu
linalg/reduce_rows_by_key.cu
linalg/rsvd.cu
linalg/sqrt.cu
linalg/strided_reduction.cu
linalg/subtract.cu
linalg/svd.cu
linalg/ternary_op.cu
linalg/transpose.cu
linalg/unary_op.cu
)

ConfigureTest(
Expand Down Expand Up @@ -278,7 +309,24 @@ if(BUILD_TESTS)
NAME
SPARSE_TEST
PATH
sparse/add.cu
sparse/convert_coo.cu
sparse/convert_csr.cu
sparse/csr_row_slice.cu
sparse/csr_to_dense.cu
sparse/csr_transpose.cu
sparse/degree.cu
sparse/filter.cu
sparse/norm.cu
sparse/normalize.cu
sparse/reduce.cu
sparse/row_op.cu
sparse/sddmm.cu
sparse/select_k_csr.cu
sparse/sort.cu
sparse/spgemmi.cu
sparse/spmm.cu
sparse/symmetrize.cu
)

ConfigureTest(
Expand Down
Loading