Skip to content
Merged
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
2 changes: 1 addition & 1 deletion paddlenlp/transformers/qwen2/modeling.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@

self.use_fused_rope = config.use_fused_rope
if self.use_fused_rope:
if "gpu" not in paddle.device.get_device() or fused_rotary_position_embedding is None:
if get_env_device() not in ["gpu", "xpu"] or fused_rotary_position_embedding is None:

Check warning on line 487 in paddlenlp/transformers/qwen2/modeling.py

View check run for this annotation

Codecov / codecov/patch

paddlenlp/transformers/qwen2/modeling.py#L487

Added line #L487 was not covered by tests
warnings.warn(
"Enable fuse rope in the config, but fuse rope is not available. "
"Will disable fuse rope. Try using latest gpu version of Paddle."
Expand Down