-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into run_gpt2_fix_data_file
- Loading branch information
Showing
4 changed files
with
56 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,38 @@ | ||
// RUN: onnx-mlir %s -o %t| FileCheck %s && rm %t.so | ||
|
||
// CHECK: [1/6] {{.*}} Importing ONNX Model to MLIR Module from | ||
// CHECK: [2/6] {{.*}} Compiling and Optimizing MLIR Module | ||
// CHECK: [3/6] {{.*}} Translating MLIR Module to LLVM and Generating LLVM Optimized Bitcode | ||
// CHECK: [4/6] {{.*}} Generating Object from LLVM Bitcode | ||
// CHECK: [5/6] {{.*}} Linking and Generating the Output Shared Library | ||
// CHECK: [6/6] {{.*}} Compilation completed | ||
// RUN: onnx-mlir %s -o %t | FileCheck --check-prefix=EMIT-LIB %s && rm %t.so | ||
// RUN: onnx-mlir %s --EmitObj -o %t | FileCheck --check-prefix=EMIT-OBJ %s && rm %t.o | ||
// RUN: onnx-mlir %s --EmitJNI -o %t | FileCheck --check-prefix=EMIT-JNI %s && rm %t.jar | ||
// RUN: onnx-mlir %s --EmitLLVMIR -o %t | FileCheck --check-prefix=EMIT-LLVMIR %s && rm %t.onnx.mlir | ||
|
||
// EMIT-LIB: [1/6] {{.*}} Importing ONNX Model to MLIR Module from | ||
// EMIT-LIB: [2/6] {{.*}} Compiling and Optimizing MLIR Module | ||
// EMIT-LIB: [3/6] {{.*}} Translating MLIR Module to LLVM and Generating LLVM Optimized Bitcode | ||
// EMIT-LIB: [4/6] {{.*}} Generating Object from LLVM Bitcode | ||
// EMIT-LIB: [5/6] {{.*}} Linking and Generating the Output Shared Library | ||
// EMIT-LIB: [6/6] {{.*}} Compilation completed | ||
|
||
// EMIT-OBJ: [1/5] {{.*}} Importing ONNX Model to MLIR Module from | ||
// EMIT-OBJ: [2/5] {{.*}} Compiling and Optimizing MLIR Module | ||
// EMIT-OBJ: [3/5] {{.*}} Translating MLIR Module to LLVM and Generating LLVM Optimized Bitcode | ||
// EMIT-OBJ: [4/5] {{.*}} Generating Object from LLVM Bitcode | ||
// EMIT-OBJ: [5/5] {{.*}} Compilation completed | ||
|
||
// EMIT-JNI: [1/8] {{.*}} Importing ONNX Model to MLIR Module from | ||
// EMIT-JNI: [2/8] {{.*}} Compiling and Optimizing MLIR Module | ||
// EMIT-JNI: [3/8] {{.*}} Translating MLIR Module to LLVM and Generating LLVM Optimized Bitcode | ||
// EMIT-JNI: [4/8] {{.*}} Generating Object from LLVM Bitcode | ||
// EMIT-JNI: [5/8] {{.*}} Generating JNI Object | ||
// EMIT-JNI: [6/8] {{.*}} Linking and Generating the Output Shared Library | ||
// EMIT-JNI: [7/8] {{.*}} Creating JNI Jar | ||
// EMIT-JNI: [8/8] {{.*}} Compilation completed | ||
|
||
// EMIT-LLVMIR: [1/3] {{.*}} Importing ONNX Model to MLIR Module from | ||
// EMIT-LLVMIR: [2/3] {{.*}} Compiling and Optimizing MLIR Module | ||
// EMIT-LLVMIR: [3/3] {{.*}} Compilation completed | ||
module { | ||
func.func @main_graph(%arg0: tensor<?xf32>) -> tensor<?xf32> { | ||
onnx.Return %arg0 : tensor<?xf32> | ||
} | ||
"onnx.EntryPoint"() {func = @main_graph} : () -> () | ||
} | ||
|
||
|