mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-04 03:07:50 +00:00
There are older toolchains that don't support C++17 and are still used in shipping products. Rewrite hexdump.cc to not use C++17 features (std::byte and Class Template Argument Deduction). Also remove forcing of -std=libc for xtensa targets, which was added because stdlib isn't supported with -std=c++17. BUG=410831256
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
// Copyright 2024 The TensorFlow Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef TENSORFLOW_LITE_MICRO_HEXDUMP_H_
|
|
#define TENSORFLOW_LITE_MICRO_HEXDUMP_H_
|
|
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
#include "tensorflow/lite/micro/span.h"
|
|
|
|
namespace tflite {
|
|
|
|
// Displays the contents of a memory region, formatted in hexadecimal and ASCII
|
|
// in a style matching Python's hexdump module, using DebugLog().
|
|
void hexdump(Span<const uint8_t> region);
|
|
|
|
// Writes the contents of a memory region, formatted in hexadecimal and ASCII
|
|
// in a style matching Python's hexdump module, to a buffer. Returns the portion
|
|
// of the buffer written.
|
|
Span<char> hexdump(Span<const uint8_t> region, Span<char> buffer);
|
|
|
|
} // end namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_MICRO_HEXDUMP_H_
|