Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

[wperf-scripts] Update telemetry-solution submodule #68

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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 wperf-scripts/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ InstalledDir: C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\L
```
> cd telemetry-solution/tools/ustress
> make clean
> make CPU=NEOVERSE-N1
> make CPU=NEOVERSE-N1 USE_C=1
```

### See Merge Request Documentation
Expand Down
2 changes: 1 addition & 1 deletion wperf-scripts/tests/telemetry-solution
Submodule telemetry-solution updated from 8f416c to 82a5e7
2 changes: 1 addition & 1 deletion wperf-scripts/tests/wperf_cli_ustress_bench_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def test_ustress_bench_build_ustress__make_cpu():
### Build ustress for this platform
product_name = get_product_name()
CPU = get_make_CPU_name(product_name)
stdout, _ = run_command(f"make CPU={CPU}", TS_USTRESS_DIR) # Build all tests
stdout, _ = run_command(f"make CPU={CPU} USE_C=1", TS_USTRESS_DIR) # Build all tests, USE_C=1 - fallback to C implementation.

# Build sanity checks, e.g.:
# clang -std=c11 -O2 -g -Wall -pedantic -DCPU_NEOVERSE_N1 --target=arm64-pc-windows-msvc -o branch_direct_workload.exe branch_direct_workload.c
Expand Down