Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for XlaLaunch (0.65 sec)

  1. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // PRE_PLACEMENT passes:
    
    // EncapsulateXlaComputationsPass rewrites computations generated by the
    // xla.compile() Python code into XlaLaunch nodes.
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::PRE_PLACEMENT, 36,
                          EncapsulateXlaComputationsPass);
    
    // from
    // tensorflow/compiler/tf2xla/functionalize_control_flow_pass_registration.cc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 11 21:53:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.h

        std::unique_ptr<Graph>* graph_out, FunctionLibraryDefinition* library);
    
    // The attribute that marks function calls produced by the encapsulate
    // subgraphs pass and that should in turn be compiled via XlaLaunch operators.
    extern const char* const kXlaCompiledKernelAttr;
    
    // Does `node` have the kXlaCompiledKernelAttr attribute?
    bool IsXlaCompiledKernel(const Node& node);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 12 03:59:36 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.cc

          "Run all the passes involved after the clustering transformations from "
          "the TF2XLA Bridge. Takes as input a Module with tf_device.cluster ops "
          "and outputs TFRT runtime ops such as XlaLaunch. This is for CPU/GPU",
          CreateNonTPULowerClusterToRuntimeOpsPassPipeline);
    }
    
    }  // namespace tfrt_compiler
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top