// Copyright (C) 2018 Intel Corporation // // SPDX-License-Identifier: Apache-2.0 // #pragma once #include #include namespace MKLDNNPlugin { struct Config { bool useThreadBinding = true; bool collectPerfCounters = false; bool exclusiveAsyncRequests = false; bool enableDynamicBatch = false; int batchLimit = 0; void readProperties(const std::map &config); }; } // namespace MKLDNNPlugin