Skip to content

Commit 409dc4f

Browse files
authored
ggml : fix build break for the vulkan-debug (#9265)
- windows build : Ok. - linux build : Ok. Signed-off-by: Changyeon Kim <cyzero.kim@samsung.com>
1 parent 4a1411b commit 409dc4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-vulkan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2480,7 +2480,7 @@ static void ggml_vk_dispatch_pipeline(ggml_backend_vk_context* ctx, vk_context&
24802480
const uint32_t wg2 = CEIL_DIV(elements[2], pipeline->wg_denoms[2]);
24812481
VK_LOG_DEBUG("ggml_vk_dispatch_pipeline(" << pipeline->name << ", {";
24822482
for (auto& buffer : descriptor_buffer_infos) {
2483-
std::cerr << "(" << buffer << ", " << buffer.offset << ", " << buffer.size << "), ";
2483+
std::cerr << "(" << buffer.buffer << ", " << buffer.offset << ", " << buffer.range << "), ";
24842484
}
24852485
std::cerr << "}, (" << wg0 << "," << wg1 << "," << wg2 << "))");
24862486
GGML_ASSERT(pipeline->descriptor_set_idx < pipeline->descriptor_sets.size());

0 commit comments

Comments
 (0)