60 lines
2.2 KiB
C++
60 lines
2.2 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_EXPERIMENTAL_RESOURCE_CACHE_BUFFER_H_
|
|
#define TENSORFLOW_LITE_EXPERIMENTAL_RESOURCE_CACHE_BUFFER_H_
|
|
|
|
#include <cstddef>
|
|
#include <memory>
|
|
#include <unordered_map>
|
|
|
|
#include "tensorflow/lite/core/c/common.h"
|
|
#include "tensorflow/lite/experimental/resource/resource_variable.h"
|
|
#include "tensorflow/lite/kernels/kernel_util.h"
|
|
|
|
namespace tflite {
|
|
namespace resource {
|
|
|
|
/// WARNING: Experimental interface, subject to change.
|
|
// A Cache Buffer class. Useful for keeping the keys and values of a
|
|
// transformer block attention mechanism in autoregressive decode.
|
|
// Ops can access this buffer and add tensors to it. It also keeps track of the
|
|
// number of used entries in the cache.
|
|
class CacheBuffer : public ResourceVariable {
|
|
public:
|
|
CacheBuffer() = default;
|
|
CacheBuffer(const CacheBuffer &) = delete;
|
|
~CacheBuffer() override;
|
|
CacheBuffer &operator=(const CacheBuffer &) = delete;
|
|
// Initialize tensor of a certain shape using the provided type.
|
|
TfLiteStatus Initialize(const TfLiteIntArray &shape);
|
|
size_t GetNumEntries(int idx) const;
|
|
float *GetBuffer();
|
|
size_t GetSize();
|
|
void SetNumEntries(int idx, size_t count);
|
|
|
|
private:
|
|
// The number of entries currently used in the buffer;
|
|
std::unique_ptr<size_t[]> num_entries_;
|
|
// The float buffer for storage. Has shape:
|
|
// <batch, num layers, seq length, num heads, head dim>
|
|
std::unique_ptr<float[]> buffer_;
|
|
TfLiteIntArray *dims_;
|
|
};
|
|
|
|
} // namespace resource
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_EXPERIMENTAL_RESOURCE_CACHE_BUFFER_H_
|