Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ModelBuilder: remove enable_GQA_on_CPU option #1146

Merged
merged 1 commit into from
May 10, 2024

remove enable_GQA_on_CPU

d1e2842
Select commit
Loading
Failed to load commit list.
Merged

ModelBuilder: remove enable_GQA_on_CPU option #1146

remove enable_GQA_on_CPU
d1e2842
Select commit
Loading
Failed to load commit list.
Azure Pipelines / Olive CI succeeded May 10, 2024 in 14m 39s

Build #20240509.19 had test failures

Details

Tests

  • Failed: 1 (0.05%)
  • Passed: 1,910 (96.91%)
  • Other: 60 (3.04%)
  • Total: 1,971
Code coverage

  • 3517 of 15530 lines covered (22.65%)

Annotations

Check failure on line 1 in test_inception_snpe[True]

See this annotation in the file changed.

@azure-pipelines azure-pipelines / Olive CI

test_inception_snpe[True]

AssertionError: footprints is empty. The search must have failed for all accelerator specs.
Raw output
self = <test_snpe_toolkit.TestSnpeToolkit object at 0x000001A961933D90>
use_olive_env = True

    @pytest.mark.parametrize("use_olive_env", [True, False])
    def test_inception_snpe(self, use_olive_env):
        from olive.workflows import run as olive_run
    
        self._setup_resource(use_olive_env)
    
        footprint = olive_run("inception_config.json")
>       check_output(footprint)

D:\a\_work\1\s\examples\test\test_snpe_toolkit.py:90: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

footprints = {}

    def check_output(footprints):
        """Check if the search output is valid."""
>       assert footprints, "footprints is empty. The search must have failed for all accelerator specs."
E       AssertionError: footprints is empty. The search must have failed for all accelerator specs.

D:\a\_work\1\s\examples\test\utils.py:15: AssertionError