- Apr 18, 2017
-
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
Add KWSys to third party
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
* upstream-KWSys: KWSys 2017-04-18 (0c4e58ec)
-
Code extracted from: https://gitlab.kitware.com/chuck.atkins/kwsys.git at commit 0c4e58ecfb896577304ad468e4acbeeadb9bea0e (0c4e58ec).
-
Atkins, Charles Vernon authored
-
- Apr 17, 2017
-
-
Atkins, Charles Vernon authored
Creat single adios target
-
Atkins, Charles Vernon authored
-
Atkins, Charles Vernon authored
-
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.
-