* Dequeue a burst of FFT operations from a queue of the device. * This functions returns only the current contents of the queue, and does not * block until @ num_ops is available. * This function does not provide any error notification to avoid the * corresponding overhead. * * @param dev_id * The identifier of the device. * @param queue_id * The index of the queue. * @param ops *
| 866 | * copied into the @p ops array). |
| 867 | */ |
| 868 | static inline uint16_t |
| 869 | rte_bbdev_dequeue_fft_ops(uint16_t dev_id, uint16_t queue_id, |
| 870 | struct rte_bbdev_fft_op **ops, uint16_t num_ops) |
| 871 | { |
| 872 | struct rte_bbdev *dev = &rte_bbdev_devices[dev_id]; |
| 873 | struct rte_bbdev_queue_data *q_data = &dev->data->queues[queue_id]; |
| 874 | return dev->dequeue_fft_ops(q_data, ops, num_ops); |
| 875 | } |
| 876 | |
| 877 | /** |
| 878 | * Dequeue a burst of MLDTS operations from a queue of the device. |
no outgoing calls