Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for uimm16 (0.09 sec)

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

          ConversionPatternRewriter& rewriter) const final {
        RankedTensorType type =
            mlir::dyn_cast_or_null<RankedTensorType>(iota_op.getType());
        // TF::RangeOp doesn't support UI16.
        if (!type || type.getElementType().isUnsignedInteger(16)) return failure();
    
        const uint64_t dimension = iota_op.getIotaDimension();
        Type element_type = type.getElementType();
    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. src/unicode/tables.go

    	0xFA: pLl | pp, // 'ú'
    	0xFB: pLl | pp, // 'û'
    	0xFC: pLl | pp, // 'ü'
    	0xFD: pLl | pp, // 'ý'
    	0xFE: pLl | pp, // 'þ'
    	0xFF: pLl | pp, // 'ÿ'
    }
    
    var asciiFold = [MaxASCII + 1]uint16{
    	0x0000,
    	0x0001,
    	0x0002,
    	0x0003,
    	0x0004,
    	0x0005,
    	0x0006,
    	0x0007,
    	0x0008,
    	0x0009,
    	0x000A,
    	0x000B,
    	0x000C,
    	0x000D,
    	0x000E,
    	0x000F,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    			return
    		}
    		if _, err := io.ReadFull(s, buf[4:ipLen+6]); err != nil {
    			t.Errorf("socks5 proxy address read: %v", err)
    			return
    		}
    		ip := net.IP(buf[4 : ipLen+4])
    		port := binary.BigEndian.Uint16(buf[ipLen+4 : ipLen+6])
    		copy(buf[:3], []byte{5, 0, 0})
    		if _, err := s.Write(buf[:ipLen+6]); err != nil {
    			t.Errorf("socks5 proxy connect write: %v", err)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top