Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 718 for divides (0.11 sec)

  1. test/zerodivide.go

    	ErrorTest{"uint8 0/0", func() { use(u8 / v8) }, "divide"},
    	ErrorTest{"uint16 0/0", func() { use(u16 / v16) }, "divide"},
    	ErrorTest{"uint32 0/0", func() { use(u32 / v32) }, "divide"},
    	ErrorTest{"uint64 0/0", func() { use(u64 / v64) }, "divide"},
    	ErrorTest{"uintptr 0/0", func() { use(up / vp) }, "divide"},
    
    	ErrorTest{"uint 1/0", func() { use(w / v) }, "divide"},
    	ErrorTest{"uint8 1/0", func() { use(w8 / v8) }, "divide"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/tests/shlo_simplify.mlir

      %2 = stablehlo.divide %0, %1 : tensor<2xf32>
      return %2 : tensor<2xf32>
    }
    
    // CHECK-LABEL: foldDiv
    // CHECK: stablehlo.constant dense<5.000000e-01> : tensor<2xf32>
    
    // -----
    
    func.func @foldDivLHSSplat() -> tensor<2xf32> {
      %0 = stablehlo.constant dense<2.0> : tensor<2xf32>
      %1 = stablehlo.constant dense<[4.0, 6.0]> : tensor<2xf32>
      %2 = stablehlo.divide %0, %1 : tensor<2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 03:05:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    ght .uk-divider-icon::after,.uk-light .uk-divider-icon::before,.uk-offcanvas-bar .uk-divider-icon::after,.uk-offcanvas-bar .uk-divider-icon::before,.uk-overlay-primary .uk-divider-icon::after,.uk-overlay-primary .uk-divider-icon::before,.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::after,.uk-section-primary:not(.uk-preserve-color) .uk-divider-icon::before,.uk-section-secondary:not(.uk-preserve-color) .uk-divider-icon::after,.uk-section-secondary:not(.uk-preserve-color) .uk-divide...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

                                    DenseIntElementsAttr replica_groups,
                                    Operation* op) {
      // Use special group_key 0 to represent "all available devices". This
      // shall resolve to a DeviceAssignment that includes all devices intended for
      // replica_groups.
      IntegerAttr group_size = builder.getI32IntegerAttr(replica_groups.size());
      IntegerAttr group_key = builder.getI32IntegerAttr(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	CBCDTD:         "cbcdtd",
    	CDTBCD:         "cdtbcd",
    	DCFFIX:         "dcffix",
    	DCFFIXCC:       "dcffix.",
    	DIVDE:          "divde",
    	DIVDECC:        "divde.",
    	DIVDEO:         "divdeo",
    	DIVDEOCC:       "divdeo.",
    	DIVDEU:         "divdeu",
    	DIVDEUCC:       "divdeu.",
    	DIVDEUO:        "divdeuo",
    	DIVDEUOCC:      "divdeuo.",
    	DIVWE:          "divwe",
    	DIVWECC:        "divwe.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

          absl::StrCat("found ", kDeviceTPUSystem, " devices with conflicting ",
                       attribute, "s '", a, "' and '", b, "'"));
    }
    
    // Find TPU_SYSTEM:0 devices in `devices`. If multiple TPU_SYSTEM devices are
    // found, the first one lexicographically is returned. If no TPU_SYSTEM device
    // is found or if there are multiple TPU_SYSTEM devices with different jobs or
    // replicas, a failure will be returned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/utils/device_util.cc

      mlir::Builder builder(ctx);
    
      // Collect devices with attached metadata.
      llvm::SmallVector<mlir::NamedAttribute, 8> devices;
      devices.reserve(device_set->devices().size());
    
      // For device that do not have any metadata, or if we failed to parse metadata
      // from the DeviceSet, we add a unit attribute to the `tf.devices` attribute.
      for (Device* device : device_set->devices()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. test/fixedbugs/bug366.go

           // 5
           var a, b byte = 5, 3
           five(int64(a / (a / b)))
           
           // integer divide by zero in golang.org sandbox
           // 0 on windows/amd64
           x := [3]byte{2, 3, 5}
           five(int64(x[2] / (x[2] / x[1])))
    
           // integer divide by zero in golang.org sandbox
           // crash on windows/amd64
           y := x[1:3]
           five(int64(y[1] / (y[1] / y[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 799 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager.go

    	// Check if registered resource has healthy devices
    	if healthyDevices.Len() == 0 {
    		return nil, fmt.Errorf("no healthy devices present; cannot allocate unhealthy devices %s", resource)
    	}
    
    	// Check if all the previously allocated devices are healthy
    	if !healthyDevices.IsSuperset(devices) {
    		return nil, fmt.Errorf("previously allocated devices are no longer healthy; cannot allocate unhealthy devices %s", resource)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/endpoint_test.go

    			require.Equal(t, devices[1].Health, devs[1].Health)
    			require.Equal(t, devices[2].Health, devs[2].Health)
    		}
    
    		// Check plugin update
    		if callbackCount == 1 {
    			require.Len(t, devices, 3)
    			require.Equal(t, devices[0].ID, updated[0].ID)
    			require.Equal(t, devices[1].ID, updated[1].ID)
    			require.Equal(t, devices[2].ID, updated[2].ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
Back to top