mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-05 00:04:36 +00:00
77 lines
2.4 KiB
Plaintext
77 lines
2.4 KiB
Plaintext
/**
|
|
* Copyright (c) 2023 Nomic, Inc. All rights reserved.
|
|
*
|
|
* This software is licensed under the terms of the Software for Open Models
|
|
* License (SOM), version 1.0, as detailed in the LICENSE_SOM.txt file. A copy
|
|
* of this license should accompany this software. Except as expressly granted
|
|
* in the SOM license, all rights are reserved by Nomic, Inc.
|
|
*/
|
|
|
|
#version 450
|
|
|
|
#include "common.comp"
|
|
|
|
#extension GL_KHR_shader_subgroup_arithmetic : require
|
|
#extension GL_EXT_debug_printf : enable
|
|
|
|
layout(local_size_x = 32) in;
|
|
|
|
layout(binding = 0) readonly buffer tensorInA { uint8_t inA[]; };
|
|
layout(binding = 1) readonly buffer tensorInB { float inB[]; };
|
|
layout(binding = 2) writeonly buffer tensorOut { float out_[]; };
|
|
|
|
layout(push_constant) uniform parameter {
|
|
uint inAOff;
|
|
uint inBOff;
|
|
uint outOff;
|
|
int ne00;
|
|
int ne01;
|
|
int ne02;
|
|
int ne11;
|
|
int ne12;
|
|
uint nb01;
|
|
uint nb02;
|
|
uint nb11;
|
|
uint nb12;
|
|
uint nb1;
|
|
uint nb2;
|
|
}
|
|
pcs;
|
|
|
|
#define ELS_PER_BLOCK 32
|
|
#define QS_OFFSET 2
|
|
#define BLOCK_SIZE ((ELS_PER_BLOCK / 2) + QS_OFFSET)
|
|
|
|
void main() {
|
|
uvec3 gid = gl_GlobalInvocationID;
|
|
|
|
uint bc_ab = pcs.ne12 > pcs.ne02 ? gid.z / (pcs.ne12 / pcs.ne02) : gid.z;
|
|
uint bc_ba = pcs.ne02 > pcs.ne12 ? gid.z / (pcs.ne02 / pcs.ne12) : gid.z;
|
|
|
|
|
|
const uint x = (gid.x*pcs.nb01 + bc_ab*pcs.nb02) + pcs.inAOff; // Based from inA
|
|
const uint y = (gid.y*pcs.nb11 + bc_ba*pcs.nb12) / 4 + pcs.inBOff; // based from inB
|
|
float sum = 0.0f;
|
|
for (uint i = 0; i < pcs.ne00; i+=ELS_PER_BLOCK) {
|
|
for (uint j = 0; j < ELS_PER_BLOCK / 2; j++) {
|
|
const uint block_number = i / ELS_PER_BLOCK;
|
|
const uint block_offset = block_number * BLOCK_SIZE;
|
|
const float d = u8BufToFloat16(inA, x + block_offset);
|
|
const uint byte_position_in_block = j;
|
|
const int q0 = (inA[x+block_offset+QS_OFFSET+byte_position_in_block] & 0x0F) - 8;
|
|
const int q1 = (inA[x+block_offset+QS_OFFSET+byte_position_in_block] >> 4) - 8;
|
|
const float dq0 = d * q0;
|
|
const float dq1 = d * q1;
|
|
// if (gid.x == 0 && gid.y == 0 && gid.z == 0 && i < 4 && j < 4) {
|
|
// debugPrintfEXT("shp=%d,%d,%d gid=%d,%d,%d i=%d, d=%f, q0=%d, q1=%d, dqs=%f,%f\n",
|
|
// pcs.ne01, pcs.ne11, pcs.ne12,
|
|
// gid.x, gid.y, gid.z, i, d, q0, q1, dq0, dq1
|
|
// );
|
|
// }
|
|
sum += (dq0 * float(inB[y+i+j])) + \
|
|
(dq1 * float(inB[y+i+j+(ELS_PER_BLOCK/2)]));
|
|
}
|
|
}
|
|
|
|
out_[gid.z*(pcs.nb2/4) + gid.y*(pcs.nb1/4) + gid.x + pcs.outOff] = sum;
|
|
} |