Skip to content

Commit

Permalink
Test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim-Doronin committed Nov 14, 2024
1 parent c64890a commit 9ac265f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
Build:
name: Build and Test
runs-on: ubuntu-latest
runs-on: intel-ubuntu-latest
defaults:
run:
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions mlir/test/Dialect/Quant/parse-any-invalid.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

// -----
// Unrecognized storage type: illegal prefix
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Blah}}
!qalias = !quant.any<int8<-4:3>:f32>

// -----
// Unrecognized storage type: no width
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Blah}}
!qalias = !quant.any<i<-4:3>:f32>

// -----
Expand Down
6 changes: 3 additions & 3 deletions mlir/test/Dialect/Quant/parse-quantile-invalid.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ func.func @parse() -> !qalias {

// -----
// Unrecognized storage type: illegal prefix
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Hello world}}
!qalias = !quant.quantile<int8<-4:3>:f16:f32, {-1.0,1.0}:0.99872:127>

// -----
// Unrecognized storage type: no width
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Hello world}}
!qalias = !quant.quantile<i<-4:3>:f16:f32, {-1.0,1.0}:0.99872:127>

// -----
Expand All @@ -78,7 +78,7 @@ func.func @parse() -> !qalias {

// -----
// Unrecognized storage type: storage size < 0
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Hello world}}
!qalias = !quant.quantile<i-1<-4:3>:f16:f32, {-1.0,1.0}:0.99872:127>

// -----
Expand Down
6 changes: 3 additions & 3 deletions mlir/test/Dialect/Quant/parse-uniform-invalid.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@

// -----
// Unrecognized storage type: illegal prefix
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Fus}}
!qalias = !quant.uniform<int8<-4:3>:f32, 0.99872:127>

// -----
// Unrecognized storage type: no width
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Ro}}
!qalias = !quant.uniform<i<-4:3>:f32, 0.99872:127>

// -----
Expand All @@ -52,7 +52,7 @@

// -----
// Unrecognized storage type: storage size < 0
// expected-error@+1 {{illegal quantized storage type alias}}
// expected-error@+1 {{Dah}}
!qalias = !quant.uniform<i-1<-4:3>:f32, 0.99872:127>

// -----
Expand Down

0 comments on commit 9ac265f

Please sign in to comment.