Home
last modified time | relevance | path

Searched defs:errorHandle (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/lite/java/src/main/java/org/tensorflow/lite/
DNativeSignatureRunnerWrapper.java24 NativeSignatureRunnerWrapper(long interpreterHandle, long errorHandle, String signatureKey) { in NativeSignatureRunnerWrapper()
98 private final long errorHandle; field in NativeSignatureRunnerWrapper
115 long signatureRunnerHandle, long errorHandle, String inputName, int[] dims); in nativeResizeInput()
117 private static native void nativeAllocateTensors(long signatureRunnerHandle, long errorHandle); in nativeAllocateTensors()
119 private static native void nativeInvoke(long signatureRunnerHandle, long errorHandle); in nativeInvoke()
DNativeInterpreterWrapper.java56 long errorHandle = createErrorReporter(ERROR_BUFFER_SIZE); in NativeInterpreterWrapper() local
71 long errorHandle = createErrorReporter(ERROR_BUFFER_SIZE); in NativeInterpreterWrapper() local
76 private void init(long errorHandle, long modelHandle, InterpreterImpl.Options options) { in init()
566 long errorHandle; field in NativeInterpreterWrapper
603 private static native void run(long interpreterHandle, long errorHandle); in run()
606 long interpreterHandle, long errorHandle, int inputIdx, int[] dims, boolean strict); in resizeInput()
608 private static native long allocateTensors(long interpreterHandle, long errorHandle); in allocateTensors()
637 private static native long createModel(String modelPathOrBuffer, long errorHandle); in createModel()
639 private static native long createModelWithBuffer(ByteBuffer modelBuffer, long errorHandle); in createModelWithBuffer()
643 long errorHandle, in createInterpreter()
[all …]
DNativeInterpreterWrapperExperimental.java43 private static native void resetVariableTensors(long interpreterHandle, long errorHandle); in resetVariableTensors()