Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 109 for Change (0.12 sec)

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

            filter_quantized_type.getScale(), filter_quantized_type.getZeroPoint(),
            /*narrow_range=*/true);
      }
    
      // Required because the quantized dimension is changed from 3 -> 0.
      auto new_filter_result_type = RankedTensorType::getChecked(
          filter_constant_op.getLoc(), /*shape=*/new_filter_shape,
          /*type=*/new_filter_quantized_type);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

      |   dealt with by something like drools.
      |
      | o i18n: would be good to be able to have names/descriptions/specifications
      |   in as many languages as possible. (see MNG-3626)
      |
      | o annotation mechanism so that changes to the model can be accurately tracked.
      |
      | o need to clean up all the descriptions, matching anything to the current project-descriptor.xml file and
      |   improving on that
      |
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	compareMeta1 := make(map[string]string)
    	for k, v := range oi1.UserDefined {
    		var found bool
    		for _, prefix := range compareKeys {
    			if !stringsHasPrefixFold(k, prefix) {
    				continue
    			}
    			found = true
    			break
    		}
    		if found {
    			compareMeta1[strings.ToLower(k)] = v
    		}
    	}
    
    	compareMeta2 := make(map[string]string)
    	for k, v := range oi2.Metadata {
    		var found bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %1 : tensor<1x1x2x!quant.uniform<i8:f32, 4.000000e+04:127>>
    }
    // Nothing changes.
    // CHECK: stablehlo.dot_general
    // CHECK-NOT: tfl.fully_connected
    // CHECK-NOT: tfl.batch_matmul
    
    // -----
    
    // Tests that when the weight tensor for `stablehlo.dot_general` is per-axis
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/asmz.go

    	buffer := make([]byte, 0)
    	changed := true
    	loop := 0
    	nrelocs0 := len(c.cursym.R)
    	for changed {
    		if loop > 100 {
    			c.ctxt.Diag("stuck in spanz loop")
    			break
    		}
    		changed = false
    		buffer = buffer[:0]
    		for i := range c.cursym.R[nrelocs0:] {
    			c.cursym.R[nrelocs0+i] = obj.Reloc{}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    orsites.com
    
    // Opera Software, A.S.A.
    // Submitted by Yngve Pettersen <******@****.***>
    operaunite.com
    
    // Orange : https://www.orange.com
    // Submitted by Alexandre Linte <alexandre.linte@orange.com>
    tech.orange
    
    // Oursky Limited : https://authgear.com/, https://skygear.io/
    // Submitted by Authgear Team <******@****.***>, Skygear Developer <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    	}
    
    	if globalIsTLS {
    		for _, c := range globalPublicCerts {
    			check := xxh3.Hash(c.RawIssuer)
    			check ^= xxh3.Hash(c.RawSubjectPublicKeyInfo)
    			// We XOR, so order doesn't matter.
    			for _, v := range c.DNSNames {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.EmailAddresses {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.IPAddresses {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        A pass that propagates device assignment of resources on a module. It
        performs in-function propagation, as well as cross-function propagation from
        callers to callees.
    
        This pass changes the module by adding "tf.device" attribute to function
        arguments and adding "device" attribute to TF ops.
    
        For example, given the function
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	ENOTBLK     = syscall.Errno(0xf)
    	ENOTDIR     = syscall.Errno(0x14)
    	ENOTTY      = syscall.Errno(0x19)
    	ENXIO       = syscall.Errno(0x6)
    	EPERM       = syscall.Errno(0x1)
    	EPIPE       = syscall.Errno(0x20)
    	ERANGE      = syscall.Errno(0x22)
    	EROFS       = syscall.Errno(0x1e)
    	ESPIPE      = syscall.Errno(0x1d)
    	ESRCH       = syscall.Errno(0x3)
    	ETXTBSY     = syscall.Errno(0x1a)
    	EWOULDBLOCK = syscall.Errno(0xb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    		return false
    	}
    	for _, aThreshold := range expected {
    		equal := false
    		for _, bThreshold := range actual {
    			if thresholdEqual(aThreshold, bThreshold) {
    				equal = true
    			}
    		}
    		if !equal {
    			return false
    		}
    	}
    	for _, aThreshold := range actual {
    		equal := false
    		for _, bThreshold := range expected {
    			if thresholdEqual(aThreshold, bThreshold) {
    				equal = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top