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

Resolve CPU llm smoke / integration test hangs by temporarily removing 8-request testcases #1028

Merged
merged 7 commits into from
Mar 6, 2025
Merged
Changes from 5 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 .github/workflows/pkgci_shark_ai.yml
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ jobs:
matrix:
include:
- name: cpu
runs-on: azure-cpubuilder-linux-scale
runs-on: ubuntu-latest
test_device: cpu
python-version: 3.11
- name: amdgpu_rocm_mi300_gfx942
Original file line number Diff line number Diff line change
@@ -64,7 +64,13 @@ def test_basic_generation_input_ids(
message=f"Generation did not match expected pattern.\nExpected to start with: {expected_prefix}\nActual response: {response}",
)

@pytest.mark.parametrize("concurrent_requests", [2, 4, 8])
@pytest.mark.parametrize(
"concurrent_requests",
[
2,
4,
],
)
def test_concurrent_generation(
self, server: tuple[Any, int], concurrent_requests: int
) -> None:
Original file line number Diff line number Diff line change
@@ -64,7 +64,7 @@ def test_basic_generation_input_ids(
message=f"Generation did not match expected pattern.\nExpected to start with: {expected_prefix}\nActual response: {response}",
)

@pytest.mark.parametrize("concurrent_requests", [2, 4, 8])
@pytest.mark.parametrize("concurrent_requests", [2, 4])
def test_concurrent_generation(
self, server: tuple[Any, int], concurrent_requests: int
) -> None:
Original file line number Diff line number Diff line change
@@ -51,7 +51,13 @@ def test_basic_generation(self, server: tuple[Any, int]) -> None:
message=f"Generation did not match expected pattern.\nExpected to start with: {expected_prefix}\nActual response: {response}",
)

@pytest.mark.parametrize("concurrent_requests", [2, 4, 8])
@pytest.mark.parametrize(
"concurrent_requests",
[
2,
4,
],
)
def test_concurrent_generation(
self, server: tuple[Any, int], concurrent_requests: int
) -> None: