Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for 1011 (0.03 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      right_shift_result = bitwise_ops.right_shift(lhs, rhs)
    
      print(right_shift_result)
    
    # This will print:
    # tf.Tensor([-1 -5 -1 -1], shape=(4,), dtype=int8)
    # tf.Tensor([-1 -5 -1 -1], shape=(4,), dtype=int16)
    # tf.Tensor([-1 -5 -1 -1], shape=(4,), dtype=int32)
    # tf.Tensor([-1 -5 -1 -1], shape=(4,), dtype=int64)
    
    lhs = np.array([-2, 64, 101, 32], dtype=np.int8)
    rhs = np.array([-1, -5, -3, -14], dtype=np.int8)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top