Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for io16 (0.1 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // CHECK-SAME: input_to_cell_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 1.2207403790398877E-4>>
    // CHECK-SAME: input_to_forget_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 4.8829615161595508E-4>>
    // CHECK-SAME: input_to_input_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 9.7659230323191015E-4>>
    // CHECK-SAME: input_to_output_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 3.0518509475997192E-5>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %1 = "tfl.dequantize"(%0) : (tensor<2x1x!quant.uniform<i16:f32, 1.0>>) -> (tensor<2x1xf32>)
      %2 = "tfl.quantize"(%arg1) {qtype = tensor<2x3x!quant.uniform<i16:f32, 1.0>>} : (tensor<2x3xf32>) -> tensor<2x3x!quant.uniform<i16:f32, 1.0>>
      %3 = "tfl.dequantize"(%2) : (tensor<2x3x!quant.uniform<i16:f32, 1.0>>) -> (tensor<2x3xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ZeroExt16to(32|64) ...) => (MOVHZreg ...)
    (ZeroExt32to64 ...) => (MOVWZreg ...)
    
    (Trunc(16|32|64)to8 <t> x) && t.IsSigned() => (MOVBreg x)
    (Trunc(16|32|64)to8  x) => (MOVBZreg x)
    (Trunc(32|64)to16 <t> x) && t.IsSigned() => (MOVHreg x)
    (Trunc(32|64)to16 x) => (MOVHZreg x)
    (Trunc64to32 <t> x) && t.IsSigned() => (MOVWreg x)
    (Trunc64to32 x) => (MOVWZreg x)
    
    // Lowering constants
    (Const(64|32|16|8) [val]) => (MOVDconst [int64(val)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    func conjureMac(macPrefix string, ip net.IP) string {
    	if ip4 := ip.To4(); ip4 != nil {
    		a, b, c, d := ip4[0], ip4[1], ip4[2], ip4[3]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    	} else if ip6 := ip.To16(); ip6 != nil {
    		a, b, c, d := ip6[15], ip6[14], ip6[13], ip6[12]
    		return fmt.Sprintf("%v-%02x-%02x-%02x-%02x", macPrefix, a, b, c, d)
    	}
    	return "02-11-22-33-44-55"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    			t.Errorf("unexpected %v for %s", addrs, tt.name)
    		}
    		for _, addr := range addrs {
    			if !tt.a && addr.IP.To4() != nil {
    				t.Errorf("got %v; must not be IPv4 address", addr)
    			}
    			if !tt.aaaa && addr.IP.To16() != nil && addr.IP.To4() == nil {
    				t.Errorf("got %v; must not be IPv6 address", addr)
    			}
    		}
    	}
    }
    
    // Test that goLookupIPOrder falls back to the host file when no DNS servers are available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (Slicemask <t> x) => (SRADconst (NEG <t> x) [63])
    
    // Lowering truncation
    // Because we ignore high parts of registers, truncates are just copies.
    (Trunc(16|32|64)to8 ...) => (Copy ...)
    (Trunc(32|64)to16 ...) => (Copy ...)
    (Trunc64to32 ...) => (Copy ...)
    
    // Lowering float <-> int
    (Cvt32to32F ...) => (CEFBRA ...)
    (Cvt32to64F ...) => (CDFBRA ...)
    (Cvt64to32F ...) => (CEGBRA ...)
    (Cvt64to64F ...) => (CDGBRA ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top