Skip to content

CPUPluginIntelSoftwareDevelopmentEmulator

Egor Duplensky edited this page Nov 18, 2021 · 4 revisions

Intel Software Development Emulator

Intel SDE can be used for emulating CPU architecture, checking for AVX/SSE transitions, bad pointers and data misalignment, etc.

Also supports debugging within emulation.

In general the tool can be used for all kind of troubleshooting activities except performance analysis.

See Documentation for more information

Usage examples:

  • Emulating Sapphire Rapids CPU for benchmark_app together with blob dumping, for example to debug some accuracy issue:
OV_CPU_BLOB_DUMP_FORMAT=TEXT OV_CPU_BLOB_DUMP_NODE_TYPE=Convolution \
/path/to/sde -spr -- ./benchmark_app --niter 1 --nstreams 1 -m path/to/model.xml
  • Running cpuFuncTests on some old architecture, for example Sandy Bridge:

/path/to/sde -snd -- ./cpuFuncTests

  • Count AVX/SSE transitions for the current host:

/path/to/sde -ast -- ./benchmark_app -t 10 -m path/to/model.xml

Clone this wiki locally