Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for GetInputs (0.25 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      Location loc = host_compute.getLoc();
      bool manual_sharding = host_compute.getManualSharding();
    
      SmallVector<Value, 4> send_tokens;
      for (auto operand : llvm::enumerate(host_compute.getInputs())) {
        auto send_token = CreateSendOp(
            builder, loc, operand.value(), host_compute.getSendKey(),
            operand.index(), token, xla::kXlaHostTransferTfRendezvousHandlerName,
            manual_sharding);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (op.getN() == 1) {
          rewriter.replaceOpWithNewOp<UnaryEinsumOp>(
              op, op.getType(), *op.getInputs().begin(), equation);
        } else if (op.getN() == 2) {
          ValueRange inputs = op.getInputs();
          rewriter.replaceOpWithNewOp<EinsumOp>(op, op.getType(), inputs[0],
                                                inputs[1], equation);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            BindingPredicate mappedSubject = mapSubject(subject, role);
            List<BindingPredicate> mappedInputs = mapInputs(mutator.getInputs());
            RuleBinder binder = new RuleBinder(mappedSubject, mappedInputs, mutator, unboundRules);
            ruleBindings.add(binder);
            return binder;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

                status = pi.emitOpError()
                         << "requires " << num_cores_per_replica
                         << " operands but found " << pi->getNumOperands();
              for (auto operand : pi.getInputs()) {
                if (auto ri =
                        llvm::dyn_cast_or_null<mlir::TF::TPUReplicatedInputOp>(
                            operand.getDefiningOp())) {
                  if (!seen_ops.contains(ri)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        void setGroup(@Nullable String group);
    
        /**
         * <p>Returns the inputs of this task.</p>
         *
         * @return The inputs. Never returns null.
         */
        @Internal
        TaskInputs getInputs();
    
        /**
         * <p>Returns the outputs of this task.</p>
         *
         * @return The outputs. Never returns null.
         */
        @Internal
        TaskOutputs getOutputs();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    void AddCallOpInWhileOpRegion(mlir::Region& region, mlir::func::FuncOp func) {
      OpBuilder op_builder{region};
      region.push_back(new mlir::Block());
      Location loc = region.getLoc();
      auto inputs = func.getFunctionType().getInputs();
      region.addArguments(inputs, mlir::SmallVector<Location>(inputs.size(), loc));
      op_builder.setInsertionPointToStart(&region.front());
      auto call_op = op_builder.create<mlir::func::CallOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto new_return =
          builder.create<func::ReturnOp>(old_return->getLoc(), old_and_new_retvals);
      old_return->erase();
      callee.setType(FunctionType::get(
          callee.getContext(), callee.getFunctionType().getInputs(),
          llvm::to_vector<4>(new_return.getOperandTypes())));
      return success();
    }
    
    // Updates a PartitionedCallOp/StatefulPartitionedCallOp according to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

              while_op.getInput().getTypes(), while_op.getOutput().getTypes(),
              while_op.ResolveBodyFunction(&symbol_table_)
                  .getFunctionType()
                  .getInputs());
          return PropagateShapeToFunctions(
              module, compatible_types,
              {while_op.ResolveCondFunction(&symbol_table_),
               while_op.ResolveBodyFunction(&symbol_table_)},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // pairs.
      TF_RETURN_IF_ERROR(AddBackedges());
    
      TF_RETURN_IF_ERROR(ConvertFunctionArgAndRets(function, graph,
                                                   func_type.getInputs(), arg_nodes,
                                                   ret_nodes, control_ret_nodes));
    
      // TODO(jpienaar): Update post removing shape_refinier_.
      if (!specs_.enable_shape_inference) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.platform.base.ApplicationBinarySpec.getApplication()> does not have raw return type assignable to org.gradle.api.provider.Provider in (ApplicationBinarySpec.java:0)
    Method <org.gradle.platform.base.BinarySpec.getInputs()> does not have raw return type assignable to org.gradle.api.provider.Provider in (BinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top