Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,381 for Reserve (0.13 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        SmallVector<bool, 4> removed_operand(while_op.getNumOperands(), false);
        llvm::SmallVector<Type, 4> types;
        new_operands.reserve(while_op.getNumOperands());
        new_body_yield.reserve(while_op.getNumOperands());
        types.reserve(while_op.getNumOperands());
    
        // Remove block arguments not used in either cond or body. This leaves the
        // block arguments of body and cond matching still.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

          // Convert values.
          std::vector<Eigen::half> new_values;
          const DenseFPElementsAttr value_attr =
              mlir::cast<DenseFPElementsAttr>(op.getValue());
          new_values.reserve(value_attr.getNumElements());
    
          for (const float value : value_attr.getValues<float>()) {
            new_values.push_back(Eigen::half(
                std::min(std::max(value, kMinFloat16Value), kMaxFloat16Value)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager.go

    			if err != nil {
    				return nil, fmt.Errorf("failed to parse percentage %q for %q resource: %w", v, k, err)
    			}
    			reservations[v1.ResourceName(k)] = q
    		default:
    			return nil, fmt.Errorf("cannot reserve %q resource", k)
    		}
    	}
    	return &reservations, nil
    }
    
    func containerDevicesFromResourceDeviceInstances(devs devicemanager.ResourceDeviceInstances) []*podresourcesapi.ContainerDevices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. docs/fr/docs/fastapi-people.md

    Les données sont calculées chaque mois, vous pouvez lire le <a href="https://github.com/tiangolo/fastapi/blob/master/.github/actions/people/app/main.py" class="external-link" target="_blank">code source ici</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

          auto permuation_tensor_type =
              RankedTensorType::get({input_rank}, rewriter.getIntegerType(32));
          llvm::SmallVector<Attribute, 4> permute;
          permute.reserve(input_rank);
          // First create an identity permutation tensor.
          for (int i = 0; i < input_rank; i++) {
            permute.push_back(rewriter.getI32IntegerAttr(i));
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/mime/multipart/formdata.go

    	// since metadata is always stored in memory, not disk.
    	//
    	// maxMemoryBytes is the maximum bytes we will store in memory, including file content,
    	// non-file part values, metadata, and map entry overhead.
    	//
    	// We reserve an additional 10 MB in maxMemoryBytes for non-file data.
    	//
    	// The relationship between these parameters, as well as the overly-large and
    	// unconfigurable 10 MB added on to maxMemory, is unfortunate but difficult to change
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

            continue;
          }
    
          // Collect all the quantized inputs and "clone" the matched op by these
          // inputs.
          SmallVector<Value, 4> inputs;
          inputs.reserve(quantizing_op->getNumOperands());
          for (const auto& operand : quantizing_op->getOperands()) {
            Type operand_type = operand.getType();
            if (operand_type.isa<NoneType>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

                this.serializer = serializer;
            }
        }
    
        private static class TaggedTypeSerializer<T> extends AbstractSerializer<T> {
            private static final int JAVA_TYPE = 1; // Reserve 0 for null (to be added later)
            private static final TypeInfo JAVA_SERIALIZATION = new TypeInfo(JAVA_TYPE, true, new DefaultSerializer<Object>());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. pkg/controller/resourceclaim/controller.go

    			}
    		}
    		if claim.Status.Allocation != nil &&
    			!resourceclaim.IsReservedForPod(pod, claim) &&
    			resourceclaim.CanBeReserved(claim) {
    			// Need to reserve it.
    			return true, "need to reserve claim for pod"
    		}
    	}
    
    	return false, "nothing to do"
    }
    
    func (ec *Controller) enqueueResourceClaim(logger klog.Logger, obj interface{}, deleted bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

                                                int index,
                                                const QuantParamsEntry &info) {
      if (info.params_size() == 0) return;
    
      SmallVector<APFloat, 4> min_maxs;
      min_maxs.reserve(info.params_size() * 2);
      for (const auto &param : info.params()) {
        llvm::APFloat min(param.min_max().min());
        llvm::APFloat max(param.min_max().max());
        min_maxs.push_back(min);
        min_maxs.push_back(max);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top