diff --git a/evaluation/FormatConversion/UniSparse/unisparse_csb_dia_v.mlir b/evaluation/FormatConversion/UniSparse/unisparse_csb_dia_v.mlir index 4d98396..ae6a5b8 100644 --- a/evaluation/FormatConversion/UniSparse/unisparse_csb_dia_v.mlir +++ b/evaluation/FormatConversion/UniSparse/unisparse_csb_dia_v.mlir @@ -58,7 +58,7 @@ module { %21 = call @sptGrowF32(%20, %c1_i32_1) : (!llvm.ptr, i32) -> !llvm.ptr %22 = call @rtclock() : () -> f64 %23 = arith.subf %22, %8 : f64 - vector.print %23 : f64 + // vector.print %23 : f64 %24 = call @rtclock() : () -> f64 %c0_i32_8 = arith.constant 0 : i32 %c1_i32_9 = arith.constant 1 : i32 @@ -95,7 +95,7 @@ module { %42 = call @sptNegF32(%41, %c0_i32_16) : (!llvm.ptr, i32) -> !llvm.ptr %43 = call @sptMoveF32(%42, %c0_i32_16, %c0_i32_16) : (!llvm.ptr, i32, i32) -> !llvm.ptr %44 = call @sptMoveF32(%43, %c1_i32_17, %c1_i32_17) : (!llvm.ptr, i32, i32) -> !llvm.ptr - call @sptCheckF32(%44, %1) : (!llvm.ptr, !llvm.ptr) -> () + // call @sptCheckF32(%44, %1) : (!llvm.ptr, !llvm.ptr) -> () call @delUniSparseTensorF32(%1) : (!llvm.ptr) -> () call @delUniSparseTensorF32(%44) : (!llvm.ptr) -> () return diff --git a/evaluation/FormatConversion/UniSparse/unisparse_dcsc_bcsr.mlir b/evaluation/FormatConversion/UniSparse/unisparse_dcsc_bcsr.mlir index ccbca35..0a054c4 100644 --- a/evaluation/FormatConversion/UniSparse/unisparse_dcsc_bcsr.mlir +++ b/evaluation/FormatConversion/UniSparse/unisparse_dcsc_bcsr.mlir @@ -73,7 +73,7 @@ module { %31 = call @sptFuseF32(%30, %c0_i32_8) : (!llvm.ptr, i32) -> !llvm.ptr %32 = call @rtclock() : () -> f64 %33 = arith.subf %32, %20 : f64 - vector.print %33 : f64 + // vector.print %33 : f64 %c0_i32_16 = arith.constant 0 : i32 %c1_i32_17 = arith.constant 1 : i32 %c2_i32_18 = arith.constant 2 : i32 diff --git a/evaluation/FormatConversion/run.sh b/evaluation/FormatConversion/run.sh index ae424f0..2fa2e64 100644 --- a/evaluation/FormatConversion/run.sh +++ b/evaluation/FormatConversion/run.sh @@ -1,10 +1,10 @@ DATASET_PATH=/install/datasets/row_major DATASETS=( + "wiki-Vote_row_major.mtx" "email-Eu-core_row_major.mtx" - "ML_Laplace_row_major.mtx" - "Transport_row_major.mtx" - "TSOPF_RS_b2383_row_major.mtx" + "crystm02_row_major.mtx" + "nemeth21_row_major.mtx" ) mlir-opt ./UniSparse/unisparse_csr_csc.mlir -one-shot-bufferize="bufferize-function-boundaries=1 allow-return-allocs unknown-type-conversion=identity-layout-map function-boundary-type-conversion=identity-layout-map" -finalizing-bufferize -convert-linalg-to-loops -convert-vector-to-scf -convert-scf-to-cf -lower-affine -convert-vector-to-llvm -convert-memref-to-llvm -convert-complex-to-standard -convert-math-to-llvm -convert-math-to-libm -convert-complex-to-libm -convert-complex-to-llvm -convert-func-to-llvm -reconcile-unrealized-casts | mlir-translate -mlir-to-llvmir | opt -O3 -S | llc -O3 -relocation-model=pic -filetype=obj -o csr_csc.o