Skip to content

Commit 8f0f615

Browse files
committed
ggml : better error message for set_rows unsupported type
1 parent 56d6914 commit 8f0f615

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cpu/ops.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4523,7 +4523,7 @@ void ggml_compute_forward_set_rows(
45234523
} break;
45244524
default:
45254525
{
4526-
GGML_ABORT("fatal error");
4526+
GGML_ABORT("src0->type = %d (%s) not supported", src0->type, ggml_type_name(src0->type));
45274527
}
45284528
}
45294529
}

0 commit comments

Comments
 (0)