blob: 860f4a6b7a49d505ab7e740289a06c790c33689c [file]
// Copyright 2019 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "iree/base/internal/flags.h"
#include "iree/testing/benchmark.h"
int main(int argc, char** argv) {
// Pass through flags to benchmark (allowing --help to fall through).
iree_flags_parse_checked(IREE_FLAGS_PARSE_MODE_UNDEFINED_OK |
IREE_FLAGS_PARSE_MODE_CONTINUE_AFTER_HELP,
&argc, &argv);
iree_benchmark_initialize(&argc, argv);
iree_benchmark_run_specified();
return 0;
}