Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AccumulateResultsDefinedWithin (0.36 sec)

  1. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.h

    // defined within a Subgraph and referenced in a descendant Operation. These
    // Values(s) are to be returned by the new raised function.
    llvm::SmallVector<Value> AccumulateResultsDefinedWithin(
        const llvm::SetVector<Operation*>& partition_ops);
    
    // Represents a view of a set of mlir Operations that form a subgraph of the
    // entire Module's DAG. `Subgraph` can be thought of as segment of sequential
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 18:49:43 UTC 2022
    - 6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/common/outline_operations.cc

          for (Operation& op : nested_block->getOperations()) update_from_op(&op);
        });
      }
      return SmallVector<Value>(results.getArrayRef());
    }
    
    llvm::SmallVector<Value> AccumulateResultsDefinedWithin(
        const llvm::SetVector<Operation*>& partition_ops) {
      llvm::SmallVector<Value> values_for_results;
      for (Operation* op : partition_ops) {
        if (IsConstantOrNone(op)) {
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top