Merge branch 'master' into ios-text-classifier

This commit is contained in:
Prianka Liz Kariat 2023-01-06 15:52:23 +05:30
commit b1f51528a5
7 changed files with 74 additions and 31 deletions

View File

@ -285,7 +285,7 @@ class GlProcessor : public ImageToTensorConverter {
auto source_texture = gl_helper_.CreateSourceTexture(input); auto source_texture = gl_helper_.CreateSourceTexture(input);
tflite::gpu::gl::GlTexture input_texture( tflite::gpu::gl::GlTexture input_texture(
GL_TEXTURE_2D, source_texture.name(), GL_TEXTURE_2D, source_texture.name(),
input_num_channels == 4 ? GL_RGB : GL_RGBA, input_num_channels == 4 ? GL_RGBA : GL_RGB,
source_texture.width() * source_texture.height() * source_texture.width() * source_texture.height() *
input_num_channels * sizeof(uint8_t), input_num_channels * sizeof(uint8_t),
/*layer=*/0, /*layer=*/0,

View File

@ -430,7 +430,7 @@ cc_library(
], ],
hdrs = [ hdrs = [
"tensor.h", "tensor.h",
"tensor_internal.h", "//mediapipe/framework/formats/tensor:internal.h",
], ],
copts = select({ copts = select({
"//mediapipe:apple": [ "//mediapipe:apple": [

View File

@ -26,7 +26,7 @@
#include "absl/container/flat_hash_map.h" #include "absl/container/flat_hash_map.h"
#include "absl/synchronization/mutex.h" #include "absl/synchronization/mutex.h"
#include "mediapipe/framework/formats/tensor_internal.h" #include "mediapipe/framework/formats/tensor/internal.h"
#include "mediapipe/framework/port.h" #include "mediapipe/framework/port.h"
#if MEDIAPIPE_METAL_ENABLED #if MEDIAPIPE_METAL_ENABLED

View File

@ -0,0 +1,24 @@
# Copyright 2019 The MediaPipe Authors.
#
# 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.
package(
default_visibility = ["//visibility:public"],
features = ["-layering_check"],
)
licenses(["notice"])
exports_files([
"internal.h",
])

View File

@ -7,7 +7,7 @@
#include <cstdint> #include <cstdint>
#include "mediapipe/framework/formats/tensor.h" #include "mediapipe/framework/formats/tensor.h"
#include "mediapipe/framework/formats/tensor_data_types.h" #include "mediapipe/framework/formats/tensor/views/data_types.h"
#include "mediapipe/gpu/gpu_test_base.h" #include "mediapipe/gpu/gpu_test_base.h"
#include "mediapipe/gpu/shader_util.h" #include "mediapipe/gpu/shader_util.h"
#include "tensorflow/lite/delegates/gpu/gl/gl_call.h" #include "tensorflow/lite/delegates/gpu/gl/gl_call.h"

View File

@ -73,10 +73,11 @@ export declare interface WasmModule {
// Wasm Module output listener entrypoints. Also built as part of // Wasm Module output listener entrypoints. Also built as part of
// gl_graph_runner_internal_multi_input. // gl_graph_runner_internal_multi_input.
simpleListeners?: {[outputStreamName: string]: (data: unknown) => void}; simpleListeners?:
{[outputStreamName: string]: (data: unknown, timestamp: number) => void};
vectorListeners?: { vectorListeners?: {
[outputStreamName: string]: ( [outputStreamName: string]: (
data: unknown, index: number, length: number) => void data: unknown, index: number, length: number, timestamp: number) => void
}; };
_attachBoolListener: (streamNamePtr: number) => void; _attachBoolListener: (streamNamePtr: number) => void;
_attachBoolVectorListener: (streamNamePtr: number) => void; _attachBoolVectorListener: (streamNamePtr: number) => void;
@ -418,10 +419,12 @@ export class GraphRunner {
* Ensures existence of the simple listeners table and registers the callback. * Ensures existence of the simple listeners table and registers the callback.
* Intended for internal usage. * Intended for internal usage.
*/ */
setListener<T>(outputStreamName: string, callbackFcn: (data: T) => void) { setListener<T>(
outputStreamName: string,
callbackFcn: (data: T, timestamp: number) => void) {
this.wasmModule.simpleListeners = this.wasmModule.simpleListeners || {}; this.wasmModule.simpleListeners = this.wasmModule.simpleListeners || {};
this.wasmModule.simpleListeners[outputStreamName] = this.wasmModule.simpleListeners[outputStreamName] =
callbackFcn as (data: unknown) => void; callbackFcn as (data: unknown, timestamp: number) => void;
} }
/** /**
@ -429,11 +432,12 @@ export class GraphRunner {
* Intended for internal usage. * Intended for internal usage.
*/ */
setVectorListener<T>( setVectorListener<T>(
outputStreamName: string, callbackFcn: (data: T[]) => void) { outputStreamName: string,
callbackFcn: (data: T[], timestamp: number) => void) {
let buffer: T[] = []; let buffer: T[] = [];
this.wasmModule.vectorListeners = this.wasmModule.vectorListeners || {}; this.wasmModule.vectorListeners = this.wasmModule.vectorListeners || {};
this.wasmModule.vectorListeners[outputStreamName] = this.wasmModule.vectorListeners[outputStreamName] =
(data: unknown, index: number, length: number) => { (data: unknown, index: number, length: number, timestamp: number) => {
// The Wasm listener gets invoked once for each element. Once we // The Wasm listener gets invoked once for each element. Once we
// receive all elements, we invoke the registered callback with the // receive all elements, we invoke the registered callback with the
// full array. // full array.
@ -442,7 +446,7 @@ export class GraphRunner {
// Invoke the user callback directly, as the Wasm layer may clean up // Invoke the user callback directly, as the Wasm layer may clean up
// the underlying data elements once we leave the scope of the // the underlying data elements once we leave the scope of the
// listener. // listener.
callbackFcn(buffer); callbackFcn(buffer, timestamp);
buffer = []; buffer = [];
} }
}; };
@ -740,7 +744,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachBoolListener( attachBoolListener(
outputStreamName: string, callbackFcn: (data: boolean) => void): void { outputStreamName: string,
callbackFcn: (data: boolean, timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setListener(outputStreamName, callbackFcn); this.setListener(outputStreamName, callbackFcn);
@ -760,7 +765,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachBoolVectorListener( attachBoolVectorListener(
outputStreamName: string, callbackFcn: (data: boolean[]) => void): void { outputStreamName: string,
callbackFcn: (data: boolean[], timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setVectorListener(outputStreamName, callbackFcn); this.setVectorListener(outputStreamName, callbackFcn);
@ -780,7 +786,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachIntListener( attachIntListener(
outputStreamName: string, callbackFcn: (data: number) => void): void { outputStreamName: string,
callbackFcn: (data: number, timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setListener(outputStreamName, callbackFcn); this.setListener(outputStreamName, callbackFcn);
@ -800,7 +807,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachIntVectorListener( attachIntVectorListener(
outputStreamName: string, callbackFcn: (data: number[]) => void): void { outputStreamName: string,
callbackFcn: (data: number[], timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setVectorListener(outputStreamName, callbackFcn); this.setVectorListener(outputStreamName, callbackFcn);
@ -820,7 +828,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachDoubleListener( attachDoubleListener(
outputStreamName: string, callbackFcn: (data: number) => void): void { outputStreamName: string,
callbackFcn: (data: number, timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setListener(outputStreamName, callbackFcn); this.setListener(outputStreamName, callbackFcn);
@ -840,7 +849,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachDoubleVectorListener( attachDoubleVectorListener(
outputStreamName: string, callbackFcn: (data: number[]) => void): void { outputStreamName: string,
callbackFcn: (data: number[], timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setVectorListener(outputStreamName, callbackFcn); this.setVectorListener(outputStreamName, callbackFcn);
@ -860,7 +870,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachFloatListener( attachFloatListener(
outputStreamName: string, callbackFcn: (data: number) => void): void { outputStreamName: string,
callbackFcn: (data: number, timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setListener(outputStreamName, callbackFcn); this.setListener(outputStreamName, callbackFcn);
@ -880,7 +891,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachFloatVectorListener( attachFloatVectorListener(
outputStreamName: string, callbackFcn: (data: number[]) => void): void { outputStreamName: string,
callbackFcn: (data: number[], timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setVectorListener(outputStreamName, callbackFcn); this.setVectorListener(outputStreamName, callbackFcn);
@ -900,7 +912,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachStringListener( attachStringListener(
outputStreamName: string, callbackFcn: (data: string) => void): void { outputStreamName: string,
callbackFcn: (data: string, timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setListener(outputStreamName, callbackFcn); this.setListener(outputStreamName, callbackFcn);
@ -920,7 +933,8 @@ export class GraphRunner {
* should not perform overly complicated (or any async) behavior. * should not perform overly complicated (or any async) behavior.
*/ */
attachStringVectorListener( attachStringVectorListener(
outputStreamName: string, callbackFcn: (data: string[]) => void): void { outputStreamName: string,
callbackFcn: (data: string[], timestamp: number) => void): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setVectorListener(outputStreamName, callbackFcn); this.setVectorListener(outputStreamName, callbackFcn);
@ -950,7 +964,8 @@ export class GraphRunner {
* with it). * with it).
*/ */
attachProtoListener( attachProtoListener(
outputStreamName: string, callbackFcn: (data: Uint8Array) => void, outputStreamName: string,
callbackFcn: (data: Uint8Array, timestamp: number) => void,
makeDeepCopy?: boolean): void { makeDeepCopy?: boolean): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setListener(outputStreamName, callbackFcn); this.setListener(outputStreamName, callbackFcn);
@ -984,7 +999,8 @@ export class GraphRunner {
* with it). * with it).
*/ */
attachProtoVectorListener( attachProtoVectorListener(
outputStreamName: string, callbackFcn: (data: Uint8Array[]) => void, outputStreamName: string,
callbackFcn: (data: Uint8Array[], timestamp: number) => void,
makeDeepCopy?: boolean): void { makeDeepCopy?: boolean): void {
// Set up our TS listener to receive any packets for this stream. // Set up our TS listener to receive any packets for this stream.
this.setVectorListener(outputStreamName, callbackFcn); this.setVectorListener(outputStreamName, callbackFcn);
@ -1017,8 +1033,10 @@ export class GraphRunner {
* up automatically by JS garbage collection whenever the user is finished * up automatically by JS garbage collection whenever the user is finished
* with it). * with it).
*/ */
attachAudioListener(outputStreamName: string, attachAudioListener(
callbackFcn: (data: Float32Array) => void, makeDeepCopy?: boolean): void { outputStreamName: string,
callbackFcn: (data: Float32Array, timestamp: number) => void,
makeDeepCopy?: boolean): void {
if (!this.wasmModule._attachAudioListener) { if (!this.wasmModule._attachAudioListener) {
console.warn( console.warn(
'Attempting to use attachAudioListener without support for ' + 'Attempting to use attachAudioListener without support for ' +
@ -1027,11 +1045,12 @@ export class GraphRunner {
// Set up our TS listener to receive any packets for this stream, and // Set up our TS listener to receive any packets for this stream, and
// additionally reformat our Uint8Array into a Float32Array for the user. // additionally reformat our Uint8Array into a Float32Array for the user.
this.setListener(outputStreamName, (data: Uint8Array) => { this.setListener(
outputStreamName, (data: Uint8Array, timestamp: number) => {
// Should be very fast // Should be very fast
const floatArray = const floatArray =
new Float32Array(data.buffer, data.byteOffset, data.length / 4); new Float32Array(data.buffer, data.byteOffset, data.length / 4);
callbackFcn(floatArray); callbackFcn(floatArray, timestamp);
}); });
// Tell our graph to listen for string packets on this stream. // Tell our graph to listen for string packets on this stream.