Skip to content

Commit

Permalink
Skip windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Nov 13, 2024
1 parent ff6ea28 commit df607eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/brevitas_examples/test_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,8 @@ def test_small_models_quant_layer(caplog, layer_args):
if args.replace_rmsnorm:
if torch_version < version.parse('2.4'):
pytest.skip("Replacing RMSNorm requires torch 2.4+ or greater")
if hasattr(
args,
'graph_rotation') and args.graph_rotation == 'fx' and platform.system() == 'win32':
if hasattr(args, 'graph_rotation') and args.graph_rotation == 'fx' and platform.system(
) == 'Windows':
pytest.skip("Skipping dynamo + windows")
float_ppl, quant_ppl, model = validate_args_and_run_main(args)
assert_layer_types(model, exp_layer_types)
Expand Down

0 comments on commit df607eb

Please sign in to comment.