1
0
mirror of https://github.com/ggerganov/llama.cpp.git synced 2025-04-20 21:46:07 +00:00

restore local workgroup size adjustments for large inputs

This commit is contained in:
Akarshan Biswas 2025-04-12 11:18:50 +05:30
parent ae4bc15a32
commit a6f3aca617
No known key found for this signature in database
GPG Key ID: B40338D37ECC2C4D

@ -17,22 +17,21 @@
template <typename T>
static void im2col_kernel(const float * x, T * dst, int64_t batch_offset, int64_t offset_delta, int64_t IC, int64_t IW,
int64_t IH, int64_t OH, int64_t OW, int64_t KW, int64_t KH, int64_t pelements, int64_t CHW,
int s0, int s1, int p0, int p1, int d0, int d1, const sycl::nd_item<3> & item) {
const int64_t work_group_size_x = item.get_local_range(2);
const int64_t total_threads_x = work_group_size_x * item.get_group_range(2);
const int64_t global_id_x = item.get_global_id(2);
int s0, int s1, int p0, int p1, int d0, int d1, const sycl::nd_item<3> & item_ctl) {
const int64_t work_group_size = item_ctl.get_local_range(2);
const int64_t global_id = item_ctl.get_local_id(2) + (work_group_size * item_ctl.get_group(2));
for (int64_t i = global_id_x; i < pelements; i += total_threads_x) {
// make each work-item deal with more elements since sycl global range can not exceed max int
for (int64_t i = global_id; i < pelements; i += (work_group_size * item_ctl.get_group_range(2))) {
const int64_t ksize = OW * (KH > 1 ? KW : 1);
const int64_t kx = i / ksize;
const int64_t kd = kx * ksize;
const int64_t ky = (i - kd) / OW;
const int64_t ix = i % OW;
const int64_t oh = item.get_group(1);
const int64_t group_z = item.get_group(0);
const int64_t batch = group_z / IC;
const int64_t ic = group_z % IC;
const int64_t oh = item_ctl.get_group(1);
const int64_t batch = item_ctl.get_group(0) / IC;
const int64_t ic = item_ctl.get_group(0) % IC;
const int64_t iiw = (ix * s0) + (kx * d0) - p0;
const int64_t iih = (oh * s1) + (ky * d1) - p1;
@ -58,11 +57,13 @@ static void im2col_sycl_internal(const float * x, T * dst, int64_t IW, int64_t I
int64_t KH, int64_t IC, int64_t batch, int64_t batch_offset, int64_t offset_delta,
int s0, int s1, int p0, int p1, int d0, int d1, queue_ptr stream) {
const int64_t parallel_elements = OW * KW * KH;
const int64_t block_size_x = SYCL_IM2COL_BLOCK_SIZE;
const int64_t num_groups_x = (parallel_elements + block_size_x - 1) / block_size_x;
const int64_t num_blocks = (parallel_elements + SYCL_IM2COL_BLOCK_SIZE - 1) / SYCL_IM2COL_BLOCK_SIZE;
sycl::range<3> block_nums(batch * IC, OH, num_groups_x);
sycl::range<3> local_range(1, 1, block_size_x);
// decrease global range when it exceeds the max int
int64_t local_size = downsample_sycl_global_range(batch * IC * OH * num_blocks, SYCL_IM2COL_BLOCK_SIZE);
sycl::range<3> block_nums(batch * IC, OH, num_blocks);
sycl::range<3> local_range(1, 1, local_size);
const int64_t CHW = IC * KH * KW;
@ -130,4 +131,3 @@ void ggml_sycl_op_im2col(ggml_backend_sycl_context & ctx, ggml_tensor * dst) {
batch_offset, delta_offset, s0, s1, p0, p1, d0, d1, stream);
}
}