由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Computation版 - 请问不能写数据到学校的并行机上是怎么回事?
相关主题
再次求教用qsub和直接用./file的区别请问mpirun怎么放在后台运行?
a question about MPI怎么提高C++计算精度? C++ vs Matlab
请问这个mpi程序有什么问题?求助:C++里的fstream究竟该怎么用? (转载)
[请教]uniformly random samplingHelp please
请问编译时怎么把自己的C/C++代码链接到一个库[转载] word转化成PDF文件时出问题是怎么回事?
fortran求助!matlab 长时间运行界面变得无响应是怎么回事
如何在VC6+intel C里实现long double?C++ 初级再初级问题 (转载)
a question about mpi in c请问一个exception题目
相关话题的讨论汇总
话题: int话题: namespace话题: std话题: cout话题: test
进入Computation版参与讨论
1 (共1页)
d*******2
发帖数: 340
1
说是要用"cout<<" standard output,并行机 会自动存到根目录下。用下面这个文件
test.cpp(或test.cc), c++ -o test test.cpp,再用qsub test.
但是第一步c++ -o test test.cpp就不能通过,错误信息
expected namespace-name before ';' token.
#include
using namespace math;
int main(int argc, char* argv[])
{
int k=100;
cout << "k:" << k;
return 0;
}
哪位大虾能帮帮忙吗?先谢了!
y*******g
发帖数: 6599
2
你确定是using namespace math?

【在 d*******2 的大作中提到】
: 说是要用"cout<<" standard output,并行机 会自动存到根目录下。用下面这个文件
: test.cpp(或test.cc), c++ -o test test.cpp,再用qsub test.
: 但是第一步c++ -o test test.cpp就不能通过,错误信息
: expected namespace-name before ';' token.
: #include
: using namespace math;
: int main(int argc, char* argv[])
: {
: int k=100;
: cout << "k:" << k;

s**i
发帖数: 381
3
std::cout

【在 d*******2 的大作中提到】
: 说是要用"cout<<" standard output,并行机 会自动存到根目录下。用下面这个文件
: test.cpp(或test.cc), c++ -o test test.cpp,再用qsub test.
: 但是第一步c++ -o test test.cpp就不能通过,错误信息
: expected namespace-name before ';' token.
: #include
: using namespace math;
: int main(int argc, char* argv[])
: {
: int k=100;
: cout << "k:" << k;

d*******2
发帖数: 340
4
多谢!改成using namespace std; 第一步(c++ -o test test.cc)通过了,输出的文件
test.o74000为
Warning: no access to tty (Bad file descriptor).
Thus no job control in this shell.
test.e74000为
default^ئÃ^Õ: Event not found.
怎么回事呢?再谢了!
#include
using namespace std;
int main(int argc, char* argv[])
{
int k=100;
cout << "k:" << k < return 0;
}

【在 y*******g 的大作中提到】
: 你确定是using namespace math?
d*******2
发帖数: 340
5
多谢!加上std了,输出的test.o和没加std一样,为
Warning: no access to tty (Bad file descriptor).
Thus no job control in this shell.
输出的test.e有点不一样,为
/opt/gridengineÀ^B!SSH_CLIENT!P: Event not found.
源文件为
#include
using namespace std;
int main(int argc, char* argv[])
{
int k=100;
std::cout << "k:" << k < return 0;
}
再谢了!

【在 s**i 的大作中提到】
: std::cout
l******n
发帖数: 9344
6
还std::cout

【在 d*******2 的大作中提到】
: 多谢!加上std了,输出的test.o和没加std一样,为
: Warning: no access to tty (Bad file descriptor).
: Thus no job control in this shell.
: 输出的test.e有点不一样,为
: /opt/gridengineÀ^B!SSH_CLIENT!P: Event not found.
: 源文件为
: #include
: using namespace std;
: int main(int argc, char* argv[])
: {

s**i
发帖数: 381
7
I think your stdout is not defined for your paralle runs
run test>out to redirect

【在 d*******2 的大作中提到】
: 多谢!加上std了,输出的test.o和没加std一样,为
: Warning: no access to tty (Bad file descriptor).
: Thus no job control in this shell.
: 输出的test.e有点不一样,为
: /opt/gridengineÀ^B!SSH_CLIENT!P: Event not found.
: 源文件为
: #include
: using namespace std;
: int main(int argc, char* argv[])
: {

d*******2
发帖数: 340
8
不好意思,水平太差,没太明白。你是说在test.sh文件里面的 ./test 改成
./test > out 吗?也没有用啊。先谢了!

【在 s**i 的大作中提到】
: I think your stdout is not defined for your paralle runs
: run test>out to redirect

1 (共1页)
进入Computation版参与讨论
相关主题
请问一个exception题目请问编译时怎么把自己的C/C++代码链接到一个库
What is wrong with the code?fortran求助!
如何用函数指针调用含default parameter的函数?如何在VC6+intel C里实现long double?
惊天消息!Openheim 给我回信了,关于过了07大潮如何定排期。a question about mpi in c
再次求教用qsub和直接用./file的区别请问mpirun怎么放在后台运行?
a question about MPI怎么提高C++计算精度? C++ vs Matlab
请问这个mpi程序有什么问题?求助:C++里的fstream究竟该怎么用? (转载)
[请教]uniformly random samplingHelp please
相关话题的讨论汇总
话题: int话题: namespace话题: std话题: cout话题: test