We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf26680 commit e78ca2eCopy full SHA for e78ca2e
tests/test-backend-ops.cpp
@@ -1454,13 +1454,20 @@ struct test_case {
1454
ggml_context_ptr ctx(ggml_init(params)); // smart ptr
1455
GGML_ASSERT(ctx);
1456
1457
+ gf = ggml_new_graph_custom(ctx.get(), graph_nodes, false);
1458
+
1459
ggml_tensor * out = build_graph(ctx.get());
1460
current_op_name = op_desc(out);
1461
1462
if (!matches_filter(out, op_names_filter)) {
1463
return true;
1464
}
1465
1466
+ // Filter out fusion tests in support mode
1467
+ if (run_whole_graph()) {
1468
+ return true;
1469
+ }
1470
1471
bool supported = ggml_backend_supports_op(backend, out);
1472
1473
std::string device_desc = ggml_backend_dev_description(ggml_backend_get_device(backend));
0 commit comments