metal : remove invalid asserts (#7617)

This commit is contained in:
Georgi Gerganov 2024-05-29 22:20:40 +03:00
parent 975ec63ff2
commit 55d62262a9
No known key found for this signature in database
GPG Key ID: 449E073F9DC10735
2 changed files with 0 additions and 6 deletions

View File

@ -1597,9 +1597,6 @@ static void ggml_vk_graph_compute(struct ggml_kompute_context * ctx, struct ggml
{ {
GGML_ASSERT(ne00 == ne10); GGML_ASSERT(ne00 == ne10);
GGML_ASSERT(ggml_is_contiguous_2(src0));
GGML_ASSERT(ggml_is_contiguous_2(src1));
GGML_ASSERT(ne12 % ne02 == 0); GGML_ASSERT(ne12 % ne02 == 0);
GGML_ASSERT(ne13 % ne03 == 0); GGML_ASSERT(ne13 % ne03 == 0);

View File

@ -1519,9 +1519,6 @@ static enum ggml_status ggml_metal_graph_compute(
{ {
GGML_ASSERT(ne00 == ne10); GGML_ASSERT(ne00 == ne10);
GGML_ASSERT(ggml_is_contiguous_2(src0));
GGML_ASSERT(ggml_is_contiguous_2(src1));
GGML_ASSERT(ne12 % ne02 == 0); GGML_ASSERT(ne12 % ne02 == 0);
GGML_ASSERT(ne13 % ne03 == 0); GGML_ASSERT(ne13 % ne03 == 0);