Add +,-,*,/,neg,pow to CudaMatrix
This commit is contained in:
@@ -490,107 +490,8 @@ bool CudaMatrix::setBlock(int aDim,int aBeginIndex, int aEndIndex, const CudaMat
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
CudaMatrix CudaMatrix::operator+(float aScalar) const{
|
||||
if (isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryAdd(getData(),aScalar,out.getData(),getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix operator+(float aScalar, const CudaMatrix &aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unaryAdd(aMatrix.getData(),aScalar,out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix& operator+(float aScalar, CudaMatrix &&aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryAdd(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
CudaMatrix& operator+(CudaMatrix &&aMatrix,float aScalar){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryAdd(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
CudaMatrix CudaMatrix::operator+(const CudaMatrix &aMatrix) const{
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryAdd(this->getData(),aMatrix.getData(),out.getData(),this->getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix CudaMatrix::operator+(CudaMatrix &&aMatrix) const{
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryAdd(this->getData(),aMatrix.getData(),aMatrix.getData(),this->getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
|
||||
CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
if (aOther.getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<aMatrix.getDataSize()
|
||||
<<" and the matrix1 size is "<<aOther.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (aOther.isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(aMatrix.isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aOther.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryAdd(aOther.getData(),aMatrix.getData(),aMatrix.getData(),aOther.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
// mul
|
||||
CudaMatrix CudaMatrix::operator*(float aScalar) const{
|
||||
//--Add----------------------------------------------------------------
|
||||
CudaMatrix CudaMatrix::operator+(float aScalar) const{
|
||||
if (isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
@@ -600,13 +501,112 @@ CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryAdd(getData(),aScalar,out.getData(),getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix operator+(float aScalar, const CudaMatrix &aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unaryAdd(aMatrix.getData(),aScalar,out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix& operator+(float aScalar, CudaMatrix &&aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryAdd(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
CudaMatrix& operator+(CudaMatrix &&aMatrix,float aScalar){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryAdd(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
CudaMatrix CudaMatrix::operator+(const CudaMatrix &aMatrix) const{
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryAdd(this->getData(),aMatrix.getData(),out.getData(),this->getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix CudaMatrix::operator+(CudaMatrix &&aMatrix) const{
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryAdd(this->getData(),aMatrix.getData(),aMatrix.getData(),this->getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
|
||||
CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
if (aOther.getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<aMatrix.getDataSize()
|
||||
<<" and the matrix1 size is "<<aOther.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (aOther.isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(aMatrix.isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aOther.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryAdd(aOther.getData(),aMatrix.getData(),aMatrix.getData(),aOther.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
//--mul-----------------------------------------------------
|
||||
CudaMatrix CudaMatrix::operator*(float aScalar) const{
|
||||
if (isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator*(float aScalar)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryMul(getData(),aScalar,out.getData(),getDataSize());
|
||||
return out;
|
||||
}
|
||||
CudaMatrix operator*(float aScalar, const CudaMatrix &aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
std::cerr<<"Complex matrix not support operator*(float aScalar, const CudaMatrix &aMatrix)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
@@ -619,7 +619,7 @@ CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
CudaMatrix& operator*(float aScalar, CudaMatrix &&aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
std::cerr<<"Complex matrix not support operator*(float aScalar, CudaMatrix &&aMatrix)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryMul(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
@@ -628,7 +628,7 @@ CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
CudaMatrix& operator*(CudaMatrix &&aMatrix,float aScalar){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator+(float aScalar)"<<std::endl;
|
||||
std::cerr<<"Complex matrix not support operator*(float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryMul(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
@@ -636,12 +636,12 @@ CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
}
|
||||
CudaMatrix CudaMatrix::operator*(const CudaMatrix &aMatrix) const{
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
std::cerr<<"operator* must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
std::cerr<<"operator* must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
@@ -654,12 +654,12 @@ CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
}
|
||||
CudaMatrix CudaMatrix::operator*(CudaMatrix &&aMatrix) const{
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
std::cerr<<"operator* must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
std::cerr<<"operator* must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
@@ -668,17 +668,249 @@ CudaMatrix operator+(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
}
|
||||
CudaMatrix operator*(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
if (aOther.getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator+ must with Same DataSize, now the matrix0 size is "<<aMatrix.getDataSize()
|
||||
std::cerr<<"operator* must with Same DataSize, now the matrix0 size is "<<aMatrix.getDataSize()
|
||||
<<" and the matrix1 size is "<<aOther.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (aOther.isComplex() != aMatrix.isComplex()) {
|
||||
std::cerr<<"operator+ must with Data type, now the matrix0 type is "<<(aMatrix.isComplex()?"Comples":"Real")
|
||||
std::cerr<<"operator* must with Data type, now the matrix0 type is "<<(aMatrix.isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aOther.isComplex()?"Comples":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryMul(aOther.getData(),aMatrix.getData(),aMatrix.getData(),aOther.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
//--Sub-----------------------------------------------------------------
|
||||
CudaMatrix CudaMatrix::operator-(float aScalar) const{
|
||||
if (isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator-(float aScalar)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unarySub(getData(),aScalar,out.getData(),getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix operator-(float aScalar, const CudaMatrix &aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator-(float aScalar, const CudaMatrix &aMatrix)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unarySub(aScalar,aMatrix.getData(),out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
|
||||
CudaMatrix& operator-(float aScalar, CudaMatrix &&aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator-(float aScalar, CudaMatrix &&aMatrix)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unarySub(aScalar,aMatrix.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix& operator-(CudaMatrix &&aMatrix,float aScalar){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator-(CudaMatrix &&aMatrix, float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unarySub(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix CudaMatrix::operator-(const CudaMatrix &aMatrix) const{
|
||||
if (aMatrix.isComplex()!=this->isComplex())
|
||||
{
|
||||
std::cerr<<"operator- must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator- must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unarySub(this->getData(),aMatrix.getData(),out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
CudaMatrix CudaMatrix::operator-(CudaMatrix &&aMatrix) const{
|
||||
if (aMatrix.isComplex()!=this->isComplex())
|
||||
{
|
||||
std::cerr<<"operator- must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator- must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unarySub(this->getData(),aMatrix.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix operator-(CudaMatrix &&aMatrix,CudaMatrix &aOther){
|
||||
if (aMatrix.isComplex()!=aOther.isComplex())
|
||||
{
|
||||
std::cerr<<"operator- must with Data type, now the matrix0 type is "<<(aMatrix.isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aOther.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (aOther.getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator- must with Same DataSize, now the matrix0 size is "<<aMatrix.getDataSize()
|
||||
<<" and the matrix1 size is "<<aOther.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unarySub(aMatrix.getData(),aOther.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
// div
|
||||
CudaMatrix CudaMatrix::operator/(float aScalar) const{
|
||||
if (isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator/(float aScalar)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryDiv(getData(),aScalar,out.getData(),getDataSize());
|
||||
return out;
|
||||
}
|
||||
CudaMatrix operator/(float aScalar, const CudaMatrix &aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator/(float aScalar, const CudaMatrix &aMatrix)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unaryDiv(aScalar,aMatrix.getData(),out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
CudaMatrix& operator/(float aScalar, CudaMatrix &&aMatrix){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator/(float aScalar, CudaMatrix &&aMatrix)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryDiv(aScalar,aMatrix.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix& operator/(CudaMatrix &&aMatrix,float aScalar){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator/(CudaMatrix &&aMatrix, float aScalar)"<<std::endl;
|
||||
return aMatrix;
|
||||
}
|
||||
unaryDiv(aMatrix.getData(),aScalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix CudaMatrix::operator/(const CudaMatrix &aMatrix) const{
|
||||
if (aMatrix.isComplex()!=this->isComplex())
|
||||
{
|
||||
std::cerr<<"operator/ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator/ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unaryDiv(this->getData(),aMatrix.getData(),out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
CudaMatrix CudaMatrix::operator/(CudaMatrix &&aMatrix) const{
|
||||
if (aMatrix.isComplex()!=this->isComplex())
|
||||
{
|
||||
std::cerr<<"operator/ must with Data type, now the matrix0 type is "<<(this->isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aMatrix.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (this->getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator/ must with Same DataSize, now the matrix0 size is "<<this->getDataSize()
|
||||
<<" and the matrix1 size is "<<aMatrix.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryDiv(this->getData(),aMatrix.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix operator/(CudaMatrix &&aMatrix, CudaMatrix &aOther){
|
||||
if (aMatrix.isComplex()!=aOther.isComplex())
|
||||
{
|
||||
std::cerr<<"operator/ must with Data type, now the matrix0 type is "<<(aMatrix.isComplex()?"Comples":"Real")
|
||||
<<" and the matrix1 type is "<<(aOther.isComplex()?"Complex":"Real")<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
if (aOther.getDataSize() != aMatrix.getDataSize()) {
|
||||
std::cerr<<"operator/ must with Same DataSize, now the matrix0 size is "<<aMatrix.getDataSize()
|
||||
<<" and the matrix1 size is "<<aOther.getDataSize()<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
unaryDiv(aMatrix.getData(),aOther.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
// -----------pow-------------------------------------------------------
|
||||
CudaMatrix CudaMatrix::operator^(int times) const{
|
||||
if (isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator^(int times)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float scalar = (float)times;
|
||||
float* data = nullptr;
|
||||
unsigned long long size = getDataSize() * getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, getDimSize(0), getDimSize(1), getDimSize(2), getValueType());
|
||||
unaryPow(getData(),scalar,out.getData(),getDataSize());
|
||||
return out;
|
||||
}
|
||||
CudaMatrix operator^(CudaMatrix &&aMatrix,int times){
|
||||
if (aMatrix.isComplex())
|
||||
{
|
||||
std::cerr<<"Complex matrix not support operator^(int times)"<<std::endl;
|
||||
return CudaMatrix();
|
||||
}
|
||||
float scalar = (float)times;
|
||||
unaryPow(aMatrix.getData(),scalar,aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
|
||||
//----------negetive------------------------------------------------
|
||||
CudaMatrix operator-(CudaMatrix &&aMatrix){
|
||||
unaryNeg(aMatrix.getData(),aMatrix.getData(),aMatrix.getDataSize());
|
||||
return aMatrix;
|
||||
}
|
||||
CudaMatrix operator-(const CudaMatrix &aMatrix){
|
||||
float* data = nullptr;
|
||||
unsigned long long size = aMatrix.getDataSize() * aMatrix.getValueType();
|
||||
cudaMalloc((void**)&data, sizeof(float) * size);
|
||||
auto out = CudaMatrix::fromRawData(data, aMatrix.getDimSize(0), aMatrix.getDimSize(1), aMatrix.getDimSize(2), aMatrix.getValueType());
|
||||
unaryNeg(aMatrix.getData(),out.getData(),aMatrix.getDataSize());
|
||||
return out;
|
||||
}
|
||||
}
|
||||
#endif // USE_CUDA
|
||||
|
||||
Reference in New Issue
Block a user