Include the necessary headers only.
PiperOrigin-RevId: 306881149 Change-Id: Icd97fdef0169664a996e39178cd6c7320414611d
This commit is contained in:
parent
fcb0534cc5
commit
25340d6fe5
tensorflow/lite/micro
@ -71,10 +71,7 @@ cc_library(
|
||||
],
|
||||
build_for_embedded = True,
|
||||
copts = micro_copts(),
|
||||
deps = [
|
||||
"//tensorflow/lite/c:common",
|
||||
"//tensorflow/lite/core/api",
|
||||
],
|
||||
deps = ["//tensorflow/lite/c:common"],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
|
@ -21,6 +21,9 @@ limitations under the License.
|
||||
|
||||
#include "tensorflow/lite/micro/micro_string.h"
|
||||
|
||||
#include <cstdarg>
|
||||
#include <cstdint>
|
||||
|
||||
namespace {
|
||||
|
||||
// Int formats can need up to 10 bytes for the value plus a single byte for the
|
||||
|
@ -15,10 +15,7 @@ limitations under the License.
|
||||
#ifndef TENSORFLOW_LITE_MICRO_MICRO_STRING_H_
|
||||
#define TENSORFLOW_LITE_MICRO_MICRO_STRING_H_
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
#include "tensorflow/lite/core/api/error_reporter.h"
|
||||
#include "tensorflow/lite/micro/micro_string.h"
|
||||
#include <cstdarg>
|
||||
|
||||
// Implements simple string formatting for numeric types. Returns the number of
|
||||
// bytes written to output.
|
||||
|
Loading…
Reference in New Issue
Block a user