Skip to content

Commit

Permalink
Run MLC v3.10 latency test with -e0
Browse files Browse the repository at this point in the history
  • Loading branch information
FarisR99 authored and FarisR99 committed Jan 29, 2023
1 parent f8094da commit 464a477
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion IMLCGui/MLCProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,12 @@ public static string GenerateBandwidthArguments(string mlcVersion, bool peakInje

public static string GenerateCacheArguments(string mlcVersion)
{
return "--c2c_latency";
string mlcArguments = "--c2c_latency";
if ("v3.10".Equals(mlcVersion))
{
mlcArguments += " -e0";
}
return mlcArguments;
}

public static string GenerateLatencyArguments(string mlcVersion, string injectDelayOverride)
Expand All @@ -75,6 +80,10 @@ public static string GenerateLatencyArguments(string mlcVersion, string injectDe
{
mlcArguments += " -d" + injectDelayOverride;
}
if ("v3.10".Equals(mlcVersion))
{
mlcArguments += " -e0";
}
return mlcArguments;
}

Expand Down

0 comments on commit 464a477

Please sign in to comment.