A. Unique TensorFlower 005a88f6cc Add the ability to test AOT compilation in CodegenTestBase.
This change adds the ability to test AOT compilation. It also
changes the way that IR is obtained from the compiler by using
LLVMCompiler hooks.

CodegenTestBase is also modified in the following ways:
* New subclass for LLVM IR testing, with existing CompileAndVerifyIr
  moved into the subclass.
* CreateNewModuleWithEmbeddedIR() is removed.
* Calls to a FileCheck test now have a flag about which version
of the IR to use.
* FileCheck functionality is moved into its library.

PiperOrigin-RevId: 166515069
2017-08-25 13:16:01 -07:00

44 lines
1.6 KiB
C++

/* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_COMPILER_XLA_TESTS_CODEGEN_TEST_BASE_H_
#define TENSORFLOW_COMPILER_XLA_TESTS_CODEGEN_TEST_BASE_H_
#include <memory>
#include "tensorflow/compiler/xla/service/compiler.h"
#include "tensorflow/compiler/xla/service/executable.h"
#include "tensorflow/compiler/xla/service/hlo_module.h"
#include "tensorflow/compiler/xla/tests/hlo_test_base.h"
namespace xla {
// Provides access to both the JIT and the AOT compiler for testing.
class CodegenTestBase : public HloTestBase {
protected:
// Compiles hlo_module with the JIT compiler.
StatusOr<std::unique_ptr<Executable>> CompileToExecutable(
std::unique_ptr<HloModule> hlo_module);
// Compiles hlo_module with the AOT compiler.
StatusOr<std::unique_ptr<AotCompilationResult>> CompileToAotCompilationResult(
std::unique_ptr<HloModule> hlo_module,
const AotCompilationOptions& options);
};
} // namespace xla
#endif // TENSORFLOW_COMPILER_XLA_TESTS_CODEGEN_TEST_BASE_H_