Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NameAnonymousIteratorsPass (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/name_anonymous_iterators.cc

    namespace TF {
    
    namespace {
    
    #define GEN_PASS_DEF_NAMEANONYMOUSITERATORSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    struct NameAnonymousIteratorsPass
        : public impl::NameAnonymousIteratorsPassBase<NameAnonymousIteratorsPass> {
      void runOnOperation() override;
    };
    
    template <typename OP>
    int replace(OP op, int count) {
      OpBuilder builder(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          have a value from the TF dialect. Useful after legalizing TF graphs
          to other dialects, to remove any TF remnants.
      }];
      let constructor = "TF::CreateStripTfAttributesPass()";
    }
    
    def NameAnonymousIteratorsPass : Pass<"tf-name-anonymous-iterators", "ModuleOp"> {
      let summary = "Converts anonymous iterators to named iterators";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top