Skip to content
Snippets Groups Projects
Commit de7d5d20 authored by William F Godoy's avatar William F Godoy
Browse files

Merge remote-tracking branch 'upstream/master' into bp1read

Conflicts:
	examples/hello/datamanReader/helloDataManReader.cpp
	source/adios2/engine/dataman/DataManReader.cpp
	source/adios2/toolkit/transport/wan/WANZmq.cpp
	source/adios2/toolkit/transportman/dataman/DataMan.cpp
parents 84bd6856 c57d4a0c
No related branches found
No related tags found
1 merge request!294Bp1read : Initial Reading Capabilities and latest API
......@@ -33,6 +33,7 @@ public:
const bool profile);
void WriteWAN(const void *buffer, nlohmann::json jmsg);
void ReadWAN(void *buffer, nlohmann::json jmsg);
void SetCallback(std::function<void(const void *, std::string, std::string,
std::string, Dims)>
......@@ -49,7 +50,7 @@ private:
std::function<void(const void *, std::string, std::string, std::string,
Dims)>
m_CallBack;
m_CallBack = nullptr;
nlohmann::json m_JMessage;
......
......@@ -6,29 +6,30 @@
#ifndef TESTING_ADIOS2_BINDINGS_C_SMALLTESTDATA_C_H_
#define TESTING_ADIOS2_BINDINGS_C_SMALLTESTDATA_C_H_
size_t data_Nx = 10;
char data_I8[10] = {0, 1, -2, 3, -4, 5, -6, 7, -8, 9};
short data_I16[10] = {512, 513, -510, 515, -508, 517, -506, 519, -504, 521};
int data_I32[10] = {131072, 131073, -131070, 131075, -131068,
131077, -131066, 131079, -131064, 131081};
long int data_I64[10] = {8589934592, 8589934593, -8589934590, 8589934595,
-8589934588, 8589934597, -8589934586, 8589934599,
-8589934584, 8589934601};
#include <stdint.h>
unsigned char data_U8[10] = {128, 129, 130, 131, 132, 133, 134, 135, 136, 137};
size_t data_Nx = 10;
unsigned short data_U16[10] = {32768, 32769, 32770, 32771, 32772,
32773, 32774, 32775, 32776, 32777};
int8_t data_I8[10] = {0, 1, -2, 3, -4, 5, -6, 7, -8, 9};
int16_t data_I16[10] = {512, 513, -510, 515, -508, 517, -506, 519, -504, 521};
int32_t data_I32[10] = {131072, 131073, -131070, 131075, -131068,
131077, -131066, 131079, -131064, 131081};
int64_t data_I64[10] = {8589934592, 8589934593, -8589934590, 8589934595,
-8589934588, 8589934597, -8589934586, 8589934599,
-8589934584, 8589934601};
unsigned int data_U32[10] = {2147483648, 2147483649, 2147483650, 2147483651,
2147483652, 2147483653, 2147483654, 2147483655,
2147483656, 2147483657};
uint8_t data_U8[10] = {128, 129, 130, 131, 132, 133, 134, 135, 136, 137};
uint16_t data_U16[10] = {32768, 32769, 32770, 32771, 32772,
32773, 32774, 32775, 32776, 32777};
uint32_t data_U32[10] = {2147483648, 2147483649, 2147483650, 2147483651,
2147483652, 2147483653, 2147483654, 2147483655,
2147483656, 2147483657};
uint64_t data_U64[10] = {9223372036854775808UL, 9223372036854775809UL,
9223372036854775810UL, 9223372036854775811UL,
9223372036854775812UL, 9223372036854775813UL,
9223372036854775814UL, 9223372036854775815UL,
9223372036854775816UL, 9223372036854775817UL};
unsigned long int data_U64[10] = {9223372036854775808UL, 9223372036854775809UL,
9223372036854775810UL, 9223372036854775811UL,
9223372036854775812UL, 9223372036854775813UL,
9223372036854775814UL, 9223372036854775815UL,
9223372036854775816UL, 9223372036854775817UL};
float data_R32[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
double data_R64[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment