Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for nums (0.06 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. api/maven-api-model/src/main/mdo/maven.mdo

      |
      | o need to clean up all the descriptions, matching anything to the current project-descriptor.xml file and
      |   improving on that
      |
      | o use enums where appropriate (eg dependency scope)
      |
      | o a number of elements have a groupId/artifactId and sometimes version. It would be good to have them all extend one
      |   definition of these types
      |
    -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"timestamp(-62135596801)":            "compilation failed: ERROR: <input>:1:11: invalid timestamp",
    			},
    		},
    		{name: "enums",
    			obj: map[string]interface{}{"enumStr": "Pending"},
    			schema: objectTypePtr(map[string]schema.Structural{"enumStr": {
    				Generic: schema.Generic{
    					Type: "string",
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

    from tensorflow.python.saved_model import tag_constants
    from tensorflow.python.training import checkpoint_utils
    from tensorflow.python.types import core
    
    
    # Type aliases for quantization method protobuf enums.
    _PresetMethod = quant_opts_pb2.QuantizationMethod.PresetMethod
    _CalibrationMethod = (
        stablehlo_quant_config_pb2.CalibrationOptions.CalibrationMethod
    )
    
    _QuantizationComponent = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top