Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <mpi.h> double f() { double timer = MPI_Wtime(); return timer; }
我正在寻找的是一组模拟 MPI 函数,所以我可以#include <mpi_mocks.h>代替 mpi.h 并在不链接到 MPI 库的情况下对其进行编译。它也可能#define MOCK会触发 mpi.h 中的这种行为。
#include <mpi_mocks.h>
#define MOCK
据我所见,没有任何模拟可以仅 #include 并完成。但是,自己编写所需的函数并为您选择使用的任何模拟框架编写应该没什么大不了的。只需从一个空标题开始,然后查看编译器抱怨的函数。