Skip to content

Commit 7909346

Browse files
committed
ggml : fix interpolate with align-corners and ne=1
* avoid division by zero if one of the spatial dimensions is 1 * cpu, cuda, opencl returned correct result anyway due to clamp * vulkan didn't clamp for align-corners so results were broken
1 parent 4926419 commit 7909346

File tree

6 files changed

+27
-36
lines changed

6 files changed

+27
-36
lines changed

ggml/src/ggml-cpu/ops.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7519,8 +7519,8 @@ static void ggml_compute_forward_upscale_f32(
75197519
float pixel_offset = 0.5f;
75207520
if (mode_flags & GGML_SCALE_FLAG_ALIGN_CORNERS) {
75217521
pixel_offset = 0.0f;
7522-
sf0 = (float)(ne0 - 1) / (src0->ne[0] - 1);
7523-
sf1 = (float)(ne1 - 1) / (src0->ne[1] - 1);
7522+
sf0 = ne0 > 1 && ne00 > 1 ? (float)(ne0 - 1) / (ne00 - 1) : sf0;
7523+
sf1 = ne1 > 1 && ne01 > 1 ? (float)(ne1 - 1) / (ne01 - 1) : sf1;
75247524
}
75257525

75267526
for (int64_t i3 = 0; i3 < ne3; i3++) {

ggml/src/ggml-cuda/upscale.cu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ void ggml_cuda_op_upscale(ggml_backend_cuda_context & ctx, ggml_tensor * dst) {
126126
} else if (mode == GGML_SCALE_MODE_BILINEAR) {
127127
float pixel_offset = 0.5f;
128128
if (mode_flags & GGML_SCALE_FLAG_ALIGN_CORNERS) {
129-
sf0 = (float)(dst->ne[0] - 1) / (src0->ne[0] - 1);
130-
sf1 = (float)(dst->ne[1] - 1) / (src0->ne[1] - 1);
129+
sf0 = dst->ne[0] > 1 && src0->ne[0] > 1 ? (float)(dst->ne[0] - 1) / (src0->ne[0] - 1) : sf0;
130+
sf1 = dst->ne[1] > 1 && src0->ne[1] > 1 ? (float)(dst->ne[1] - 1) / (src0->ne[1] - 1) : sf1;
131131
pixel_offset = 0.0f;
132132
}
133133
upscale_f32_bilinear_cuda(src0_d, dst_d, src0->nb[0], src0->nb[1], src0->nb[2], src0->nb[3],

ggml/src/ggml-opencl/ggml-opencl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6156,8 +6156,8 @@ static void ggml_cl_upscale(ggml_backend_t backend, const ggml_tensor * src0, gg
61566156
CL_CHECK(clSetKernelArg(kernel, 15, sizeof(float), &sf3));
61576157
} else if (mode == GGML_SCALE_MODE_BILINEAR) {
61586158
if (mode_flags & GGML_SCALE_FLAG_ALIGN_CORNERS) {
6159-
sf0 = (float)(ne0 - 1) / (ne00 - 1);
6160-
sf1 = (float)(ne1 - 1) / (ne01 - 1);
6159+
sf0 = ne0 > 1 && ne00 > 1 ? (float)(ne0 - 1) / (ne00 - 1) : sf0;
6160+
sf1 = ne1 > 1 && ne01 > 1 ? (float)(ne1 - 1) / (ne01 - 1) : sf1;
61616161
pixel_offset = 0.0f;
61626162
}
61636163

ggml/src/ggml-vulkan/ggml-vulkan.cpp

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ struct vk_device_struct {
525525
vk_pipeline pipeline_add_id_f32;
526526

527527
vk_pipeline pipeline_concat_f32, pipeline_concat_f16, pipeline_concat_i32;
528-
vk_pipeline pipeline_upscale_nearest_f32, pipeline_upscale_bilinear_f32, pipeline_upscale_bilinear_ac_f32;
528+
vk_pipeline pipeline_upscale_nearest_f32, pipeline_upscale_bilinear_f32;
529529
vk_pipeline pipeline_scale_f32;
530530
vk_pipeline pipeline_sqr_f32;
531531
vk_pipeline pipeline_sqrt_f32;
@@ -1240,6 +1240,7 @@ struct vk_op_upscale_push_constants {
12401240
uint32_t nb00; uint32_t nb01; uint32_t nb02; uint32_t nb03;
12411241
uint32_t ne10; uint32_t ne11; uint32_t ne12; uint32_t ne13;
12421242
float sf0; float sf1; float sf2; float sf3;
1243+
float pixel_offset;
12431244
};
12441245

12451246
struct vk_op_sum_rows_push_constants
@@ -3498,7 +3499,6 @@ static void ggml_vk_load_shaders(vk_device& device) {
34983499

34993500
ggml_vk_create_pipeline(device, device->pipeline_upscale_nearest_f32, "upscale_f32", upscale_f32_len, upscale_f32_data, "main", 2, sizeof(vk_op_upscale_push_constants), {512, 1, 1}, {GGML_SCALE_MODE_NEAREST}, 1);
35003501
ggml_vk_create_pipeline(device, device->pipeline_upscale_bilinear_f32, "upscale_f32", upscale_f32_len, upscale_f32_data, "main", 2, sizeof(vk_op_upscale_push_constants), {512, 1, 1}, {GGML_SCALE_MODE_BILINEAR}, 1);
3501-
ggml_vk_create_pipeline(device, device->pipeline_upscale_bilinear_ac_f32, "upscale_f32", upscale_f32_len, upscale_f32_data, "main", 2, sizeof(vk_op_upscale_push_constants), {512, 1, 1}, {GGML_SCALE_MODE_BILINEAR | GGML_SCALE_FLAG_ALIGN_CORNERS}, 1);
35023502

35033503
ggml_vk_create_pipeline(device, device->pipeline_scale_f32, "scale_f32", scale_f32_len, scale_f32_data, "main", 2, sizeof(vk_op_unary_push_constants), {512, 1, 1}, {}, 1);
35043504

@@ -7855,14 +7855,12 @@ static vk_pipeline ggml_vk_op_get_pipeline(ggml_backend_vk_context * ctx, const
78557855
return nullptr;
78567856
case GGML_OP_UPSCALE:
78577857
if (src0->type == GGML_TYPE_F32 && dst->type == GGML_TYPE_F32) {
7858-
int mode = ggml_get_op_params_i32(dst, 0);
7858+
ggml_scale_mode mode = (ggml_scale_mode)(ggml_get_op_params_i32(dst, 0) & 0xFF);
78597859
switch (mode) {
78607860
case GGML_SCALE_MODE_NEAREST:
78617861
return ctx->device->pipeline_upscale_nearest_f32;
78627862
case GGML_SCALE_MODE_BILINEAR:
78637863
return ctx->device->pipeline_upscale_bilinear_f32;
7864-
case GGML_SCALE_MODE_BILINEAR | GGML_SCALE_FLAG_ALIGN_CORNERS:
7865-
return ctx->device->pipeline_upscale_bilinear_ac_f32;
78667864
}
78677865
}
78687866
return nullptr;
@@ -9351,22 +9349,26 @@ static void ggml_vk_upscale(ggml_backend_vk_context * ctx, vk_context& subctx, c
93519349
const uint32_t src0_type_size = ggml_type_size(src0->type);
93529350
const uint32_t mode = (uint32_t)ggml_get_op_params_i32(dst, 0);
93539351

9354-
float sf0 = (float)dst->ne[0] / src0->ne[0];
9355-
float sf1 = (float)dst->ne[1] / src0->ne[1];
9356-
float sf2 = (float)dst->ne[2] / src0->ne[2];
9357-
float sf3 = (float)dst->ne[3] / src0->ne[3];
9352+
GGML_TENSOR_UNARY_OP_LOCALS
9353+
9354+
float sf0 = (float)ne0 / ne00;
9355+
float sf1 = (float)ne1 / ne01;
9356+
float sf2 = (float)ne2 / ne02;
9357+
float sf3 = (float)ne3 / ne03;
9358+
float pixel_offset = 0.5f;
93589359

93599360
if (mode & GGML_SCALE_FLAG_ALIGN_CORNERS) {
9360-
sf0 = (float)(dst->ne[0] - 1) / (src0->ne[0] - 1);
9361-
sf1 = (float)(dst->ne[1] - 1) / (src0->ne[1] - 1);
9361+
sf0 = ne0 > 1 && ne00 > 1 ? (float)(ne0 - 1) / (ne00 - 1) : sf0;
9362+
sf1 = ne1 > 1 && ne01 > 1 ? (float)(ne1 - 1) / (ne01 - 1) : sf1;
9363+
pixel_offset = 0.0f;
93629364
}
93639365

93649366
ggml_vk_op_f32<vk_op_upscale_push_constants>(ctx, subctx, src0, nullptr, nullptr, dst, GGML_OP_UPSCALE, {
93659367
(uint32_t)ggml_nelements(dst), 0, 0,
9366-
(uint32_t)src0->ne[0], (uint32_t)src0->ne[1],
9367-
(uint32_t)src0->nb[0] / src0_type_size, (uint32_t)src0->nb[1] / src0_type_size, (uint32_t)src0->nb[2] / src0_type_size, (uint32_t)src0->nb[3] / src0_type_size,
9368-
(uint32_t)dst->ne[0], (uint32_t)dst->ne[1], (uint32_t)dst->ne[2],(uint32_t)dst->ne[3],
9369-
sf0, sf1, sf2, sf3,
9368+
(uint32_t)ne00, (uint32_t)ne01,
9369+
(uint32_t)nb00 / src0_type_size, (uint32_t)nb01 / src0_type_size, (uint32_t)nb02 / src0_type_size, (uint32_t)nb03 / src0_type_size,
9370+
(uint32_t)ne0, (uint32_t)ne1, (uint32_t)ne2, (uint32_t)ne3,
9371+
sf0, sf1, sf2, sf3, pixel_offset
93709372
}, dryrun);
93719373
}
93729374

ggml/src/ggml-vulkan/vulkan-shaders/upscale.comp

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ layout (push_constant) uniform parameter
77
uint nb00; uint nb01; uint nb02; uint nb03;
88
uint ne10; uint ne11; uint ne12; uint ne13;
99
float sf0; float sf1; float sf2; float sf3;
10+
float pixel_offset;
1011
} p;
1112

1213
#include "types.glsl"
@@ -19,7 +20,6 @@ layout (binding = 1) writeonly buffer D {D_TYPE data_d[];};
1920
// from ggml.h: enum ggml_scale_mode, enum ggml_scale_flag
2021
#define NEAREST 0
2122
#define BILINEAR 1
22-
#define ALIGN_CORNERS (1 << 8)
2323

2424
layout (constant_id = 0) const uint scale_mode = 0;
2525

@@ -52,7 +52,7 @@ float fetch_bilinear(ivec2 c0, ivec2 c1, vec2 d, uint i12, uint i13) {
5252
float interpolate_bilinear(uint i10, uint i11, uint i12, uint i13) {
5353
const ivec2 ne0 = ivec2(p.ne00, p.ne01);
5454

55-
const vec2 c = (vec2(i10, i11) + 0.5) / vec2(p.sf0, p.sf1) - 0.5;
55+
const vec2 c = (vec2(i10, i11) + p.pixel_offset) / vec2(p.sf0, p.sf1) - p.pixel_offset;
5656
const vec2 c0f = floor(c);
5757
const vec2 d = c - c0f;
5858
const ivec2 c0 = max(ivec2(c0f), 0);
@@ -61,16 +61,6 @@ float interpolate_bilinear(uint i10, uint i11, uint i12, uint i13) {
6161
return fetch_bilinear(c0, c1, d, i12, i13);
6262
}
6363

64-
float interpolate_bilinear_align_corners(uint i10, uint i11, uint i12, uint i13) {
65-
const vec2 c = vec2(i10, i11) / vec2(p.sf0, p.sf1);
66-
const vec2 c0f = floor(c);
67-
const vec2 d = c - c0f;
68-
const ivec2 c0 = ivec2(c0f);
69-
const ivec2 c1 = c0 + 1;
70-
71-
return fetch_bilinear(c0, c1, d, i12, i13);
72-
}
73-
7464
void main() {
7565
const uint idx = gl_GlobalInvocationID.z * 262144 + gl_GlobalInvocationID.y * 512 + gl_GlobalInvocationID.x;
7666

@@ -91,9 +81,6 @@ void main() {
9181
case BILINEAR:
9282
result = interpolate_bilinear(i10, i11, i12, i13);
9383
break;
94-
case BILINEAR | ALIGN_CORNERS:
95-
result = interpolate_bilinear_align_corners(i10, i11, i12, i13);
96-
break;
9784
}
9885

9986
data_d[p.d_offset + idx] = D_TYPE(result);

tests/test-backend-ops.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6877,6 +6877,8 @@ static std::vector<std::unique_ptr<test_case>> make_test_cases_eval() {
68776877
test_cases.emplace_back(new test_interpolate(GGML_TYPE_F32, {5, 7, 11, 13}, {2, 5, 7, 11}, mode));
68786878
}
68796879
test_cases.emplace_back(new test_interpolate(GGML_TYPE_F32, {2, 5, 7, 11}, {5, 7, 11, 13}, GGML_SCALE_MODE_BILINEAR | GGML_SCALE_FLAG_ALIGN_CORNERS));
6880+
test_cases.emplace_back(new test_interpolate(GGML_TYPE_F32, {1, 4, 3, 2}, {2, 8, 3, 2}, GGML_SCALE_MODE_BILINEAR | GGML_SCALE_FLAG_ALIGN_CORNERS));
6881+
test_cases.emplace_back(new test_interpolate(GGML_TYPE_F32, {4, 1, 3, 2}, {1, 1, 3, 2}, GGML_SCALE_MODE_BILINEAR | GGML_SCALE_FLAG_ALIGN_CORNERS));
68806882

68816883
test_cases.emplace_back(new test_sum());
68826884
test_cases.emplace_back(new test_sum_rows());

0 commit comments

Comments
 (0)