Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for Reserve (0.34 sec)

  1. cmd/kube-scheduler/app/options/options_test.go

    									{Name: "InterPodAffinity"},
    								},
    							},
    							Score:      defaults.PluginsV1.Score,
    							Bind:       defaults.PluginsV1.Bind,
    							PreBind:    defaults.PluginsV1.PreBind,
    							Reserve:    defaults.PluginsV1.Reserve,
    							MultiPoint: defaults.PluginsV1.MultiPoint,
    						},
    						PluginConfig: []kubeschedulerconfig.PluginConfig{
    							{
    								Name: "InterPodAffinity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

      quant::QuantizedType convertFakeQuantAttrsToType(ConstFakeQuantPerAxis fqOp,
                                                       Type expressedType) const {
        SmallVector<double, 4> min, max;
        min.reserve(fqOp.getMin().size());
        max.reserve(fqOp.getMax().size());
        for (auto m : fqOp.getMin())
          min.push_back(cast<FloatAttr>(m).getValueAsDouble());
        for (auto m : fqOp.getMax())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    	f.metricsRecorder.ObservePluginDurationAsync(metrics.Reserve, pl.Name(), status.Code().String(), metrics.SinceInSeconds(startTime))
    	return status
    }
    
    // RunReservePluginsUnreserve runs the Unreserve method in the set of
    // configured reserve plugins.
    func (f *frameworkImpl) RunReservePluginsUnreserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/mlir_pass_instrumentation.cc

    GetPassInstrumentors() {
      MlirPassInstrumentationRegistry& r =
          MlirPassInstrumentationRegistry::Instance();
      std::vector<std::function<std::unique_ptr<PassInstrumentation>()>> result;
      result.reserve(r.instrumentors_.size());
    
      std::transform(r.instrumentors_.begin(), r.instrumentors_.end(),
                     std::back_inserter(result), [](auto v) { return v.second; });
    
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 22 18:41:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/experimental/public/concrete_function_list.h

    };
    
    inline std::vector<ConcreteFunction*> ConcreteFunctionList::ToVector() {
      int size = TF_ConcreteFunctionListSize(list_.get());
      std::vector<ConcreteFunction*> result;
      result.reserve(size);
      for (int i = 0; i < size; ++i) {
        result.push_back(
            ConcreteFunction::wrap(TF_ConcreteFunctionListGet(list_.get(), i)));
      }
      return result;
    }
    
    }  // namespace cc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      llvm::SmallVector<Value, 4> data_fetches;
      llvm::SmallVector<Type, 4> data_types;
      llvm::SmallVector<Value, 4> control_fetches;
      data_fetches.reserve(fetch.getFetches().size());
      data_types.reserve(data_fetches.capacity());
      control_fetches.reserve(data_fetches.capacity());
    
      for (auto value : fetch.getFetches()) {
        if (mlir::isa<ControlType>(value.getType())) {
          control_fetches.push_back(value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/runtime/rt0_darwin_arm64.s

    	BL	(R4)
    
    	// Create a new thread to do the runtime initialization and return.
    	MOVD  _cgo_sys_thread_create(SB), R4
    	MOVD  $_rt0_arm64_darwin_lib_go(SB), R0
    	MOVD  $0, R1
    	SUB   $16, RSP		// reserve 16 bytes for sp-8 where fp may be saved.
    	BL    (R4)
    	ADD   $16, RSP
    
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(8)
    	RESTORE_F8_TO_F15(88)
    
    	RET
    
    TEXT _rt0_arm64_darwin_lib_go(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/runtime/mpagealloc_64bit.go

    func (p *pageAlloc) sysInit(test bool) {
    	// Reserve memory for each level. This will get mapped in
    	// as R/W by setArenas.
    	for l, shift := range levelShift {
    		entries := 1 << (heapAddrBits - shift)
    
    		// Reserve b bytes of memory anywhere in the address space.
    		b := alignUp(uintptr(entries)*pallocSumBytes, physPageSize)
    		r := sysReserve(nil, b)
    		if r == nil {
    			throw("failed to reserve page summary memory")
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/low_bit_utils.cc

      }
    
      return packed_buffer;
    }
    
    std::vector<char> UnpackDenseInt4IntoInt8(
        const std::vector<uint8_t>& src_buffer, int64_t num_elements) {
      std::vector<char> unpacked_buffer;
      unpacked_buffer.reserve(num_elements);
    
      for (uint8_t value : src_buffer) {
        // Cast to signed before right-shifting to ensure correct sign extension
        unpacked_buffer.push_back(static_cast<int8_t>(value << 4) >> 4);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 04 19:11:58 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/runtime/mpagealloc_32bit.go

    		totalSize += (uintptr(1) << (heapAddrBits - levelShift[l])) * pallocSumBytes
    	}
    	totalSize = alignUp(totalSize, physPageSize)
    
    	// Reserve memory for all levels in one go. There shouldn't be much for 32-bit.
    	reservation := sysReserve(nil, totalSize)
    	if reservation == nil {
    		throw("failed to reserve page summary memory")
    	}
    	// There isn't much. Just map it and mark it as used immediately.
    	sysMap(reservation, totalSize, p.sysStat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 20:08:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top