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 de9f039 commit 2adebe4Copy full SHA for 2adebe4
tests/models/hf/test_hf_mpt_gen.py
@@ -24,6 +24,10 @@ def test_init_hfhub_mpt(
24
pytest.skip(f'{attn_impl=} not implemented for {device=}.')
25
composer_device = get_device(device)
26
27
+ if device == 'gpu' and attn_impl == 'flash':
28
+ pytest.xfail(f'{attn_impl=} on {device=} is not supported for MPT models.')
29
+ composer_device = get_device(device)
30
+
31
model = build_tiny_hf_mpt(
32
attn_config={
33
'attn_impl': attn_impl,
0 commit comments