Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge for v2.0.0 #3

Merged
merged 14 commits into from
Jun 17, 2022
  •  
  •  
  •  
7 changes: 6 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"files.associations": {
"*.inc": "cpp",
"chrono": "cpp",
"functional": "cpp",
"xtr1common": "cpp",
Expand Down Expand Up @@ -84,7 +85,11 @@
"memory_resource": "cpp",
"string_view": "cpp",
"cinttypes": "cpp",
"*.inc": "cpp"
"codecvt": "cpp",
"csetjmp": "cpp",
"unordered_set": "cpp",
"future": "cpp",
"variant": "cpp"
},
"cmake.configureOnOpen": false
}
329 changes: 329 additions & 0 deletions include/edgetpu.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,329 @@
/*
Copyright 2018 Google LLC

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.
==============================================================================*/
// @cond BEGIN doxygen exclude
// This header file defines EdgeTpuManager and EdgeTpuContext.
// See below for more details.

#ifndef TFLITE_PUBLIC_EDGETPU_H_
#define TFLITE_PUBLIC_EDGETPU_H_

// If the ABI changes in a backward-incompatible way, please increment the
// version number in the BUILD file.

#include <memory>
#include <ostream>
#include <string>
#include <unordered_map>
#include <vector>

#include "tensorflow/lite/context.h"

#if defined(_WIN32)
#ifdef EDGETPU_COMPILE_LIBRARY
#define EDGETPU_EXPORT __declspec(dllexport)
#else
#define EDGETPU_EXPORT __declspec(dllimport)
#endif // EDGETPU_COMPILE_LIBRARY
#else
#define EDGETPU_EXPORT __attribute__((visibility("default")))
#endif // _WIN32
// END doxygen exclude @endcond

namespace edgetpu {

// Edge TPU custom op.
static const char kCustomOp[] = "edgetpu-custom-op";

// The device interface used with the host
enum class DeviceType {
// PCIe Gen2 x1
kApexPci = 0,
// USB 2.0 or 3.1 Gen1
kApexUsb = 1,
};

class EdgeTpuContext;

// Singleton Edge TPU manager for allocating new TPU contexts.
// Functions in this interface are thread-safe.
class EDGETPU_EXPORT EdgeTpuManager {
public:
// See EdgeTpuContext::GetDeviceOptions().
using DeviceOptions = std::unordered_map<std::string, std::string>;
// Details about a particular Edge TPU
struct DeviceEnumerationRecord {
// The Edge TPU device type, either PCIe or USB
DeviceType type;
// System path for the Edge TPU device
std::string path;

// Returns true if two enumeration records point to the same device.
friend bool operator==(const DeviceEnumerationRecord& lhs,
const DeviceEnumerationRecord& rhs) {
return (lhs.type == rhs.type) && (lhs.path == rhs.path);
}

// Returns true if two enumeration records point to defferent devices.
friend bool operator!=(const DeviceEnumerationRecord& lhs,
const DeviceEnumerationRecord& rhs) {
return !(lhs == rhs);
}
};

// Returns a pointer to the singleton object, or nullptr if not supported on
// this platform.
static EdgeTpuManager* GetSingleton();

// @cond BEGIN doxygen exclude for deprecated APIs.

// NewEdgeTpuContext family functions has been deprecated and will be removed
// in the future. Please use OpenDevice for new code.
//
// These functions return an unique_ptr to EdgeTpuContext, with
// the intention that the device will be closed, and associate resources
// released, when the unique_ptr leaves scope.
//
// These functions seek exclusive ownership of the opened devices. As they
// cannot open devices already opened by OpenDevice, and vice versa.
// Devices opened through these functions would have attribute
// "ExclusiveOwnership", which can be queried through
// #EdgeTpuContext::GetDeviceOptions().

// Creates a new Edge TPU context to be assigned to Tflite::Interpreter. The
// Edge TPU context is associated with the default TPU device. May be null
// if underlying device cannot be found or open. Caller owns the returned new
// context and should destroy the context either implicity or explicitly after
// all interpreters sharing this context are destroyed.
virtual std::unique_ptr<EdgeTpuContext> NewEdgeTpuContext() = 0;

// Same as above, but the created context is associated with the specified
// type.
virtual std::unique_ptr<EdgeTpuContext> NewEdgeTpuContext(
DeviceType device_type) = 0;

// Same as above, but the created context is associated with the specified
// type and device path.
virtual std::unique_ptr<EdgeTpuContext> NewEdgeTpuContext(
DeviceType device_type, const std::string& device_path) = 0;

// Same as above, but the created context is associated with the given device
// type, path and options.
//
// Available options are:
// - "Performance": ["Low", "Medium", "High", "Max"] (Default is "Max")
// Adjust internal clock rate to achieve different performance / power
// balance.
// - "Usb.AlwaysDfu": ["True", "False"] (Default is "False")
// Always perform device firmware update after reset. DFU is usually only
// necessary after power cycle.
// - "Usb.MaxBulkInQueueLength": ["0",.., "255"] (Default is "32")
// Larger queue length may improve USB performance on the direction from
// device to host.
virtual std::unique_ptr<EdgeTpuContext> NewEdgeTpuContext(
DeviceType device_type, const std::string& device_path,
const DeviceOptions& options) = 0;
// END doxygen exclude for deprecated APIs @endcond


// Enumerates all connected Edge TPU devices.
virtual std::vector<DeviceEnumerationRecord> EnumerateEdgeTpu() const = 0;

// Opens the default Edge TPU device.
//
// All `OpenDevice` functions return a shared_ptr to EdgeTpuContext, with
// the intention that the device can be shared among multiple software
// components. The device is closed after the last reference leaves scope.
//
// Multiple invocations of this function could return handle to the same
// device, but there is no guarantee.
//
// You cannot open devices opened by `NewEdgeTpuContext`, and vice versa.
//
// @return A shared pointer to Edge TPU device. The shared_ptr could point to
// nullptr in case of error.
virtual std::shared_ptr<EdgeTpuContext> OpenDevice() = 0;

// Same as above, but the returned context is associated with the specified
// type.
//
// @param device_type The DeviceType you want to open.
virtual std::shared_ptr<EdgeTpuContext> OpenDevice(
DeviceType device_type) = 0;

// Same as above, but the returned context is associated with the specified
// type and device path. If path is empty, any device of the specified type
// could be returned.
//
// @param device_type The DeviceType you want to open.
// @param device_path A path to the device you want.
//
// @return A shared pointer to Edge TPU device. The shared_ptr could point to
// nullptr in case of error.
virtual std::shared_ptr<EdgeTpuContext> OpenDevice(
DeviceType device_type, const std::string& device_path) = 0;

// Same as above, but the specified options are used to create a new context
// if no existing device is compatible with the specified type and path.
//
// If a device of compatible type and path is not found, the options could be
// ignored. It is the caller's responsibility to verify if the returned
// context is desirable, through EdgeTpuContext::GetDeviceOptions().
//
// @param device_type The DeviceType you want to open.
// @param device_path A path to the device you want.
// @param options Specific criteria for the device you want.
// Available options are:
// - "Performance": ["Low", "Medium", "High", "Max"] (Default is "Max")
// Adjust internal clock rate to achieve different performance / power
// balance.
// - "Usb.AlwaysDfu": ["True", "False"] (Default is "False")
// Always perform device firmware update after reset. DFU is usually only
// necessary after power cycle.
// - "Usb.MaxBulkInQueueLength": ["0",.., "255"] (Default is "32")
// Larger queue length may improve USB performance on the direction from
// device to host.
//
// @return A shared pointer to Edge TPU device. The shared_ptr could point to
// nullptr in case of error.
virtual std::shared_ptr<EdgeTpuContext> OpenDevice(
DeviceType device_type, const std::string& device_path,
const DeviceOptions& options) = 0;

// Returns a snapshot of currently opened shareable devices.
// Exclusively owned Edge TPU devices cannot be returned here, as they're
// owned by unique pointers.
virtual std::vector<std::shared_ptr<EdgeTpuContext>> GetOpenedDevices()
const = 0;

// Sets the verbosity of operating logs related to each Edge TPU.
//
// @param verbosity The verbosity level, which may be 0 to 10.
// 10 is the most verbose; 0 is the default.
virtual TfLiteStatus SetVerbosity(int verbosity) = 0;

// Returns the version of the Edge TPU runtime stack.
virtual std::string Version() const = 0;

protected:
// No deletion for this singleton instance.
virtual ~EdgeTpuManager() = default;
};

// EdgeTpuContext is an object associated with one or more tflite::Interpreter.
// Instances of this class should be allocated with EdgeTpuManager::OpenDevice.
//
// Two (or more) Interpreter instances can point to the same context. This means
// the tasks from both would be executed under the same TPU context.
// The lifetime of this context must be longer than all associated
// tflite::Interpreter instances.
//
// Functions in this interface are thread-safe.
//
// Typical usage with Coral:
//
// ```
// // Sets up the tpu_context.
// auto tpu_context =
// edgetpu::EdgeTpuManager::GetSingleton()->OpenDevice();
//
// std::unique_ptr<tflite::Interpreter> interpreter;
// tflite::ops::builtin::BuiltinOpResolver resolver;
// auto model =
// tflite::FlatBufferModel::BuildFromFile(model_file_name.c_str());
//
// // Registers Edge TPU custom op handler with Tflite resolver.
// resolver.AddCustom(edgetpu::kCustomOp, edgetpu::RegisterCustomOp());
//
// tflite::InterpreterBuilder(*model, resolver)(&interpreter);
//
// // Binds a context with a specific interpreter.
// interpreter->SetExternalContext(kTfLiteEdgeTpuContext,
// tpu_context.get());
//
// // Note that all edge TPU context set ups should be done before this
// // function is called.
// interpreter->AllocateTensors();
// .... (Prepare input tensors)
// interpreter->Invoke();
// .... (retrieving the result from output tensors)
//
// // Releases interpreter instance to free up resources associated with
// // this custom op.
// interpreter.reset();
//
// // Closes the edge TPU.
// tpu_context.reset();
// ```
//
// Typical usage with Android NNAPI:
//
// ```
// std::unique_ptr<tflite::Interpreter> interpreter;
// tflite::ops::builtin::BuiltinOpResolver resolver;
// auto model =
// tflite::FlatBufferModel::BuildFromFile(model_file_name.c_str());
//
// // Registers Edge TPU custom op handler with Tflite resolver.
// resolver.AddCustom(edgetpu::kCustomOp, edgetpu::RegisterCustomOp());
//
// tflite::InterpreterBuilder(*model, resolver)(&interpreter);
//
// interpreter->AllocateTensors();
// .... (Prepare input tensors)
// interpreter->Invoke();
// .... (retrieving the result from output tensors)
//
// // Releases interpreter instance to free up resources associated with
// // this custom op.
// interpreter.reset();
// ```
class EdgeTpuContext : public TfLiteExternalContext {
public:
virtual ~EdgeTpuContext() = 0;

// Returns a pointer to the device enumeration record for this device,
// if available.
virtual const EdgeTpuManager::DeviceEnumerationRecord& GetDeviceEnumRecord()
const = 0;

// Returns a snapshot of the options used to open this
// device, and current state, if available.
//
// Supported attributes are:
// - "ExclusiveOwnership": present when it is under exclusive ownership
// (unique_ptr returned by NewEdgeTpuContext).
// - "IsReady": present when it is ready for further requests.
virtual EdgeTpuManager::DeviceOptions GetDeviceOptions() const = 0;

// Returns true if the device is most likely ready to accept requests.
// When there are fatal errors, including unplugging of an USB device, the
// state of this device would be changed.
virtual bool IsReady() const = 0;
};

// Returns pointer to an instance of TfLiteRegistration to handle
// Edge TPU custom ops, to be used with
// tflite::ops::builtin::BuiltinOpResolver::AddCustom
EDGETPU_EXPORT TfLiteRegistration* RegisterCustomOp();

// Inserts name of device type into ostream. Returns the modified ostream.
EDGETPU_EXPORT std::ostream& operator<<(std::ostream& out,
DeviceType device_type);

} // namespace edgetpu


#endif // TFLITE_PUBLIC_EDGETPU_H_
2 changes: 2 additions & 0 deletions include/flatbuffers/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This is version 1.12.0 of flatbuffers -> https://github.com/google/flatbuffers/releases/tag/v1.12.0
**THE TFLITE LIB INCLUDED WAS COMPILED WITH THIS VERSION AND NOT THE MOST RECENT ONE**
Loading