Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for UpdateControlDependenciesPass (0.22 sec)

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

      }
    };
    
    #define GEN_PASS_DEF_EXECUTORUPDATECONTROLDEPENDENCIESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    class UpdateControlDependenciesPass
        : public impl::ExecutorUpdateControlDependenciesPassBase<
              UpdateControlDependenciesPass> {
     public:
      void runOnOperation() override;
    };
    
    void ClearControlInputs(Operation* op, int& num_control_inputs_removed) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

        }
      });
    
      // This number is unique within each function which is sufficient for
      // `UpdateControlDependenciesPass` which consumes the related attributes.
      // However, this assumes that we don't inline functions between this pass
      // and `UpdateControlDependenciesPass`.
      // If we need globally unique parallel group IDs in the future,
      // we can either make this pass a module pass (using a global counter)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

        }
      });
    
      // This number is unique within each function which is sufficient for
      // `UpdateControlDependenciesPass` which consumes the related attributes.
      // However, this assumes that we don't inline functions between this pass
      // and `UpdateControlDependenciesPass`.
      // If we need globally unique replica group IDs in the future,
      // we can either make this pass a module pass (using a global counter)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top