HomeSort by relevance Sort by last modified time
    Searched refs:IrFunction (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
ir_function.h 32 // IrFunction creates and encapsulates an llvm::Function, exposing methods to
36 // In addtion IrFunction saves the callers IR insert point during contruction,
41 // // Create and initialize new IrFunction.
42 // std::unique_ptr<IrFunction> compute_function(new IrFunction(...));
43 // // Emit IR for function body using IrFunction helper methods.
47 // // Delete IrFunction (finalizes IR function and restores caller insertion
52 class IrFunction {
54 IrFunction(const string& function_name, llvm::Function::LinkageTypes linkage,
58 ~IrFunction();
    [all...]
ir_function.cc 48 IrFunction::IrFunction(const string& function_name,
62 IrFunction::~IrFunction() {
67 DynamicLoopBounds IrFunction::GetDynamicLoopBounds() {
76 void IrFunction::Initialize(const string& function_name,
183 llvm::Value* IrFunction::GetDynamicLoopBound(const int64 offset) {
ir_emitter.h 416 // management rules, their memory is owned by the module (Note that IrFunction
419 std::unique_ptr<IrFunction> compute_function_;
ir_emitter.cc 146 // Create and initialize new IrFunction.
148 new IrFunction(function_name, linkage,
    [all...]

Completed in 162 milliseconds