Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getUsedValuesDefinedAbove (0.24 sec)

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

    // removed afterwards.`
    void OutlineCluster(tf_device::ClusterOp cluster_op, SymbolTable* symbol_table,
                        OpBuilder* builder) {
      llvm::SetVector<Value> live_ins;
      getUsedValuesDefinedAbove(cluster_op.getBody(), cluster_op.getBody(),
                                live_ins);
    
      func::FuncOp outlined_func =
          BuildFunction(live_ins.getArrayRef(), cluster_op, symbol_table, builder);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

      for (IslandOp island_op : islands_to_outline) {
        // Build the function signature.
    
        // First the captured values in the island are function arguments
        llvm::SetVector<Value> operands;
        getUsedValuesDefinedAbove(island_op.getBody(), operands);
    
        SmallVector<Type, 16> func_operand_types;
        func_operand_types.reserve(operands.size());
        for (Value operand : operands)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top