示例#1
0
 public static extern ncStatus_t ncGraphAllocateWithFifosEx(ncDeviceHandle_t *deviceHandle,
                                                            ncGraphHandle_t *graphHandle,
                                                            void *graphBuffer, unsigned_int graphBufferLength,
                                                            ncFifoHandle_t **inFifoHandle, ncFifoType_t inFifoType,
                                                            int inNumElem, ncFifoDataType_t inDataType,
                                                            ncFifoHandle_t **outFifoHandle, ncFifoType_t outFifoType,
                                                            int outNumElem, ncFifoDataType_t outDataType);
示例#2
0
 public static extern ncStatus_t ncGraphAllocateWithFifos(ncDeviceHandle_t *deviceHandle,
                                                          ncGraphHandle_t *graphHandle,
                                                          void *graphBuffer, unsigned_int graphBufferLength,
                                                          ncFifoHandle_t **inFifoHandle,
                                                          ncFifoHandle_t **outFifoHandle);
示例#3
0
 public static extern ncStatus_t ncFifoDestroy(ncFifoHandle_t **fifoHandle);
示例#4
0
 public static extern ncStatus_t ncGraphQueueInference(ncGraphHandle_t *graphHandle,
                                                       ncFifoHandle_t **fifoIn, unsigned_int inFifoCount,
                                                       ncFifoHandle_t **fifoOut, unsigned_int outFifoCount);
示例#5
0
 public static extern ncStatus_t ncFifoCreate(_char *name, ncFifoType_t type,
                                              ncFifoHandle_t **fifoHandle);