首页 \ 问答 \ mpich2 visual studio 2013链接器错误(mpich2 visual studio 2013 linker error)

mpich2 visual studio 2013链接器错误(mpich2 visual studio 2013 linker error)

我想用c ++方式使用mpi,所以我从mpich2的例子中得到了cxxpi.cxx的代码:

#include "mpi.h"
#include <iostream>
#include <math.h>

using namespace std;

double f(double);

double f(double a) {
    return (4.0 / (1.0 + a*a));
}

int main(int argc, char **argv) {
    int n, myid, numprocs, i;
    double PI25DT = 3.141592653589793238462643;
    double mypi, pi, h, sum, x;
    double startwtime = 0.0, endwtime;
    int  namelen;
    char processor_name[MPI_MAX_PROCESSOR_NAME];

    MPI::Init(argc, argv);
    numprocs = MPI::COMM_WORLD.Get_size();
    myid = MPI::COMM_WORLD.Get_rank();
    MPI::Get_processor_name(processor_name, namelen);

    cout << "Process " << myid << " of " << numprocs << " is on " <<
        processor_name << endl;

    n = 10000;          /* default # of rectangles */
    if (myid == 0)
        startwtime = MPI::Wtime();

    MPI::COMM_WORLD.Bcast(&n, 1, MPI_INT, 0);

    h = 1.0 / (double) n;
    sum = 0.0;
    /* A slightly better approach starts from large i and works back */
    for (i = myid + 1; i <= n; i += numprocs) {
        x = h * ((double) i - 0.5);
        sum += f(x);
    }
    mypi = h * sum;

    MPI::COMM_WORLD.Reduce(&mypi, &pi, 1, MPI_DOUBLE, MPI_SUM, 0);

    if (myid == 0) {
        endwtime = MPI::Wtime();
        cout << "pi is approximately " << pi << " Error is " <<
            fabs(pi - PI25DT) << endl;
        cout << "wall clock time = " << endwtime - startwtime << endl;
    }

    MPI::Finalize();
    return 0;
}

我设置了VS2013项目的属性:

  1. 属性> VC ++目录>包含目录>(添加路径) “C:\ Program Files \ MPICH2 \ include”
  2. 属性> VC ++目录>库目录>(添加路径) “C:\ Program Files \ MPICH2 \ lib”
  3. 属性>链接器>输入>附加依赖项>(添加了lib) “mpi.lib”
  4. 属性>平台>(设置为) 活动(x64)

而且我有未解决的引用链接器错误。 具有相同属性的cpi.c代码编译没有问题。 我认为问题出在链接器需要的库中,但我试图找到它们的组合,但它没有解决问题。 MPICH2有这样的库:cxx.lib,fmpich2.lib,fmpich2g.lib,irlog2rlog.lib,mpe.lib,mpi.lib,rlog.lib,TraceInput.lib。 如何使程序正常工作?


I want to use mpi in c++ way, so I have code of cxxpi.cxx from mpich2 examples:

#include "mpi.h"
#include <iostream>
#include <math.h>

using namespace std;

double f(double);

double f(double a) {
    return (4.0 / (1.0 + a*a));
}

int main(int argc, char **argv) {
    int n, myid, numprocs, i;
    double PI25DT = 3.141592653589793238462643;
    double mypi, pi, h, sum, x;
    double startwtime = 0.0, endwtime;
    int  namelen;
    char processor_name[MPI_MAX_PROCESSOR_NAME];

    MPI::Init(argc, argv);
    numprocs = MPI::COMM_WORLD.Get_size();
    myid = MPI::COMM_WORLD.Get_rank();
    MPI::Get_processor_name(processor_name, namelen);

    cout << "Process " << myid << " of " << numprocs << " is on " <<
        processor_name << endl;

    n = 10000;          /* default # of rectangles */
    if (myid == 0)
        startwtime = MPI::Wtime();

    MPI::COMM_WORLD.Bcast(&n, 1, MPI_INT, 0);

    h = 1.0 / (double) n;
    sum = 0.0;
    /* A slightly better approach starts from large i and works back */
    for (i = myid + 1; i <= n; i += numprocs) {
        x = h * ((double) i - 0.5);
        sum += f(x);
    }
    mypi = h * sum;

    MPI::COMM_WORLD.Reduce(&mypi, &pi, 1, MPI_DOUBLE, MPI_SUM, 0);

    if (myid == 0) {
        endwtime = MPI::Wtime();
        cout << "pi is approximately " << pi << " Error is " <<
            fabs(pi - PI25DT) << endl;
        cout << "wall clock time = " << endwtime - startwtime << endl;
    }

    MPI::Finalize();
    return 0;
}

I set properties of my VS2013 project:

  1. Properties > VC++ Directories > Include Directories > (added path) "C:\Program Files\MPICH2\include"
  2. Properties > VC++ Directories > Library Directories > (added path) "C:\Program Files\MPICH2\lib"
  3. Properties > Linker > Input > Additional Dependencies > (added lib) "mpi.lib"
  4. Properties > Platform > (setted to) Active(x64)

And I've got unresolved reference linker errors. The code of cpi.c with the same properties compiles with no problems. I think the problem is in libs which linker needs, but I tried to find a combination of them, but it didn't solve the problem. MPICH2 has such libs: cxx.lib, fmpich2.lib, fmpich2g.lib, irlog2rlog.lib, mpe.lib, mpi.lib, rlog.lib, TraceInput.lib. How to make the program work correct?


原文:https://stackoverflow.com/questions/30151062
更新时间:2022-04-24 12:04

最满意答案

假设您的状态字段为Status ,它将类似于:

<script type="text/x-kendo-tmpl" id="template">
  <div class="product #if (Status == 'Active') {# active #} else {# inactive #}#">
    <h3>#:CustomerVersion#</h3>
    <h5>#:Rank#</h5>
    <h3>#:AccountType#</h3>
  </div>
</script>

可在此处找到正在运行的示例: http//dojo.telerik.com/@mmillican/iDOSu


Assuming your status field is Status it would be similar to this:

<script type="text/x-kendo-tmpl" id="template">
  <div class="product #if (Status == 'Active') {# active #} else {# inactive #}#">
    <h3>#:CustomerVersion#</h3>
    <h5>#:Rank#</h5>
    <h3>#:AccountType#</h3>
  </div>
</script>

A running sample can be found here: http://dojo.telerik.com/@mmillican/iDOSu

相关问答

更多

相关文章

更多

最新问答

更多
  • python的访问器方法有哪些
  • 使用Zend Framework 2中的JOIN sql检索数据(Retrieve data using JOIN sql in Zend Framework 2)
  • 透明度错误IE11(Transparency bug IE11)
  • linux的基本操作命令。。。
  • 响应navi重叠h1和nav上的h1链接不起作用(Responsive navi overlaps h1 and navi links on h1 isn't working)
  • 在C中读取文件:“r”和“a +”标志的不同行为(Reading a File in C: different behavior for “r” and “a+” flags)
  • NFC提供什么样的带宽?(What Kind of Bandwidth does NFC Provide?)
  • 元素上的盒子阴影行为(box-shadow behaviour on elements)
  • Laravel检查是否存在记录(Laravel Checking If a Record Exists)
  • 设置base64图像的大小javascript - angularjs(set size of a base64 image javascript - angularjs)
  • 想学Linux 运维 深圳有哪个培训机构好一点
  • 为什么有时不需要在lambda中捕获一个常量变量?(Why is a const variable sometimes not required to be captured in a lambda?)
  • 在Framework 3.5中使用服务器标签<%=%>设置Visible属性(Set Visible property with server tag <%= %> in Framework 3.5)
  • AdoNetAppender中的log4net连接类型无效(log4net connection type invalid in AdoNetAppender)
  • 错误:发送后无法设置标题。(Error: Can't set headers after they are sent. authentication system)
  • 等待EC2实例重启(Wait for an EC2 instance to reboot)
  • 如何在红宝石中使用正则表达式?(How to do this in regex in ruby?)
  • 使用鼠标在OpenGL GLUT中绘制多边形(Draw a polygon in OpenGL GLUT with mouse)
  • 江民杀毒软件的KSysnon.sys模块是什么东西?
  • 处理器在传递到add_xpath()或add_value()时调用了什么顺序?(What order are processors called when passed into add_xpath() or add_value()?)
  • sp_updatestats是否导致SQL Server 2005中无法访问表?(Does sp_updatestats cause tables to be inaccessible in SQL Server 2005?)
  • 如何创建一个可以与持续运行的服务交互的CLI,类似于MySQL的shell?(How to create a CLI that can interact with a continuously running service, similar to MySQL's shell?)
  • AESGCM解密失败的MAC(AESGCM decryption failing with MAC)
  • SQL查询,其中字段不包含$ x(SQL Query Where Field DOES NOT Contain $x)
  • PerSession与PerCall(PerSession vs. PerCall)
  • C#:有两个构造函数的对象:如何限制哪些属性设置在一起?(C#: Object having two constructors: how to limit which properties are set together?)
  • 平衡一个精灵(Balancing a sprite)
  • n2cms Asp.net在“文件”菜单上给出错误(文件管理器)(n2cms Asp.net give error on Files menu (File Manager))
  • Zurb Foundation 4 - 嵌套网格对齐问题(Zurb Foundation 4 - Nested grid alignment issues)
  • 湖北京山哪里有修平板计算机的