1

这个C 程序调用METIS来划分网格。

编辑: 新版本的 C 程序考虑到 WeatherVane 和 PaulOgilvie 的评论。

在我的GNU/Linux我得到结果:

objval: 14
epart: 0 0 0 0 0 1 2 2 1 0 0 1 2 2 1 2 2 1 
npart: 0 0 0 2 0 0 1 1 2 2 2 1 2 2 1 1 
8

在我的时候OSX我得到:

objval: 17
epart: 0 1 1 0 1 0 2 2 0 1 1 1 2 2 1 2 2 0 
npart: 0 1 1 1 0 1 0 1 2 2 2 0 2 2 0 0 
8

是什么导致结果不同?

如何修复它,我的意思是,无论操作系统/架构/编译器是什么,总是得到相同的结果?

注意:idx_tis int64_t,它long在 my 上GNU/Linux,但long long在 my 上OSX

我的 GNU/Linux

$ cat /etc/issue
Ubuntu 12.04.4 LTS \n \l

$ gcc --version
gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

$ uname -s -r -v -p -i -o
Linux 3.5.0-45-generic #68~precise1-Ubuntu SMP Wed Dec 4 16:18:46 UTC 2013 x86_64 x86_64 GNU/Linux

我的 OSX

$ sw_vers 

ProductName:    Mac OS X
ProductVersion: 10.9.5
BuildVersion:   13F34

$ gcc --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix

$ uname -m -p -r -s -v
Darwin 13.4.0 Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64 x86_64 i386

METIS 安装

METIS版本是 5.1.0

我已经安装METISminiconda

包在这里 (文件linux-64/metis-5.1.0-0.tar.bz2osx-64/metis-5.1.0-2.tar.bz2)。

这些包是用这个配方构建的。

4

1 回答 1

1

METIS使用伪随机数。

伪随机数由GKlib函数生成。(GKlib嵌入在METIStarbarlls 中)。

默认情况下,GKlib使用randC 标准库中的函数,在不同的平台上可能会生成不同的数字。(请参阅:跨平台的一致伪随机数)。

GKlib也可以用flag编译-DUSE_GKRAND。它不使用该rand函数,而是使用它自己的函数,它总是给出不同平台的相同随机数。

-DUSE_GKRAND使用函数中的代码编译在 my和 myC 上给出相同的结果:GNU/LinuxOSX

objval: 18
epart: 0 0 0 2 1 1 2 2 1 0 0 1 0 1 1 2 2 1 
npart: 0 0 0 0 2 0 1 1 2 1 2 1 2 2 1 1 
8

我已经使用这个 conda配方来构建METIS.

于 2015-07-14T11:36:03.950 回答