mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-12-26 14:20:31 +01:00
CUDA: fix misaligned shared memory read (#8123)
This commit is contained in:
parent
494165f3b6
commit
c8771ab5f8
@ -23,7 +23,7 @@ struct mma_int_A_I16K4 {
|
|||||||
|
|
||||||
__device__ __forceinline__ void load(const int * __restrict__ xs0, const int & stride) {
|
__device__ __forceinline__ void load(const int * __restrict__ xs0, const int & stride) {
|
||||||
#if defined(INT8_MMA_AVAILABLE)
|
#if defined(INT8_MMA_AVAILABLE)
|
||||||
const int * xs = xs0 + (threadIdx.x%I)*stride + (threadIdx.x/I)*(K/2);
|
const int * xs = xs0 + (threadIdx.x%I)*stride;
|
||||||
asm("ldmatrix.sync.aligned.m8n8.x2.b16 {%0, %1}, [%2];"
|
asm("ldmatrix.sync.aligned.m8n8.x2.b16 {%0, %1}, [%2];"
|
||||||
: "+r"(x[0]), "+r"(x[1])
|
: "+r"(x[0]), "+r"(x[1])
|
||||||
: "l"(xs));
|
: "l"(xs));
|
||||||
|
Loading…
Reference in New Issue
Block a user