Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for nums (0.07 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                        ConversionPatternRewriter& rewriter) const {
        mhlo::ConvDimensionNumbersAttr dnums = conv_op.getDimensionNumbers();
        // Transposes lhs and rhs if their formats are not NHWC.
        Value lhs = InsertTranspose(
            conv_op.getLhs(), dnums.getInputBatchDimension(),
            dnums.getInputFeatureDimension(), dnums.getInputSpatialDimensions(),
            /*default_batch_dim=*/0, /*default_feature_dim=*/num_spatial_dims + 1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			pod:           getPod("pod2", "container2", requirementsGuaranteed),
    			expectedError: fmt.Errorf("[memorymanager] failed to get the default NUMA affinity, no NUMA nodes with enough memory is available"),
    			topologyHint:  &topologymanager.TopologyHint{},
    		},
    		{
    			description: "should fail when no NUMA affinity was provided under the topology manager preferred hint and default hint has preferred false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      xla::ConvolutionDimensionNumbers dnums;
      dnums.ParseFromString(op.getDimensionNumbersAttr().getValue().str());
      if (dnums.input_spatial_dimensions_size() !=
          dnums.kernel_spatial_dimensions_size()) {
        return op.emitOpError() << "Both arguments to convolution must have "
                                << "same number of dimensions.\n";
      }
    
      if (dnums.input_spatial_dimensions_size() !=
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	}
    
    	// Parsing the numbers
    	num1, err := strconv.ParseUint(parts[2], 10, 32)
    	if err != nil {
    		return 0, 0, fmt.Errorf("error parsing line %q: %w", input, err)
    	}
    
    	num2, err := strconv.ParseUint(parts[3], 10, 32)
    	if err != nil {
    		return 0, 0, fmt.Errorf("error parsing line %q: %w", input, err)
    	}
    
    	return uint32(num1), uint32(num2), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&ntriangleright;":                  "\u22eb",
    	"&ntrianglerighteq;":                "\u22ed",
    	"&nu;":                              "\u03bd",
    	"&num;":                             "\u0023",
    	"&numero;":                          "\u2116",
    	"&numsp;":                           "\u2007",
    	"&nvDash;":                          "\u22ad",
    	"&nvHarr;":                          "\u2904",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

          fi
          i=$((i+1))
        else
          echo "No local SCSI SSD disks found."
        fi
      done
    
      # The following mounts or symlinks NVMe devices
      get-local-disk-num "nvme" "block"
      local nvmeblocknum="${localdisknum}"
      get-local-disk-num "nvme" "fs"
      local nvmefsnum="${localdisknum}"
      # Check if NVMe SSD specified.
      if [ "${nvmeblocknum}" -eq "0" ] && [ "${nvmefsnum}" -eq "0" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    	// Make map from reg names to reg integers.
    	if len(regNamesAMD64) > 64 {
    		panic("too many registers")
    	}
    	num := map[string]int{}
    	for i, name := range regNamesAMD64 {
    		num[name] = i
    	}
    	buildReg := func(s string) regMask {
    		m := regMask(0)
    		for _, r := range strings.Split(s, " ") {
    			if n, ok := num[r]; ok {
    				m |= regMask(1) << uint(n)
    				continue
    			}
    			panic("register " + r + " not found")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        // to `next`s yield.
    
        // The number of values we're passing along.
        int num = getNext().front().getTerminator()->getNumOperands();
    
        // The number of extra values from the parent ops that should go to `next`
        // and `finalize`.
        regions.push_back(RegionSuccessor(
            &getNext(), getNext().front().getArguments().slice(0, num)));
        regions.push_back(RegionSuccessor(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				t.Errorf("Unexpected diff (-want, +got):\n%s", diff)
    			}
    		})
    	}
    }
    
    func makeQueuedPodInfos(num int, namePrefix, label string, timestamp time.Time) []*framework.QueuedPodInfo {
    	var pInfos = make([]*framework.QueuedPodInfo, 0, num)
    	for i := 1; i <= num; i++ {
    		p := &framework.QueuedPodInfo{
    			PodInfo: mustNewPodInfo(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. fastapi/routing.py

            else:
                current_generate_unique_id = generate_unique_id_function
            self.unique_id = self.operation_id or current_generate_unique_id(self)
            # normalize enums e.g. http.HTTPStatus
            if isinstance(status_code, IntEnum):
                status_code = int(status_code)
            self.status_code = status_code
            if self.response_model:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
Back to top