| 422 | public: |
| 423 | /**< Queue options */ |
| 424 | struct Options |
| 425 | { |
| 426 | /** Default Constructor |
| 427 | * |
| 428 | * As default options, no tuning will be performed, and the number of scheduling units will |
| 429 | * depends on internal device discovery functionality |
| 430 | */ |
| 431 | Options() : opts{AclTuningModeNone, 0} {}; |
| 432 | /** Constructor |
| 433 | * |
| 434 | * @param[in] mode Tuning mode to be used |
| 435 | * @param[in] compute_units Number of scheduling units to be used |
| 436 | */ |
| 437 | Options(TuningMode mode, int32_t compute_units) : opts{detail::as_cenum<AclTuningMode>(mode), compute_units} |
| 438 | { |
| 439 | } |
| 440 | |
| 441 | AclQueueOptions opts; |
| 442 | }; |
| 443 | |
| 444 | public: |
| 445 | /** Constructor |