[Mlir-commits] [mlir] ebd9f44 - Partially revert 03e6d10cac86: it broke the build

Mehdi Amini llvmlistbot at llvm.org
Mon Mar 7 03:18:43 PST 2022


Author: Mehdi Amini
Date: 2022-03-07T11:18:20Z
New Revision: ebd9f44584f97d039d88958f1293cd8d4df0044b

URL: https://github.com/llvm/llvm-project/commit/ebd9f44584f97d039d88958f1293cd8d4df0044b
DIFF: https://github.com/llvm/llvm-project/commit/ebd9f44584f97d039d88958f1293cd8d4df0044b.diff

LOG: Partially revert 03e6d10cac86: it broke the build

Added: 
    

Modified: 
    mlir/lib/ExecutionEngine/CRunnerUtils.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/lib/ExecutionEngine/CRunnerUtils.cpp b/mlir/lib/ExecutionEngine/CRunnerUtils.cpp
index ccdf76b58cfb0..da284294df373 100644
--- a/mlir/lib/ExecutionEngine/CRunnerUtils.cpp
+++ b/mlir/lib/ExecutionEngine/CRunnerUtils.cpp
@@ -101,7 +101,7 @@ memrefCopy(int64_t elemSize, UnrankedMemRefType<char> *srcArg,
 }
 
 /// Prints GFLOPS rating.
-extern "C" void printFlops(double flops) {
+extern "C" void print_flops(double flops) {
   fprintf(stderr, "%lf GFLOPS\n", flops / 1.0E9);
 }
 


        


More information about the Mlir-commits mailing list