Skip to content

Commit c535889

Browse files
committed
vulkan: fix pipeline creation logging
1 parent c5c43b9 commit c535889

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -777,9 +777,9 @@ static std::condition_variable compile_count_cond;
777777
static void ggml_vk_create_pipeline_func(vk_device& device, vk_pipeline& pipeline, size_t spv_size, const void* spv_data, const std::string entrypoint,
778778
uint32_t parameter_count, std::array<uint32_t, 3> wg_denoms, std::vector<uint32_t> specialization_constants,
779779
bool disable_robustness, bool require_full_subgroups, uint32_t required_subgroup_size) {
780-
VK_LOG_DEBUG("ggml_vk_create_pipeline(" << device->name << ", " << name << ", " << entrypoint << ", " << parameter_count << ", " << push_constant_size <<
781-
", (" << wg_denoms[0] << "," << wg_denoms[1] << "," << wg_denoms[2] << "), specialization_constants, " << align <<
782-
", " << disable_robustness << ", " << require_full_subgroups << ", " << required_subgroup_size << ")");
780+
VK_LOG_DEBUG("ggml_vk_create_pipeline(" << device->name << ", " << pipeline->name << ", " << entrypoint << ", " << parameter_count <<
781+
", (" << wg_denoms[0] << "," << wg_denoms[1] << "," << wg_denoms[2] << "), specialization_constants, " <<
782+
disable_robustness << ", " << require_full_subgroups << ", " << required_subgroup_size << ")");
783783
GGML_ASSERT(parameter_count > 0);
784784
GGML_ASSERT(wg_denoms[0] > 0 && wg_denoms[1] > 0 && wg_denoms[2] > 0); // NOLINT
785785

0 commit comments

Comments
 (0)