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
3 changes: 1 addition & 2 deletions packages/sdk/tests-qvac/tests/mobile/consumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ import { DelegatedInferenceExecutor } from "../shared/executors/delegated-infere
import { MobileDiffusionExecutor } from "./executors/diffusion-executor.js";
import { LifecycleExecutor } from "../shared/executors/lifecycle-executor.js";
import { ConfigExecutor } from "../shared/executors/config-executor.js";
import { MultiGpuExecutor } from "../shared/executors/multi-gpu-executor.js";

const resources = new ResourceManager({
// Mobile (iOS + Android) needs a tick after each unloadModel for the
Expand Down Expand Up @@ -357,6 +356,7 @@ export const executor = createExecutor({
"http-archive-embed-inference",
], "HTTP test disabled on mobile (OOM)"),
new SkipExecutor(/^finetune-/, "Finetune tests disabled on mobile"),
new SkipExecutor(/^multi-gpu-/, "Multi-GPU tests disabled on mobile (not supported on single-GPU devices)"),
new SkipExecutor(/^tools-(?!simple-function$|no-function-match$)/, "Tools test disabled on mobile"),
new SkipExecutor(/^(diffusion-|addon-logging-diffusion$)/, "SD v2.1 1B Q8_0 cold-load is too heavy for Device Farm devices (iOS variable 5–15min, Android blocks JS thread >300s and trips heartbeat)"),
// suspend() hangs the test runner on mobile (the lifecycle coordinator
Expand Down Expand Up @@ -423,7 +423,6 @@ export const executor = createExecutor({
new MobileDiffusionExecutor(resources),
new LifecycleExecutor(resources),
new ConfigExecutor(),
new MultiGpuExecutor(resources),
],
profiling: {
init: () => profiler.enable({ mode: "summary", includeServerBreakdown: true }),
Expand Down
Loading