浏览代码

Fix missing starpu_shutdown

Samuel Thibault 4 年之前
父节点
当前提交
5fea7341a9
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      examples/spmv/dw_block_spmv.c

+ 2 - 0
examples/spmv/dw_block_spmv.c

@@ -338,5 +338,7 @@ int main(int argc, char *argv[])
 	FPRINTF(stderr, "Flop %e\n", totalflop);
 	FPRINTF(stderr, "GFlops : %2.2f\n", totalflop/timing/1000);
 
+	starpu_shutdown();
+
 	return 0;
 }