Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 91 for io16 (0.1 sec)

  1. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        200- : Python related translator internal types
      """
      TENSOR = 1
      TENSOR_LIST = 2
      ATTR = 3
      NONE = 4
      SHAPE = 5  # shape -> !shape.shape
      I1 = 21
      I8 = 22
      I16 = 23
      I32 = 24
      I64 = 25
      F32 = 26
      INDEX = 27
      AG_UNDEFINED_VAL = 100
      AG_BUILTIN_FUNC = 101
      TF_RAW_OP = 102
      TF_REGION = 103
      TF_TENSOR_SHAPE_FUNC = 104  # shape.as_list
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    	'b': "bool",
    	'c': "char",
    	'd': "f64",
    	'e': "str",
    	'f': "f32",
    	'h': "u8",
    	'i': "isize",
    	'j': "usize",
    	'l': "i32",
    	'm': "u32",
    	'n': "i128",
    	'o': "u128",
    	'p': "_",
    	's': "i16",
    	't': "u16",
    	'u': "()",
    	'v': "...",
    	'x': "i64",
    	'y': "u64",
    	'z': "!",
    }
    
    // basicType parses:
    //
    //	<basic-type>
    func (rst *rustState) basicType() {
    	if len(rst.str) < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_Bool : AnyTypeOf<[I<1>, TF_BoolRef], "bool">;
    
    def TF_Int4 : AnyTypeOf<[SI<4>, TF_Int4Ref], "4-bit integer">;
    def TF_Int8 : AnyTypeOf<[I8, TF_Int8Ref], "8-bit integer">;
    def TF_Int16 : AnyTypeOf<[I16, TF_Int16Ref], "16-bit integer">;
    def TF_Int32 : AnyTypeOf<[I32, TF_Int32Ref], "32-bit integer">;
    def TF_Int64 : AnyTypeOf<[I64, TF_Int64Ref], "64-bit integer">;
    def TF_I32OrI64 : AnyTypeOf<[I32, I64, TF_Int32Ref, TF_Int64Ref],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    	)
    	return setters
    }
    
    // Validate given node IP belongs to the current host
    func validateNodeIP(nodeIP net.IP) error {
    	// Honor IP limitations set in setNodeStatus()
    	if nodeIP.To4() == nil && nodeIP.To16() == nil {
    		return fmt.Errorf("nodeIP must be a valid IP address")
    	}
    	if nodeIP.IsLoopback() {
    		return fmt.Errorf("nodeIP can't be loopback address")
    	}
    	if nodeIP.IsMulticast() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen_test.py

          CHECK:        %[[rescale:.*]] = tfr.quant_rescale(%[[Sub]], %[[factor1]], %{{.*}}) : (!tfr.tensor, !tfr.tensor, i64) -> (!tfr.tensor)
          CHECK:        %[[attr:.*]] = tfr.constant i16 -> !tfr.attr
          CHECK:        %[[Cast:.*]] = tfr.call @tf__cast(%[[rescale]], %[[attr]], %{{.*}}) : (!tfr.tensor, !tfr.attr, i1) -> (!tfr.tensor)
          CHECK:        %[[attr_1:.*]] = tfr.constant i8 -> !tfr.attr
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 28.8K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server.go

    	} else {
    		// if not ipv6-only, it can be ipv4-only or dual-stack
    		// let InstanceIP decide the localhost
    		netIP := net.ParseIP(config.PodIP)
    		if netIP.To4() == nil && netIP.To16() != nil && !netIP.IsLinkLocalUnicast() {
    			localhost = localHostIPv6
    			upstreamLocalAddress = UpstreamLocalAddressIPv6
    		}
    	}
    	probes := make([]ready.Prober, 0)
    	if !config.NoEnvoy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (1)
  7. src/net/lookup.go

    	if host == "" {
    		return nil, newDNSError(errNoSuchHost, host, "")
    	}
    	if ip, err := netip.ParseAddr(host); err == nil {
    		return []IPAddr{{IP: IP(ip.AsSlice()).To16(), Zone: ip.Zone()}}, nil
    	}
    	trace, _ := ctx.Value(nettrace.TraceKey{}).(*nettrace.Trace)
    	if trace != nil && trace.DNSStart != nil {
    		trace.DNSStart(host)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. 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)
  9. src/net/lookup_test.go

    		ips, err := LookupIP(tt.name)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if len(ips) == 0 {
    			t.Error("got no record")
    		}
    		for _, ip := range ips {
    			if ip.To4() == nil && ip.To16() == nil {
    				t.Errorf("got %v; want an IP address", ip)
    			}
    		}
    	}
    }
    
    var revAddrTests = []struct {
    	Addr      string
    	Reverse   string
    	ErrPrefix string
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/fp_test.go

    	if x != expected {
    		fmt.Printf("U16 %s: Expected 0x%04x, got 0x%04x\n", s, expected, x)
    	}
    }
    
    func expectInt16(t *testing.T, s string, x, expected int16) {
    	if x != expected {
    		fmt.Printf("I16 %s: Expected 0x%04x, got 0x%04x\n", s, expected, x)
    	}
    }
    
    func expectAll64(t *testing.T, s string, expected, a, b, c, d, e, f, g, h, i float64) {
    	expect64(t, s+":a", a, expected)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
Back to top