MLIR 22.0.0git
Tester.h
Go to the documentation of this file.
1//===- Tester.h -------------------------------------------------*- 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// This file defines the Tester class used in the MLIR Reduce tool.
10//
11// A Tester object is passed as an argument to the reduction passes and it is
12// used to run the interestingness testing script on the different generated
13// reduced variants of the test case.
14//
15//===----------------------------------------------------------------------===//
16
17#ifndef MLIR_REDUCER_TESTER_H
18#define MLIR_REDUCER_TESTER_H
19
20#include "mlir/IR/BuiltinOps.h"
21#include "llvm/ADT/SmallString.h"
22#include "llvm/Support/Error.h"
23#include "llvm/Support/FileSystem.h"
24#include "llvm/Support/Program.h"
25
26namespace mlir {
27
28/// This class is used to keep track of the testing environment of the tool. It
29/// contains a method to run the interestingness testing script on a MLIR test
30/// case file.
31class Tester {
32public:
38
39 Tester(StringRef testScript, ArrayRef<std::string> testScriptArgs);
40
41 /// Runs the interestingness testing script on a MLIR test case file. Returns
42 /// true if the interesting behavior is present in the test case or false
43 /// otherwise.
44 std::pair<Interestingness, size_t> isInteresting(ModuleOp module) const;
45
46 /// Return whether the file in the given path is interesting.
47 Interestingness isInteresting(StringRef testCase) const;
48
49private:
50 StringRef testScript;
51 ArrayRef<std::string> testScriptArgs;
52};
53
54} // namespace mlir
55
56#endif
Tester(StringRef testScript, ArrayRef< std::string > testScriptArgs)
Definition Tester.cpp:23
std::pair< Interestingness, size_t > isInteresting(ModuleOp module) const
Runs the interestingness testing script on a MLIR test case file.
Definition Tester.cpp:27
Include the generated interface declarations.