Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 123 of 123 for more (0.03 sec)

  1. tensorflow/compiler/jit/device_compilation_profiler.h

    #define TENSORFLOW_COMPILER_JIT_DEVICE_COMPILATION_PROFILER_H_
    
    #include <cstdint>
    #include <string>
    
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/core/framework/attr_value.pb.h"
    
    namespace tensorflow {
    
    // Tracks statistics for device compilation and uses these to determine whether
    // the given cluster should be compiled or not.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    #define TENSORFLOW_COMPILER_JIT_EXTRACT_OUTSIDE_COMPILATION_PASS_H_
    
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/encapsulate_util.h"
    #include "xla/status_macros.h"
    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    // Rewrite function for outside compilation subgraphs. It will perform the
    // following steps:
    //
    // 1. Add a XLA computation key placeholder node (it will be used as input for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/node_matchers.h

        op_ = "Const";
      }
    
      void set_inputs(InputSeqMatcher inputs) {
        DCHECK(IsEmpty());
        input_matchers_ = std::move(inputs);
      }
    
      void set_control_deps(NodeSeqMatcher control_deps) {
        DCHECK(IsEmpty());
        control_deps_ = std::move(control_deps);
      }
    
      void set_attr(AttrKeyValuePair attr) {
        DCHECK(IsEmpty());
        attr_ = std::move(attr);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top