Skip to content

Commit 51fe56c

Browse files
committed
Debug
1 parent 99b12b6 commit 51fe56c

File tree

5 files changed

+5
-17
lines changed

5 files changed

+5
-17
lines changed

.github/workflows/clang-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929
- name: Run clang-format via pre-commit
3030
uses: pre-commit/action@2c7b3805fd2a0fd8c1884dcaebf91fc102a13ecd # v3.0.1
3131
with:
32-
extra_args: clang-format --all-files
32+
extra_args: clang-format --all-files --verbose

.github/workflows/ubuntu_22.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Linux (Ubuntu 22.04)
22
on:
33
workflow_dispatch:
4-
pull_request:
5-
push:
6-
branches:
7-
- develop
84

95
concurrency:
106
group: linux-${{ github.event_name }}-${{ github.ref_name }}-ubuntu_22_04

.github/workflows/ubuntu_24.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Linux (Ubuntu 24.04)
22
on:
33
workflow_dispatch:
4-
pull_request:
5-
push:
6-
branches:
7-
- develop
84

95
concurrency:
106
group: linux-${{ github.event_name }}-${{ github.ref_name }}-ubuntu_24_04

.github/workflows/windows_2022.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Windows (2022)
22
on:
33
workflow_dispatch:
4-
pull_request:
5-
push:
6-
branches:
7-
- develop
84

95
concurrency:
106
group: windows-${{ github.event_name }}-${{ github.ref_name }}-2022

src/vpux_compiler/src/conversion/factories/convert_dynamic_quant_to_vpu_nce.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace vpux {
2020
#define GEN_PASS_DECL_CONVERTDYNAMICQUANTTOVPUNCE
2121
#define GEN_PASS_DEF_CONVERTDYNAMICQUANTTOVPUNCE
22-
#include "vpux/compiler/conversion/passes.hpp.inc"
22+
#include "vpux/compiler/conversion/passes.hpp.inc"
2323
} // namespace vpux
2424

2525
using namespace vpux;
@@ -32,9 +32,9 @@ namespace {
3232

3333
class DynamicQuantToVPUNCE final : public mlir::OpRewritePattern<IE::ConvolutionOp> {
3434
public:
35-
DynamicQuantToVPUNCE(mlir::MLIRContext* ctx, Logger log)
36-
: mlir::OpRewritePattern<IE::ConvolutionOp>(ctx), _log(log) {
37-
}
35+
DynamicQuantToVPUNCE(mlir::MLIRContext* ctx, Logger log)
36+
: mlir::OpRewritePattern<IE::ConvolutionOp>(ctx), _log(log) {
37+
}
3838

3939
public:
4040
mlir::LogicalResult matchAndRewrite(IE::ConvolutionOp origOp, mlir::PatternRewriter& rewriter) const final;

0 commit comments

Comments
 (0)