Intel® Movidius™ Neural Compute SDK
  • GitHub
  • Blog
  • User Forum
  • NC App Zoo
    • NCSDK C API 2.x
    • Overview
    • Enumerations
      • ncDeviceHwVersion_t
      • ncDeviceOption_t
      • ncDeviceState_t
      • ncFifoDataType_t
      • ncFifoOption_t
      • ncFifoState_t
      • ncFifoType_t
      • ncGlobalOption_t
      • ncGraphOption_t
      • ncGraphState_t
      • ncLogLevel_t
      • ncStatus_t
    • Structures
      • ncDeviceHandle_t
      • ncFifoHandle_t
      • ncGraphHandle_t
      • ncTensorDescriptor_t
    • Global Functions
      • ncGlobalGetOption()
      • ncGlobalSetOption()
    • Device Functions
      • ncDeviceClose()
      • ncDeviceCreate()
      • ncDeviceDestroy()
      • ncDeviceGetOption()
      • ncDeviceOpen()
      • ncDeviceSetOption()
    • Fifo Functions
      • ncFifoAllocate()
      • ncFifoCreate()
      • ncFifoDestroy()
      • Fifo.ncFifoGetOption()
      • ncFifoReadElem()
      • ncFifoRemoveElem()
      • ncFifoSetOption()
      • ncFifoWriteElem()
    • Graph Functions
      • ncGraphAllocate()
      • ncGraphAllocateWithFifos()
      • ncGraphAllocateWithFifosEx()
      • ncGraphCreate()
      • ncGraphDestroy()
      • ncGraphGetOption()
      • ncGraphQueueInference()
      • ncGraphQueueInferenceWithFifoElem()
      • ncGraphSetOption()

    enum ncFifoType_t

    Info Value
    Header mvnc.h
    Version 2.0
    See also ncFifoOption_t, ncFifoGetOption(), ncFifoSetOption()

    Overview

    FifoType is an enumeration that defines FIFO access types, which can be read with ncFifoGetOption() or set with ncFifoSetOption().

    Constant Description
    NC_FIFO_HOST_RO API can only read. Graphs can read/write.

    This type should be used for output FIFOs.
    NC_FIFO_HOST_WO API can only write. Graph can only read.

    This type should be used for input FIFOs.
    ©2019 Intel Corporation
    * Other names and brands may be claimed as the property of others.