getInput method

VariableInfo getInput(
  1. int index
)

Implementation

VariableInfo getInput(int index) {
  MnnAssert(index >= 0 && index < inputsLength, "index out of range");
  return VariableInfo.fromPointer(C.mnn_module_info_get_inputs_at(ptr, index));
}