Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for HasDynamicOutputs (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    }
    
    // Returns true if `op` has non-static shaped outputs.
    bool HasDynamicOutputs(Operation* op) {
      for (Value v : op->getResults()) {
        if (mlir::TF::CanBeRefined(v.getType())) return true;
      }
      return false;
    }
    
    // Returns true if any op in `cluster_ops` has outputs consumed by ops not
    // `cluster_ops` with a non-static shape.
    bool HasDynamicOutputs(const llvm::SmallSetVector<Operation*, 4>& cluster_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
Back to top