Exemplo n.º 1
0
 public static extern ncStatus_t ncGraphAllocateWithFifos(ncDeviceHandle_t *deviceHandle,
                                                          ncGraphHandle_t *graphHandle,
                                                          void *graphBuffer, unsigned_int graphBufferLength,
                                                          ncFifoHandle_t **inFifoHandle,
                                                          ncFifoHandle_t **outFifoHandle);
Exemplo n.º 2
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);
Exemplo n.º 3
0
 public static extern ncStatus_t ncGraphSetOption(ncGraphHandle_t *graphHandle,
                                                  ncGraphOption_t option, void *data, unsigned_int dataLength);
Exemplo n.º 4
0
 public static extern ncStatus_t ncGraphQueueInference(ncGraphHandle_t *graphHandle,
                                                       ncFifoHandle_t **fifoIn, unsigned_int inFifoCount,
                                                       ncFifoHandle_t **fifoOut, unsigned_int outFifoCount);
Exemplo n.º 5
0
 public static extern ncStatus_t ncGraphAllocate(ncDeviceHandle_t *deviceHandle,
                                                 ncGraphHandle_t *graphHandle,
                                                 void *graphBuffer, unsigned_int graphBufferLength);
Exemplo n.º 6
0
 public static extern ncStatus_t ncDeviceSetOption(ncDeviceHandle_t *deviceHandle,
                                                   ncDeviceOption_t option, void *data,
                                                   unsigned_int dataLength);
Exemplo n.º 7
0
 public static extern ncStatus_t ncGlobalSetOption(ncGlobalOption_t option, void *data,
                                                   unsigned_int dataLength);
Exemplo n.º 8
0
 public static extern ncStatus_t ncFifoSetOption(ncFifoHandle_t *fifoHandle, ncFifoOption_t option,
                                                 void *data, unsigned_int dataLength);
Exemplo n.º 9
0
 public static extern ncStatus_t ncFifoAllocate(ncFifoHandle_t *fifoHandle,
                                                ncDeviceHandle_t *device,
                                                ncTensorDescriptor_t *tensorDesc,
                                                unsigned_int numElem);