Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of about 10,000 for Reserve (1.06 sec)

  1. tensorflow/compiler/mlir/lite/utils/perception_ops_utils.cc

      if (array_attr == nullptr || array_attr.size() != N) {
        return func->emitError()
               << "'" << attr_name << "' attribute for " << kMaxUnpooling
               << " must be set and has size of " << N;
      }
      results->reserve(N);
    
      for (Attribute integer_attr : array_attr.getValue()) {
        IntegerAttr value = mlir::dyn_cast<IntegerAttr>(integer_attr);
        if (!value) {
          return func->emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_outline_tpu_island.cc

        llvm::SetVector<Value> operands;
        getUsedValuesDefinedAbove(island_op.getBody(), operands);
    
        SmallVector<Type, 16> func_operand_types;
        func_operand_types.reserve(operands.size());
        for (Value operand : operands)
          func_operand_types.push_back(operand.getType());
    
        // Function results are the yield operands
        SmallVector<Type, 16> func_result_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

          << "Wrong number of arguments for function " << function_name.str();
    
      // Prepare function arguments from ready Chain and input Tensors.
      llvm::SmallVector<tfrt::AsyncValue*> exec_arguments;
      exec_arguments.reserve(compute->num_arguments());
      exec_arguments.push_back(tfrt::GetReadyChain().release());
      for (const Tensor& input_tensor : arguments) {
        auto av = MakeAvailableAsyncValueRef<FallbackTensor>(input_tensor);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_s390x.s

    	MOVD	R4, m_vdsoSP(R6)
    
    	MOVD	m_curg(R6), R5
    	CMP		g, R5
    	BNE		noswitch
    
    	MOVD	m_g0(R6), R4
    	MOVD	(g_sched+gobuf_sp)(R4), R15	// Set SP to g0 stack
    
    noswitch:
    	SUB		$16, R15		// reserve 2x 8 bytes for parameters
    	MOVD	$~7, R4			// align to 8 bytes because of gcc ABI
    	AND		R4, R15
    	MOVD	R15, R3			// R15 needs to be in R3 as expected by kernel_clock_gettime
    
    	MOVB	runtime·iscgo(SB),R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := Convert_v1_PluginSet_To_config_PluginSet(&in.Score, &out.Score, s); err != nil {
    		return err
    	}
    	if err := Convert_v1_PluginSet_To_config_PluginSet(&in.Reserve, &out.Reserve, s); err != nil {
    		return err
    	}
    	if err := Convert_v1_PluginSet_To_config_PluginSet(&in.Permit, &out.Permit, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    		return `""`
    	}
    	n := len(s)
    	hasSpace := false
    	for i := 0; i < len(s); i++ {
    		switch s[i] {
    		case '"', '\\':
    			n++
    		case ' ', '\t':
    			hasSpace = true
    		}
    	}
    	if hasSpace {
    		n += 2 // Reserve space for quotes.
    	}
    	if n == len(s) {
    		return s
    	}
    
    	qs := make([]byte, n)
    	j := 0
    	if hasSpace {
    		qs[j] = '"'
    		j++
    	}
    	slashes := 0
    	for i := 0; i < len(s); i++ {
    		switch s[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

      auto pjrt_device =
          pjrt_client_->LookupAddressableDevice(device_->parsed_name().id);
      TF_EXPECT_OK(pjrt_device.status());
    
      std::vector<xla::PjRtBuffer*> exec_args;
      exec_args.reserve(input_mapping.size());
      absl::flat_hash_set<int> non_donatable_input_indices;
      TF_EXPECT_OK(PreparePjRtExecutableArguments(
          num_missing_prefix_ctx_inputs, input_mapping, inputs,
          GetVariableSnapshots(variables),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/zz_generated.deepcopy.go

    	in.PreFilter.DeepCopyInto(&out.PreFilter)
    	in.Filter.DeepCopyInto(&out.Filter)
    	in.PostFilter.DeepCopyInto(&out.PostFilter)
    	in.PreScore.DeepCopyInto(&out.PreScore)
    	in.Score.DeepCopyInto(&out.Score)
    	in.Reserve.DeepCopyInto(&out.Reserve)
    	in.Permit.DeepCopyInto(&out.Permit)
    	in.PreBind.DeepCopyInto(&out.PreBind)
    	in.Bind.DeepCopyInto(&out.Bind)
    	in.PostBind.DeepCopyInto(&out.PostBind)
    	in.MultiPoint.DeepCopyInto(&out.MultiPoint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 22:02:57 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top