MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / test_summary_info

Class test_summary_info

subprojects/llama.cpp/tests/test-backend-ops.cpp:709–720  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

707};
708
709struct test_summary_info {
710 size_t tests_passed;
711 size_t tests_total;
712 bool is_backend_summary = false; // true for backend summary, false for test summary
713
714 test_summary_info() = default;
715
716 test_summary_info(size_t tests_passed, size_t tests_total, bool is_backend_summary = false) :
717 tests_passed(tests_passed),
718 tests_total(tests_total),
719 is_backend_summary(is_backend_summary) {}
720};
721
722struct testing_start_info {
723 size_t device_count;

Callers 1

test_backendFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_backendFunction · 0.68