- 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
-
Podhorszki, Norbert authored
-
Podhorszki, Norbert authored
-
Podhorszki, Norbert authored
-
Podhorszki, Norbert authored
-
- Apr 11, 2017
-
-
William F Godoy authored
BP1Writer.tcc is included at the end of BP1Writer.h and nowhere else.
-
Atkins, Charles Vernon authored
Fix FindDataMan.cmake missing include.
-
Atkins, Charles Vernon authored
FindPackageHandleStandardArgs needs to be included in every find module that the find_package_handle_standard_args is used. I was getting transitively included by othger find modules before but when all other options are turned off except DataMan, it's missing. This ensures it's always included before calling find_package_handle_standard_args.
-
williamfgc authored
Dataman bugs
-
William F Godoy authored
Tested
-
- Apr 10, 2017
-
-
William F Godoy authored
Tested
-
William F Godoy authored
Changed adiosTemplates.h and BP1 functions for STL's insert and copy to a Buffer in sequential mode
-
williamfgc authored
Fixing aggregation formatting in .bp/profiling.log
-
William F Godoy authored
Now meets the python dictionary format
-
Atkins, Charles Vernon authored
Utilities
-
wfg authored
Fixing const-correctness in BP1 Changed CodingGuidelines to include clang-format information
-
Atkins, Charles Vernon authored
Automatically detect ssh vs https when setting up remotes.
-
Atkins, Charles Vernon authored
-
- Apr 09, 2017
-
-
Podhorszki, Norbert authored
-
pnorbert authored
fix adios1 include dir path in cmake
-
Podhorszki, Norbert authored
-
- Apr 07, 2017
-
-
wfg authored
-