Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ endif()
# Use DSP hardware
if (USE_DSP)
set(USE_ELPA OFF)
set(ENABLE_LCAO OFF)
set(ABACUS_BIN_NAME abacus_dsp)
endif()

Expand Down
2 changes: 2 additions & 0 deletions source/source_base/kernels/math_kernel_op.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@ template struct matrix_mul_vector_op<std::complex<double>, base_device::DEVICE_C
template struct matrixTranspose_op<double, base_device::DEVICE_CPU>;
#endif
#ifdef __DSP
template struct gemm_op_mt<float, base_device::DEVICE_CPU>;
template struct gemm_op_mt<double, base_device::DEVICE_CPU>;
template struct gemv_op_mt<std::complex<float>, base_device::DEVICE_CPU>;
template struct gemv_op_mt<std::complex<double>, base_device::DEVICE_CPU>;
template struct gemm_op_mt<std::complex<float>, base_device::DEVICE_CPU>;
Expand Down
Loading