- Apr 17, 2017
-
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
-
pnorbert authored
Fix name of heatTransfer_read
-
Podhorszki, Norbert authored
-
Atkins, Charles Vernon authored
setting up for hdf5
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
Removed while loop in helloDataManReader_nompi.cpp to prevent deadlock
-
- Apr 16, 2017
-
-
Ruonan Wang authored
-
- Apr 14, 2017
-
-
guj authored
-
guj authored
-
guj authored
-
guj authored
-
Atkins, Charles Vernon authored
Reformat documentation
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
Seperate templete impl from public and private for ADIOS class
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
Use type traits to consolidate primitive and complex template methods
-
- Apr 13, 2017
-
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
Move BP1Writer templates out of header
-
Atkins, Charles Vernon authored
-
Changed BP1Writer.h by BPWriter.tcc in unique "public" header BP1.h
-
Atkins, Charles Vernon authored
Added a ValueType trait to TypeInfo.
-
Atkins, Charles Vernon authored
This will allow for generic template functions that can deal with complex types using thier underlying value types. So rather than have: template<T> T foo(const T&); template<T> T foo(const std::complex<T>&); to handle the case where an std::complex<float> should use a float return value, you can now use a single signature: template<T> TypeInfo<T>::ValueType foo(const T&);
-
Atkins, Charles Vernon authored
added DataMan into utilities
-
Wang, Ruonan authored
-
williamfgc authored
Add fixed width types and type trait info to the adios namespace.
-
Atkins, Charles Vernon authored
The type traits will be useful for maping ambiguous C types to fixed width integer types used for the actual I/O operations, for instance: adios::TypeInfo<char>::IOType resolves to int8_t adios::TypeInfo<signed char>::IOType resolves to int8_t adios::TypeInfo<unsigned signed char>::IOType resolves to uint8_t adios::TypeInfo<long int>::IOType resolves to int64_t adios::TypeInfo<long long int>::IOType resolves to int64_t So in this case, even though char and signed char are "the same", they are distinctly separate types to the compiler. Using adios::TyperInfo<T>::IOType you can use the same fundamental type for all of them. Similarly for long int and long long int.
-
Atkins, Charles Vernon authored
This allows us to both drop the namespace prefix when using them in implementation and guarantee that we don't use versions of the types that get re-defined elsewhere. In order to provide the least ammount of disruption this doesn't include any sweeping search and replace changes. However, it is recommended moving forward that these types be used internally when fixed width sizes are expected. This will allow the transition to happen gradually through attrition and minimize conflicts.
-
William F Godoy authored
Moved more template functions in BP1Writer.h to BP1Writer.cpp Added Macros in ADIOSMacros.h for handling overloaded template functions To do: Extend 1 arg template to 2 arg for template function in BP1Writer.tcc
-
Wang, Ruonan authored
-
Wang, Ruonan authored
-
Atkins, Charles Vernon authored
-
Ruonan Wang authored
-
- Apr 12, 2017
-
-
William F Godoy authored
-
Wang, Ruonan authored
-
pnorbert authored
Method.SetIOMode(); updates to ADIOS1Reader to make code base compile
-