Skip to content

Commit d995192

Browse files
committed
fix compiling error in debug
1 parent 6c517f1 commit d995192

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ggml/src/ggml-qnn/npu/device/op_flash_attn.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,7 @@ bool flash_attn_f32(tensor * out, compute_params * params) {
275275
const auto * k = out->get_src(1);
276276
const auto * v = out->get_src(2);
277277
if (!q || !k || !v) {
278-
DEVICE_LOG_DEBUG(
279-
"invalid src tensors: q: %p, k: %p, v: %p, mask: %p\n", (void *) q, (void *) k, (void *) v, (void *) mask);
278+
DEVICE_LOG_DEBUG("invalid src tensors: q: %p, k: %p, v: %p\n", (void *) q, (void *) k, (void *) v);
280279
return false;
281280
}
282281

0 commit comments

Comments
 (0)