An abstraction of a computational device: a CPU, a specific GPU card in the system, etc.
More...
An abstraction of a computational device: a CPU, a specific GPU card in the system, etc.
Most primitives are created to execute computations on one specific engine. The only exceptions are reorder primitives that transfer data between two different engines.
- See also
- Basic Concepts
◆ dnnl_engine_kind_t
Kinds of engines.
Enumerator |
---|
dnnl_any_engine | An unspecified engine.
|
dnnl_cpu | CPU engine.
|
dnnl_gpu | GPU engine.
|
◆ dnnl_engine_get_count()
Returns the number of engines of a particular kind.
- Parameters
-
kind | Kind of engines to count. |
- Returns
- Count of the engines.
◆ dnnl_engine_create()
◆ dnnl_engine_get_kind()
Returns the kind of an engine.
- Parameters
-
engine | Engine to query. |
kind | Output engine kind. |
- Returns
- dnnl_success on success and a status describing the error otherwise.
◆ dnnl_engine_destroy()
◆ convert_to_c()
Converts engine kind enum value from C++ API to C API type.
- Parameters
-
akind | C++ API engine kind enum value. |
- Returns
- Corresponding C API engine kind enum value.