Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for getRun (0.39 sec)

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

          auto it = buffer_to_size->find(addn.getOperand(0));
          if (it != buffer_to_size->end()) {
            addn.getSum().setType(
                mlir::cast<TensorType>(addn.getOperand(0).getType()));
            auto size = it->getSecond();
            (*buffer_to_size)[addn.getSum()] = size;
          }
        } else if (auto zeros = llvm::dyn_cast<TF::ZerosLikeOp>(&op)) {
          if (buffer_to_size->count(zeros.getX()) > 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

          continue;
    
        const auto inputs = partitioned_input.getInputs();
        const bool packed_input = partitioned_input.getIsPacked();
        int num_cores_per_replica = partitioned_input.getN();
        if (num_cores_per_replica_attr) {
          num_cores_per_replica = num_cores_per_replica_attr.getInt();
        } else if (packed_input) {
          return partitioned_input->emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/c/eager/c_api.cc

      if (!status->status.ok()) return;
      auto run_metadata = context->ExportRunMetadata();
      status->status = MessageToBuffer(*run_metadata, buf);
    }
    
    namespace {
    TFE_Op* GetFunc(TFE_Context* ctx, const tensorflow::NameAttrList& func,
                    TF_Status* status) {
      TFE_Op* func_op = TFE_NewOp(ctx, func.name().data(), status);
      for (const auto& attr : func.attr()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

        Operation* op, PatternRewriter& rewriter) const {
      auto tf_unpack_op = cast<TF::UnpackOp>(op);
    
      auto input = tf_unpack_op.getValue();
      auto num = rewriter.getI32IntegerAttr(tf_unpack_op.getNum());
      // Axis can be negative.
      auto axis = rewriter.getI32IntegerAttr(tf_unpack_op.getAxis());
    
      rewriter.replaceOpWithNewOp<UnpackOp>(op, tf_unpack_op.getOutput().getTypes(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. docs/de/docs/contributing.md

    </div>
    
    wird das, da Uvicorn standardmäßig den Port `8000` verwendet, mit der Dokumentation auf dem Port `8008` nicht in Konflikt geraten.
    
    ### Übersetzungen
    
    Hilfe bei Übersetzungen wird SEHR geschätzt! Und es kann nicht getan werden, ohne die Hilfe der Gemeinschaft. 🌎 🚀
    
    Hier sind die Schritte, die Ihnen bei Übersetzungen helfen.
    
    #### Tipps und Richtlinien
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // TODO(fengliuai): moving the following to an utility method.
      const llvm::fltSemantics& semantics = op.getMin().getSemantics();
      float rmin, rmax;
      if (&semantics == &APFloat::IEEEsingle()) {
        rmin = op.getMin().convertToFloat();
        rmax = op.getMax().convertToFloat();
      } else {
        rmin = op.getMin().convertToDouble();
        rmax = op.getMax().convertToDouble();
      }
      // Range boundaries must be valid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

            new_value = parent->getResult(operand.getOperandNumber());
          } else if (auto replicate =
                         llvm::dyn_cast<tf_device::ReplicateOp>(parent)) {
            int n = replicate.getN();
            new_value = parent->getResult(operand.getOperandNumber() * n);
          } else {
            parent->emitOpError("Unsupported wrapper op.");
            return nullptr;
          }
        }
        if (!new_value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

      // Look up function definition from module.
      mlir::func::FuncOp func =
          cluster_func->getParentOfType<ModuleOp>()
              .lookupSymbol<mlir::func::FuncOp>(cluster_func.getFunc());
    
      bool use_spmd = false;
      if (auto use_spmd_attr = cluster_func->getAttrOfType<BoolAttr>(kUseSpmdAttr))
        use_spmd = use_spmd_attr.getValue();
    
      auto num_cores_per_replica_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                try {
                    String output = xcodebuild.execute(Collections.singletonList("-version"), Collections.singletonList("DEVELOPER_DIR=" + xcodeInstall.getAbsolutePath())).getOut();
                    Pattern versionRegex = Pattern.compile("Xcode (\\d+\\.\\d+(\\.\\d+)?)");
                    Matcher matcher = versionRegex.matcher(output);
                    if (matcher.find()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/inject.go

    		imageName = global.GetProxy().GetImage()
    	}
    
    	if it, ok := annotations[annotation.SidecarProxyImageType.Name]; ok {
    		imageType = it
    	}
    
    	return imageURL(global.GetHub(), imageName, tag, imageType)
    }
    
    func InboundTrafficPolicyMode(meshConfig *meshconfig.MeshConfig) string {
    	switch meshConfig.GetInboundTrafficPolicy().GetMode() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top