Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "gemm_tn_vbatch.cuh"
#include "gemm_nn_vbatch.cuh"
#include "dgemm_vbatch.h"
#include "source_base/module_device/device.h"

void dgemm_nn_vbatch(
int max_m, int max_n, int max_k,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "gint_helper.cuh"
#include <functional>

#include "source_base/module_device/device.h"

#define sA(i, j) sA[(j)*slda + (i)]
#define sB(i, j) sB[(j)*sldb + (i)]
Expand Down Expand Up @@ -424,4 +424,4 @@ void vbatched_gemm_nn_impl(int max_m,
}
}

#endif // GEMM_VBATCH_CUH
#endif // GEMM_VBATCH_CUH
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "gint_helper.cuh"
#include <functional>

#include "source_base/module_device/device.h"

#define sA(i, j) sA[(j)*slda + (i)]
#define sB(i, j) sB[(j)*sldb + (i)]
Expand Down Expand Up @@ -449,4 +449,4 @@ void vbatched_gemm_tn_impl(int max_m,
}
}

#endif // GEMM_TN_VBATCH_CUH
#endif // GEMM_TN_VBATCH_CUH
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "phi_operator_kernel.cuh"
#include "gint_helper.cuh"
#include "sph.cuh"
#include "source_base/module_device/device.h"

namespace ModuleGint
{
Expand Down Expand Up @@ -577,4 +578,4 @@ __global__ void phi_dot_dphi_r_kernel(
}
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "source_psi/psi.h"

#include <thrust/complex.h>
#include "source_base/module_device/device.h"

namespace hamilt
{
Expand Down Expand Up @@ -81,4 +82,4 @@ struct exx_cal_energy_op<std::complex<FPTYPE>, base_device::DEVICE_GPU>

template struct exx_cal_energy_op<std::complex<float>, base_device::DEVICE_GPU>;
template struct exx_cal_energy_op<std::complex<double>, base_device::DEVICE_GPU>;
} // namespace hamilt
} // namespace hamilt
Loading