MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / Options

Class Options

arm_compute/Acl.hpp:424–442  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

422public:
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
444public:
445 /** Constructor

Callers 2

ContextMethod · 0.70
QueueMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected