Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TfToHloCompiler (0.1 sec)

  1. tensorflow/compiler/jit/tf_to_hlo_compiler.h

    #include <memory>
    #include <vector>
    
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/core/framework/op_kernel.h"
    
    namespace tensorflow {
    
    class TfToHloCompiler {
     public:
      TfToHloCompiler() = default;
      virtual ~TfToHloCompiler() = default;
    
      // Compiles a Tensorflow `function` to an HloModuleProto stored in the
      // XlaCompilationResult pointed to by `result`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tf_graph_to_hlo_compiler.h

    #include "tensorflow/compiler/jit/tf_to_hlo_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_compiler.h"
    #include "tensorflow/compiler/tf2xla/xla_helpers.h"
    
    namespace tensorflow {
    
    class TfGraphToHloCompiler : public TfToHloCompiler {
     public:
      TfGraphToHloCompiler() = delete;
    
      explicit TfGraphToHloCompiler(const XlaCompiler::Options& options)
          : xla_compiler_(options) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top