Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
// Phase 5 gated real-weight coverage for previously tiny-random-only archs
// ────────────────────────────────────────────────────────────────────

[Fact]
[SkippableFact]
public void Mistral7B_LoadsAndForwardsEndToEnd_WhenCheckpointPresent()
=> RunGatedSafetensorsSmoke(
envVar: "DOTLLM_MISTRAL_7B_CHECKPOINT_PATH",
Expand All @@ -254,7 +254,7 @@
Assert.True(config.NumLayers >= 32);
});

[Fact]
[SkippableFact]
public void Mixtral8x7B_LoadsAndForwardsEndToEnd_WhenCheckpointPresent()
=> RunGatedSafetensorsSmoke(
envVar: "DOTLLM_MIXTRAL_8X7B_CHECKPOINT_PATH",
Expand All @@ -269,7 +269,7 @@
Assert.True(config.Moe.NumExpertsPerTok >= 2);
});

[Fact]
[SkippableFact]
public void Qwen15MoeA27B_LoadsAndForwardsEndToEnd_WhenCheckpointPresent()
=> RunGatedSafetensorsSmoke(
envVar: "DOTLLM_QWEN15_MOE_A27B_CHECKPOINT_PATH",
Expand Down Expand Up @@ -1013,7 +1013,7 @@
/// <see cref="DriftTolerances"/> records honest observed numbers so
/// regressions are caught immediately while the gap gets diagnosed.
/// </summary>
private readonly struct DriftTolerances

Check warning on line 1016 in tests/DotLLM.Tests.Integration/Models/Loaders/RealHfSafetensorsEndToEndTests.cs

View workflow job for this annotation

GitHub Actions / Build (Release)

Check warning on line 1016 in tests/DotLLM.Tests.Integration/Models/Loaders/RealHfSafetensorsEndToEndTests.cs

View workflow job for this annotation

GitHub Actions / Build (Debug)

Check warning on line 1016 in tests/DotLLM.Tests.Integration/Models/Loaders/RealHfSafetensorsEndToEndTests.cs

View workflow job for this annotation

GitHub Actions / Integration Tests

{
public float MaxAbsDiff { get; init; }
public double MeanAbsDiff { get; init; }
Expand Down
Loading