Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 18446744073709551615B (0.79 sec)

  1. src/cmd/compile/internal/test/constFold_test.go

    	y = 1
    	r = x / y
    	if r != 18446744073709551615 {
    		t.Errorf("18446744073709551615 %s 1 = %d, want 18446744073709551615", "/", r)
    	}
    	y = 4294967296
    	r = x / y
    	if r != 4294967295 {
    		t.Errorf("18446744073709551615 %s 4294967296 = %d, want 4294967295", "/", r)
    	}
    	y = 18446744073709551615
    	r = x / y
    	if r != 1 {
    		t.Errorf("18446744073709551615 %s 18446744073709551615 = %d, want 1", "/", r)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 323K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    }
    
    // CHECK-LABEL:   func @convert_not_ui64(
    // CHECK-SAME:                      %[[ARG:.*]]: tensor<7x9x11xui64>) -> tensor<7x9x11xui64> {
    // CHECK:           %[[CST:.*]] = "tf.Const"() <{value = dense<18446744073709551615> : tensor<ui64>}> : () -> tensor<ui64>
    // CHECK:           %[[RES:.*]] = "tf.BitwiseXor"(%[[ARG]], %[[CST]]) : (tensor<7x9x11xui64>, tensor<ui64>) -> tensor<7x9x11xui64>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  3. doc/go_spec.html

    uint16      the set of all unsigned 16-bit integers (0 to 65535)
    uint32      the set of all unsigned 32-bit integers (0 to 4294967295)
    uint64      the set of all unsigned 64-bit integers (0 to 18446744073709551615)
    
    int8        the set of all signed  8-bit integers (-128 to 127)
    int16       the set of all signed 16-bit integers (-32768 to 32767)
    int32       the set of all signed 32-bit integers (-2147483648 to 2147483647)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top