Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/lite/java/src/main/java/org/tensorflow/lite/
DInterpreter.java455 public void resizeInput(int idx, @NonNull int[] dims) { in resizeInput() method in Interpreter
470 public void resizeInput(int idx, @NonNull int[] dims, boolean strict) { in resizeInput() method in Interpreter
DNativeInterpreterWrapper.java226 void resizeInput(int idx, int[] dims) { in resizeInput() method in NativeInterpreterWrapper
231 void resizeInput(int idx, int[] dims, boolean strict) { in resizeInput() method in NativeInterpreterWrapper
242 private static native boolean resizeInput( in resizeInput() method in NativeInterpreterWrapper
/external/tensorflow/tensorflow/lite/swift/Sources/
DInterpreter.swift217 public func resizeInput(at index: Int, to shape: Tensor.Shape) throws { in resizeInput() function