Skip to content
Open
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
4 changes: 2 additions & 2 deletions lwm/llama.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,10 +571,10 @@ def __call__(

platform = xla_bridge.get_backend().platform
if platform == "tpu":
logging.info(f"Using fused attention for {platform}")
logger.info(f"Using fused attention for {platform}")
ring_attention_fn = ring_flash_attention_tpu
else:
logging.info(f"Fused attention is not yet supported for {platform}, using non-fused version")
logger.info(f"Fused attention is not yet supported for {platform}, using non-fused version")
ring_attention_fn = ring_attention # uses BPT attention
ring_attention_sharded = shard_map(
partial(
Expand Down