wavescholar / klMatrixCore

Core Matrix Functionality. This repository is under active development.
1 stars 0 forks source link

Find faster way to set vector values #58

Open wavescholar opened 10 years ago

wavescholar commented 10 years ago

memset - may have portability issues - see if there is a helper function in mkl to do this

//Set all values to the sclar c void operator=(const TYPE c) { __int64 i; for(i=0;i<_size;i++) _mMemory[i]=c;

  }