Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request complex types #785

Closed
JasonRuonanWang opened this issue Aug 7, 2018 · 1 comment
Closed

Request complex types #785

JasonRuonanWang opened this issue Aug 7, 2018 · 1 comment
Assignees

Comments

@JasonRuonanWang
Copy link
Member

The SKA software will not work until complex types are supported. The following is a list of all the types needed. Thanks!

void Adios2StManColumn::putBoolV(uInt rownr, const Bool* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putCharV (uInt rownr, const Char* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putuCharV (uInt rownr, const uChar* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putShortV (uInt rownr, const Short* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putuShortV (uInt rownr, const uShort* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putIntV (uInt rownr, const Int* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putuIntV (uInt rownr, const uInt* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putfloatV (uInt rownr, const float* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putdoubleV (uInt rownr, const double* dataPtr){
putV(rownr, dataPtr);
}
void Adios2StManColumn::putComplexV (uInt rownr, const Complex* dataPtr){
// putV(rownr, dataPtr);
}
void Adios2StManColumn::putDComplexV (uInt rownr, const DComplex* dataPtr){
// putV(rownr, dataPtr);
}
void Adios2StManColumn::putStringV (uInt rownr, const String* dataPtr){
// putV(rownr, dataPtr);
}

@JasonRuonanWang
Copy link
Member Author

JasonRuonanWang commented Aug 7, 2018

Complex = std::complex<float>
DComplex = std::complex<double>

williamfgc added a commit to williamfgc/ADIOS2 that referenced this issue Aug 14, 2018
Fixing formatting issues in bpls2.h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants