Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for new_operands (0.2 sec)

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

      // AddLoadsStoresOutsideControlFlowOp().
      auto new_operands =
          FilterRange<Value, OperandRange>(op.getInput(), resource_arg_uses);
      new_operands.insert(new_operands.begin(), op.getOperand(0));
      func::FuncOp first_func = branches.front();
      auto new_op = builder.create<CaseOrIfOp>(
          op.getLoc(), first_func.getFunctionType().getResults(), new_operands,
          op->getAttrs());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

          std::vector<Predicate*> new_operands;
          absl::c_transform(pred->GetOperands(), std::back_inserter(new_operands),
                            [&](Predicate* p) { return MakeNotPredicate(p); });
          return kind == Predicate::Kind::kOr ? MakeAndPredicate(new_operands)
                                              : MakeOrPredicate(new_operands);
        }
    
        return nullptr;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                     std::vector<Value>& n_operands) {
      n_operands.clear();
      n_operands.reserve(non_tpu_caller->getNumOperands());
      for (auto operand : non_tpu_caller->getOperands()) {
        if (llvm::isa<BlockArgument>(operand)) {
          auto arg = llvm::cast<BlockArgument>(operand);
          n_operands.push_back(loop_operands[arg.getArgNumber()]);
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top