We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d2dc17 commit 2178ed2Copy full SHA for 2178ed2
tests/pallas/ops_test.py
@@ -1941,9 +1941,13 @@ def kernel(x_ref, out_ref):
1941
1942
@parameterized.parameters(
1943
(jnp.float16, jnp.float16), # Noop
1944
- (jnp.int16, jnp.float16),
1945
(jnp.int16, jnp.bfloat16),
+ (jnp.int16, jnp.float16),
1946
+ (jnp.uint16, jnp.float16),
1947
(jnp.float32, jnp.int32),
1948
+ (jnp.float32, jnp.uint32),
1949
+ (jnp.uint32, jnp.int32),
1950
+ (jnp.int32, jnp.uint32),
1951
)
1952
def test_bitcast_convert_type(self, in_dtype, out_dtype):
1953
if jtu.test_device_matches(["tpu"]):
0 commit comments