Skip to content

Commit 85390be

Browse files
committed
comment out unnecessary dependencies in ubuntu workflow
1 parent dcb0687 commit 85390be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ubuntu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,9 +332,9 @@ jobs:
332332
PPC_NUM_PROC: 1
333333
PPC_ASAN_RUN: 1
334334
gcc-build-codecov:
335-
needs:
336-
- gcc-test-extended
337-
- clang-test-extended
335+
# needs:
336+
# - gcc-test-extended
337+
# - clang-test-extended
338338
runs-on: ubuntu-24.04
339339
steps:
340340
- uses: actions/checkout@v4

modules/performance/include/performance.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class Perf {
105105

106106
/**
107107
* @brief Measures only the Run() part of the task.
108-
* Pre/Post-processing and validation are still invoked before and after.
108+
* Pre- / Post-processing and validation are still invoked before and after.
109109
* @param perf_attr Performance measurement configuration.
110110
*/
111111
void TaskRun(const PerfAttr& perf_attr) {
@@ -116,7 +116,7 @@ class Perf {
116116
CommonRun(perf_attr, RunOnly<::Task<InType, OutType>>);
117117
task_->PostProcessing();
118118

119-
// Ensure correctness after performance run
119+
// Ensure correctness after a performance run
120120
task_->Validation();
121121
task_->PreProcessing();
122122
task_->Run();

0 commit comments

Comments
 (0)