Adding support for Big Endian in graph_constructor_test and wav_io (#12179)
This commit is contained in:
parent
26719d29fb
commit
de01be952d
tensorflow/core
@ -2325,7 +2325,93 @@ TEST_F(GraphConstructorTest, ImportGraphDefProvidedShapeRefinerVersions) {
|
|||||||
ImportGraphDefOptions opts;
|
ImportGraphDefOptions opts;
|
||||||
// A valid graph at producer version 20, but one
|
// A valid graph at producer version 20, but one
|
||||||
// that would not import if the graph_def_version were 21.
|
// that would not import if the graph_def_version were 21.
|
||||||
string gdef_ascii = strings::StrCat(R"EOF(
|
string gdef_ascii;
|
||||||
|
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
|
gdef_ascii = strings::StrCat(R"EOF(
|
||||||
|
node {
|
||||||
|
name: "Sum/input"
|
||||||
|
op: "Const"
|
||||||
|
attr {
|
||||||
|
key: "dtype"
|
||||||
|
value {
|
||||||
|
type: DT_INT32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attr {
|
||||||
|
key: "value"
|
||||||
|
value {
|
||||||
|
tensor {
|
||||||
|
dtype: DT_INT32
|
||||||
|
tensor_shape {
|
||||||
|
dim {
|
||||||
|
size: 2
|
||||||
|
}
|
||||||
|
dim {
|
||||||
|
size: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tensor_content: "\000\000\000\001\000\000\000\002"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
node {
|
||||||
|
name: "Sum/reduction_indices"
|
||||||
|
op: "Const"
|
||||||
|
attr {
|
||||||
|
key: "dtype"
|
||||||
|
value {
|
||||||
|
type: DT_INT32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attr {
|
||||||
|
key: "value"
|
||||||
|
value {
|
||||||
|
tensor {
|
||||||
|
dtype: DT_INT32
|
||||||
|
tensor_shape {
|
||||||
|
dim {
|
||||||
|
size: 2
|
||||||
|
}
|
||||||
|
dim {
|
||||||
|
size: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tensor_content: "\000\000\000\000\000\000\000\001"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
node {
|
||||||
|
name: "Sum"
|
||||||
|
op: "Sum"
|
||||||
|
input: "Sum/input"
|
||||||
|
input: "Sum/reduction_indices"
|
||||||
|
attr {
|
||||||
|
key: "T"
|
||||||
|
value {
|
||||||
|
type: DT_INT32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attr {
|
||||||
|
key: "Tidx"
|
||||||
|
value {
|
||||||
|
type: DT_INT32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attr {
|
||||||
|
key: "keep_dims"
|
||||||
|
value {
|
||||||
|
b: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
versions {
|
||||||
|
producer: 20
|
||||||
|
})EOF");
|
||||||
|
|
||||||
|
#else
|
||||||
|
gdef_ascii = strings::StrCat(R"EOF(
|
||||||
node {
|
node {
|
||||||
name: "Sum/input"
|
name: "Sum/input"
|
||||||
op: "Const"
|
op: "Const"
|
||||||
@ -2407,7 +2493,7 @@ node {
|
|||||||
versions {
|
versions {
|
||||||
producer: 20
|
producer: 20
|
||||||
})EOF");
|
})EOF");
|
||||||
|
#endif
|
||||||
// Create a shape refiner with the latest TF_GRAPH_DEF_VERSION.
|
// Create a shape refiner with the latest TF_GRAPH_DEF_VERSION.
|
||||||
// Importing the graphdef with an existing refiner should
|
// Importing the graphdef with an existing refiner should
|
||||||
// make the refiner inherit the graphdef version from the
|
// make the refiner inherit the graphdef version from the
|
||||||
@ -2416,6 +2502,40 @@ versions {
|
|||||||
ExpectOK(gdef_ascii, opts, &refiner);
|
ExpectOK(gdef_ascii, opts, &refiner);
|
||||||
|
|
||||||
// Add another node with a higher producer
|
// Add another node with a higher producer
|
||||||
|
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
|
gdef_ascii = strings::StrCat(R"EOF(
|
||||||
|
node {
|
||||||
|
name: "RandomConst"
|
||||||
|
op: "Const"
|
||||||
|
attr {
|
||||||
|
key: "dtype"
|
||||||
|
value {
|
||||||
|
type: DT_INT32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attr {
|
||||||
|
key: "value"
|
||||||
|
value {
|
||||||
|
tensor {
|
||||||
|
dtype: DT_INT32
|
||||||
|
tensor_shape {
|
||||||
|
dim {
|
||||||
|
size: 2
|
||||||
|
}
|
||||||
|
dim {
|
||||||
|
size: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tensor_content: "\000\000\000\001\000\000\000\002"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
versions {
|
||||||
|
producer: 21
|
||||||
|
})EOF");
|
||||||
|
|
||||||
|
#else
|
||||||
gdef_ascii = strings::StrCat(R"EOF(
|
gdef_ascii = strings::StrCat(R"EOF(
|
||||||
node {
|
node {
|
||||||
name: "RandomConst"
|
name: "RandomConst"
|
||||||
@ -2447,6 +2567,7 @@ node {
|
|||||||
versions {
|
versions {
|
||||||
producer: 21
|
producer: 21
|
||||||
})EOF");
|
})EOF");
|
||||||
|
#endif
|
||||||
|
|
||||||
ExpectOK(gdef_ascii, opts, &refiner);
|
ExpectOK(gdef_ascii, opts, &refiner);
|
||||||
// Check that the refiner's graph def version is the lowest of
|
// Check that the refiner's graph def version is the lowest of
|
||||||
@ -2454,6 +2575,40 @@ versions {
|
|||||||
EXPECT_EQ(20, refiner.graph_def_version());
|
EXPECT_EQ(20, refiner.graph_def_version());
|
||||||
|
|
||||||
// Add another node with a lower producer
|
// Add another node with a lower producer
|
||||||
|
#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||||
|
gdef_ascii = strings::StrCat(R"EOF(
|
||||||
|
node {
|
||||||
|
name: "RandomConst2"
|
||||||
|
op: "Const"
|
||||||
|
attr {
|
||||||
|
key: "dtype"
|
||||||
|
value {
|
||||||
|
type: DT_INT32
|
||||||
|
}
|
||||||
|
}
|
||||||
|
attr {
|
||||||
|
key: "value"
|
||||||
|
value {
|
||||||
|
tensor {
|
||||||
|
dtype: DT_INT32
|
||||||
|
tensor_shape {
|
||||||
|
dim {
|
||||||
|
size: 2
|
||||||
|
}
|
||||||
|
dim {
|
||||||
|
size: 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
tensor_content: "\000\000\000\001\000\000\000\002"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
versions {
|
||||||
|
producer: 17
|
||||||
|
})EOF");
|
||||||
|
|
||||||
|
#else
|
||||||
gdef_ascii = strings::StrCat(R"EOF(
|
gdef_ascii = strings::StrCat(R"EOF(
|
||||||
node {
|
node {
|
||||||
name: "RandomConst2"
|
name: "RandomConst2"
|
||||||
@ -2485,6 +2640,7 @@ node {
|
|||||||
versions {
|
versions {
|
||||||
producer: 17
|
producer: 17
|
||||||
})EOF");
|
})EOF");
|
||||||
|
#endif
|
||||||
ExpectOK(gdef_ascii, opts, &refiner);
|
ExpectOK(gdef_ascii, opts, &refiner);
|
||||||
|
|
||||||
// Check that the refiner's graph def version is the lowest of
|
// Check that the refiner's graph def version is the lowest of
|
||||||
|
@ -111,7 +111,7 @@ Status ReadValue(const string& data, T* value, int* offset) {
|
|||||||
reinterpret_cast<const uint8*>(data.data() + *offset);
|
reinterpret_cast<const uint8*>(data.data() + *offset);
|
||||||
int shift = 0;
|
int shift = 0;
|
||||||
for (int i = 0; i < sizeof(T); ++i, shift += 8) {
|
for (int i = 0; i < sizeof(T); ++i, shift += 8) {
|
||||||
*value = *value | (data_buf[i] >> shift);
|
*value = *value | (data_buf[i] << shift);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*offset = new_offset;
|
*offset = new_offset;
|
||||||
|
Loading…
Reference in New Issue
Block a user