Home | History | Annotate | Download | only in llvm_gpu_backend
      1 /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
      2 
      3 Licensed under the Apache License, Version 2.0 (the "License");
      4 you may not use this file except in compliance with the License.
      5 You may obtain a copy of the License at
      6 
      7     http://www.apache.org/licenses/LICENSE-2.0
      8 
      9 Unless required by applicable law or agreed to in writing, software
     10 distributed under the License is distributed on an "AS IS" BASIS,
     11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 See the License for the specific language governing permissions and
     13 limitations under the License.
     14 ==============================================================================*/
     15 
     16 #ifndef TENSORFLOW_COMPILER_XLA_SERVICE_GPU_LLVM_GPU_BACKEND_UTILS_H_
     17 #define TENSORFLOW_COMPILER_XLA_SERVICE_GPU_LLVM_GPU_BACKEND_UTILS_H_
     18 
     19 #include <memory>
     20 #include <string>
     21 #include "tensorflow/compiler/xla/types.h"
     22 #include "tensorflow/core/lib/core/stringpiece.h"
     23 
     24 namespace llvm {
     25 class LLVMContext;
     26 class Module;
     27 }
     28 
     29 namespace xla {
     30 namespace gpu {
     31 
     32 // Convenience function for loading a LLVM module from an IR file. The module
     33 // is created in the given LLVM context.
     34 //
     35 // If loading fails for some reason, dies printing a diagnostic error.
     36 std::unique_ptr<llvm::Module> LoadIRModule(const string& filename,
     37                                            llvm::LLVMContext* llvm_context);
     38 
     39 // Convenience function for replacing the extension of the given filename.
     40 // If the filename has no extension, the new extension is appended to its name.
     41 //
     42 // For example:
     43 //   ReplaceFilenameExtension("/foo/baz.txt", "cc") --> "/foo/baz.cc"
     44 string ReplaceFilenameExtension(tensorflow::StringPiece filename,
     45                                 tensorflow::StringPiece new_extension);
     46 
     47 }  // namespace gpu
     48 }  // namespace xla
     49 
     50 #endif  // TENSORFLOW_COMPILER_XLA_SERVICE_GPU_LLVM_GPU_BACKEND_UTILS_H_
     51