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

Modify Minimum Execution Interval for some Workloads #282

Merged
merged 4 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .pipelines/azure-pipelines-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resources:
options: --entrypoint=""

variables:
VcVersion : 1.14.9
VcVersion : 1.14.10
ROOT: $(Build.SourcesDirectory)
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
ENABLE_PRS_DELAYSIGN: 1
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pool:
vmImage: windows-latest

variables:
VcVersion : 1.14.9
VcVersion : 1.14.10
ROOT: $(Build.SourcesDirectory)
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)] # needed for onebranch.pipeline.version task https://aka.ms/obpipelines/versioning
ENABLE_PRS_DELAYSIGN: 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Description": "Example Script Executor",
"MinimumExecutionInterval": "00:10:00",
"MinimumExecutionInterval": "00:00:05",
"Metadata": {
"SupportedPlatforms": "linux-x64,linux-arm64,win-x64,win-arm64"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"Description": "GeekBench5 CPU Performance Workload",
"MinimumExecutionInterval": "00:10:00",
"Description": "GeekBench6 CPU Performance Workload",
"Metadata": {
"RecommendedMinimumExecutionTime": "00:05:00",
"SupportedPlatforms": "linux-x64,linux-arm64,win-x64,win-arm64",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"Description": "GeekBench5 CPU Performance Workload",
"MinimumExecutionInterval": "00:10:00",
"Metadata": {
"RecommendedMinimumExecutionTime": "00:05:00",
"SupportedPlatforms": "linux-x64,linux-arm64,win-x64,win-arm64",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Description": "LMbench Performance Workload",
"MinimumExecutionInterval": "00:10:00",
"MinimumExecutionInterval": "00:01:00",
"Metadata": {
"RecommendedMinimumExecutionTime": "(4-cores)=04:00:00,(16-cores)=10:00:00,(64-cores)=16:00:00",
"SupportedPlatforms": "linux-x64,linux-arm64",
Expand Down
1 change: 0 additions & 1 deletion website/docs/dependencies/0002-wait-executor.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ The following sections provides examples for how to integrate the component into
```json
{
"Description": "SPEC CPU 2017 Integer and Floating Point (SPECrate) Benchmark Workload",
"MinimumExecutionInterval": "00:05:00",
"MinimumRequiredExecutionTime": "02:00:00",
"Metadata": {
"RecommendedMinimumExecutionTime": "(4-cores)=02:00:00,(16-cores)=05:00:00,(64-cores)=10:00:00",
Expand Down
2 changes: 1 addition & 1 deletion website/docs/developing/0021-run-custom-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ The following parameters are supported by the Executor Classes that can be modif
``` json
{
"Description": "Memory Stress Script Executor",
"MinimumExecutionInterval": "00:10:00",
"MinimumExecutionInterval": "00:00:05",
"Metadata": {
"SupportedPlatforms": "win-x64,win-arm64"
},
Expand Down
Loading