Execute a session. The author apologizes for the ugliness of the long argument list of this method. However, take solace in the fact that this is a private method meant to cross the JNI boundary. @param handle to the C API TF_Session object (Session.nativeHandle) @param runOptions serialized re
(
long handle,
byte[] runOptions,
long[] inputTensorHandles,
long[] inputOpHandles,
int[] inputOpIndices,
long[] outputOpHandles,
int[] outputOpIndices,
long[] targetOpHandles,
boolean wantRunMetadata,
long[] outputTensorHandles)
| 478 | * buffer, false otherwise. |
| 479 | */ |
| 480 | private static native byte[] run( |
| 481 | long handle, |
| 482 | byte[] runOptions, |
| 483 | long[] inputTensorHandles, |
| 484 | long[] inputOpHandles, |
| 485 | int[] inputOpIndices, |
| 486 | long[] outputOpHandles, |
| 487 | int[] outputOpIndices, |
| 488 | long[] targetOpHandles, |
| 489 | boolean wantRunMetadata, |
| 490 | long[] outputTensorHandles); |
| 491 | } |
no outgoing calls