chromium/services/webnn/tflite/buffer_content.cc

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/webnn/tflite/buffer_content.h"

#include "base/compiler_specific.h"
#include "base/ranges/algorithm.h"
#include "third_party/tflite/buildflags.h"
#include "third_party/tflite/src/tensorflow/lite/util.h"

#if BUILDFLAG(BUILD_TFLITE_WITH_XNNPACK)
#include "third_party/xnnpack/src/include/xnnpack.h"  // nogncheck
#endif

namespace webnn::tflite {

namespace {

size_t AddPaddingIfNecessary(size_t size) {}

}  // namespace

BufferContent::BufferContent(size_t size)
    :{}

BufferContent::~BufferContent() = default;

base::span<uint8_t> BufferContent::AsSpan() const {}

}  // namespace webnn::tflite