Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for XlaWhile (0.25 sec)

  1. tensorflow/compiler/jit/jit_compilation_pass_registration.cc

    // FunctionalizeControlFlowPass: 27
    //
    // This pass looks at the graph and all associated FunctionDefs, and turns
    // traditional control flow structure (Switch/Merge/etc.) into functional
    // control flow structure (XlaIf/XlaWhile). Following passes must
    // handle those FunctionDef correctly.
    
    // POST_REWRITE_FOR_EXEC passes that support auto-clustering to enable XLA:
    
    REGISTER_OPTIMIZATION(OptimizationPassRegistry::POST_REWRITE_FOR_EXEC, 5,
    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/xla_ops_on_regular_devices.cc

          Name("XlaVariadicSort").HostMemory("dimension").Device(DEVICE),          \
          XlaCompileOnDemandOp);                                                   \
      REGISTER_KERNEL_BUILDER(Name("XlaWhile").Device(DEVICE),                     \
                              XlaCompileOnDemandOp);                               \
      REGISTER_KERNEL_BUILDER(Name("XlaDequantize").Device(DEVICE),                \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 19 19:55:14 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.cc

                                             "XlaSvd",
                                             "XlaVariadicReduceV2",
                                             "XlaVariadicSort",
                                             "XlaWhile"};
    
    static bool NodeCanTriggerXlaCompilation(const NodeDef& node) {
      return node.attr().find(kXlaClusterIdAttr) != node.attr().end() ||
             HasBoolAttr(node, kXlaMustCompileAttr) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          "XlaSplitND",
          "XlaSpmdFullToShardShape",
          "XlaSpmdShardToFullShape",
          "XlaSvd",
          "XlaVariadicReduce",
          "XlaVariadicReduceV2",
          "XlaVariadicSort",
          "XlaWhile",
          "Zeta",
          "_Arg",
          "_ArrayToList",
          "_ListToArray",
          "_Retval"};
      return result;
    }
    
    }  // namespace testing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top