mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-29 23:06:41 +00:00
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "core/framework/endian.h"
|
|
#include "core/framework/endian_utils.h"
|
|
|
|
#include <vector>
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
namespace onnxruntime {
|
|
namespace utils {
|
|
namespace test {
|
|
|
|
TEST(EndianTest, EndiannessDetection) {
|
|
constexpr uint16_t test_value = 0x1234;
|
|
const unsigned char* test_value_first_byte = reinterpret_cast<const unsigned char*>(&test_value);
|
|
if constexpr (endian::native == endian::little) {
|
|
EXPECT_EQ(*test_value_first_byte, 0x34);
|
|
} else if constexpr (endian::native == endian::big) {
|
|
EXPECT_EQ(*test_value_first_byte, 0x12);
|
|
}
|
|
}
|
|
|
|
TEST(EndianTest, SwapByteOrderCopy) {
|
|
const auto src = std::vector<unsigned char>{
|
|
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l'};
|
|
|
|
auto result = std::vector<unsigned char>(src.size());
|
|
{
|
|
SwapByteOrderCopy(3, gsl::make_span(src), gsl::make_span(result));
|
|
const auto expected = std::vector<unsigned char>{
|
|
'c', 'b', 'a',
|
|
'f', 'e', 'd',
|
|
'i', 'h', 'g',
|
|
'l', 'k', 'j'};
|
|
EXPECT_EQ(result, expected);
|
|
}
|
|
|
|
{
|
|
SwapByteOrderCopy(4, gsl::make_span(src), gsl::make_span(result));
|
|
const auto expected = std::vector<unsigned char>{
|
|
'd', 'c', 'b', 'a',
|
|
'h', 'g', 'f', 'e',
|
|
'l', 'k', 'j', 'i'};
|
|
EXPECT_EQ(result, expected);
|
|
}
|
|
}
|
|
|
|
} // namespace test
|
|
} // namespace utils
|
|
} // namespace onnxruntime
|