Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tpu_inference/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@

# Map vllm dtype string that doesn't exactly match jax dtype string name.
_VLLM_DTYPE_STR_TO_JAX_DTYPE = {
"fp8": jnp.float8_e4m3fn,
"fp8_e4m3": jnp.float8_e4m3fn,
"fp8_e5m2": jnp.float8_e5m2,
"fp8": jnp.float8_e4m3fn.dtype,
"fp8_e4m3": jnp.float8_e4m3fn.dtype,
"fp8_e5m2": jnp.float8_e5m2.dtype,
}


Expand Down