Commit 35c2dfe3 authored by Adam Procter's avatar Adam Procter Committed by Robert Kimball

Add missing include to benchmark.cpp (#1870)

Fixes an error when building on macOS (with CPU backend disabled, but not sure if that makes a difference):

```
/Users/amprocte/Work/ngraph/src/tools/nbench/benchmark.cpp:36:29: error: use of undeclared identifier '_MM_FLUSH_ZERO_ON'
    _MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
                            ^
/Users/amprocte/Work/ngraph/src/tools/nbench/benchmark.cpp:37:33: error: use of undeclared identifier '_MM_DENORMALS_ZERO_ON'
    _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
```
parent 256a8b6d
......@@ -15,6 +15,7 @@
//*****************************************************************************
#include <random>
#include <xmmintrin.h>
#include "benchmark.hpp"
#include "ngraph/file_util.hpp"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment