Skip to content

Commit

Permalink
Move onnx-mlir version to 0.3.0 (#1438)
Browse files Browse the repository at this point in the history
Move `onnx-mlir` version to `0.3.0` from `0.2.0`. `1.0.0` was a mistake.

Signed-off-by: Whitney Tsang <whitneyt@ca.ibm.com>
  • Loading branch information
whitneywhtsang authored May 19, 2022
1 parent a2d395d commit f4c0e08
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ Releases are extensively tested, including the following steps.

# Current releases

## Prerelease 0.3.0

This prerelease was cut on May 20th, 2022.
There are no security issues that we know of.

## Prerelease 0.2.0

This prerelease was cut on September 7th, 2021.
Expand Down
2 changes: 1 addition & 1 deletion docs/docker-example/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"version": "0.3.0",
"configurations": [
{
"name": "Debug onnx-mlir",
Expand Down
2 changes: 1 addition & 1 deletion src/Compiler/CompilerUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ static std::string getToolPath(std::string tool) {
}

static std::string getOnnxMlirFullVersion() {
const std::string OnnxMlirVersion = "onnx-mlir version 1.0.0";
const std::string OnnxMlirVersion = "onnx-mlir version 0.3.0";
return
#ifdef ONNX_MLIR_VENDOR
ONNX_MLIR_VENDOR ", " + OnnxMlirVersion;
Expand Down
2 changes: 1 addition & 1 deletion test/mlir/driver/llvm.ident.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// XFAIL: onnx-mlir-vendor

// CHECK: !llvm.ident = !{![[MD:[0-9]*]]}
// CHECK: ![[MD]] = !{!"onnx-mlir version 1.0.0 ({{.*}}/onnx-mlir{{.*}} {{[a-zA-Z0-9]+}}, {{.*}}/llvm-project{{.*}} {{[a-zA-Z0-9]+}})"}
// CHECK: ![[MD]] = !{!"onnx-mlir version 0.3.0 ({{.*}}/onnx-mlir{{.*}} {{[a-zA-Z0-9]+}}, {{.*}}/llvm-project{{.*}} {{[a-zA-Z0-9]+}})"}
module {
func @main_graph(%arg0: tensor<1x1xf32>, %arg1: tensor<1x1xf32>) -> tensor<1x1xf32> {
%0 = "onnx.MatMul"(%arg0, %arg1) : (tensor<1x1xf32>, tensor<1x1xf32>) -> tensor<1x1xf32>
Expand Down

0 comments on commit f4c0e08

Please sign in to comment.