FLANG
Timing.h
1//===- Timing.h - Execution time measurement facilities ---------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Facilities to measure and provide statistics on execution time.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef FORTRAN_SUPPORT_TIMING_H
14#define FORTRAN_SUPPORT_TIMING_H
15
16#include "mlir/Support/Timing.h"
17
18namespace Fortran::support {
19
22std::unique_ptr<mlir::OutputStrategy> createTimingFormatterText(
23 llvm::raw_ostream &os);
24
25} // namespace Fortran::support
26
27#endif // FORTRAN_SUPPORT_TIMING_H