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
2 changes: 1 addition & 1 deletion source/source_lcao/module_gint/kernel/gemm_nn_vbatch.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ static __global__ void vbatched_gemm_nn_kernel(const int* M,
const int* global_ldc,
const T* alpha)
{
extern __shared__ __align__(sizeof(T)) unsigned char smem[];
extern __shared__ __align__(sizeof(double)) unsigned char smem[];
T* shared_mem = reinterpret_cast<T*>(smem);

int batchid = blockIdx.z;
Expand Down
2 changes: 1 addition & 1 deletion source/source_lcao/module_gint/kernel/gemm_tn_vbatch.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ static __global__ void vbatched_gemm_nt_kernel(const int* M,
const int* global_ldc,
const T* alpha)
{
extern __shared__ __align__(sizeof(T)) unsigned char smem[];
extern __shared__ __align__(sizeof(double)) unsigned char smem[];
T* shared_mem = reinterpret_cast<T*>(smem);

int batchid = blockIdx.z;
Expand Down
Loading