Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~207 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for qtl

Anybody experienced this? I upgraded my desktop to Fedora 14 today. Then my programs written for icc can not run. 1. programs with #include<iomanip> can be compiled by icc, g++ is fine solution: copy old version of iomanip to local directory, and change code to #include"iomanip" 2. programs are not …

0
52
Member Avatar for qtl

I wrote a very simple vector class to call level 1 BLAS through MKL, [CODE] #include<mkl.h> #include<stdexcept> #ifndef _x_matrix #define _x_matrix class xVec{ private: double *v; int n; public: xVec():n(0),v(0){} xVec(int a):n(a),v(new double[n]){} xVec(int a, double c){ n=a; v=new double[n]; for(int i=0; i<n; ++i) v[i]=c; } ~xVec(){if(v) delete[]v;} double &operator()(int …

Member Avatar for qtl
0
155