This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prototype for runtime feature detection
- Loading branch information
Showing
4 changed files
with
237 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/*! | ||
* Copyright (c) 2018 by Contributors | ||
* \file mxfeatures.h | ||
* \brief check MXNet features including compile time support | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include <dmlc/base.h> | ||
#include <mshadow/base.h> | ||
|
||
/*! | ||
*\brief whether to use opencv support | ||
*/ | ||
#ifndef MXNET_USE_OPENCV | ||
#define MXNET_USE_OPENCV 1 | ||
#endif | ||
|
||
/*! | ||
*\brief whether to use cuda support | ||
*/ | ||
#ifndef MXNET_USE_CUDA | ||
#define MXNET_USE_CUDA MSHADOW_USE_CUDA | ||
#endif | ||
|
||
/*! | ||
*\brief whether to use cudnn library for convolution | ||
*/ | ||
#ifndef MXNET_USE_CUDNN | ||
#define MXNET_USE_CUDNN MSHADOW_USE_CUDNN | ||
#endif | ||
|
||
/*! | ||
*\brief whether to use cusolver library | ||
*/ | ||
#ifndef MXNET_USE_CUSOLVER | ||
#define MXNET_USE_CUSOLVER MSHADOW_USE_CUSOLVER | ||
#endif | ||
|
||
#ifndef MXNET_ENABLE_CUDA_RTC | ||
#define MXNET_ENABLE_CUDA_RTC 0 | ||
#endif | ||
|
||
/*! \brief Error message for using gpu when MXNET_USE_CUDA==0 */ | ||
#define MXNET_GPU_NOT_ENABLED_ERROR "GPU is not enabled" | ||
|
||
|
||
#ifndef MXNET_USE_TENSORRT | ||
#define MXNET_USE_TENSORRT 0 | ||
#endif | ||
|
||
#ifndef MXNET_USE_OPENMP | ||
#define MXNET_USE_OPENMP 0 | ||
#endif | ||
|
||
#ifndef MXNET_USE_F16C | ||
#define MXNET_USE_F16C MSHADOW_USE_F16C | ||
#endif | ||
|
||
#ifndef MXNET_USE_CAFFE | ||
#define MXNET_USE_CAFFE 0 | ||
#endif | ||
|
||
#ifndef MXNET_USE_DIST_KVSTORE | ||
#define MXNET_USE_DIST_KVSTORE 0 | ||
#endif | ||
|
||
#ifndef MXNET_USE_SIGNAL_HANDLER | ||
#define MXNET_USE_SIGNAL_HANDLER 0 | ||
#endif | ||
|
||
#ifndef MXNET_USE_NCCL | ||
#define MXNET_USE_NCCL 0 | ||
#endif | ||
|
||
|
||
|
||
namespace mxnet { | ||
namespace features { | ||
// Check compile flags such as CMakeLists.txt | ||
|
||
/// Compile time features | ||
enum : uint32_t { | ||
// NVIDIA, CUDA | ||
CUDA=0, | ||
CUDNN, | ||
NCCL, | ||
CUDA_RTC, | ||
TENSORRT, | ||
|
||
// Multiprocessing / CPU / System | ||
OPENMP, | ||
SSE, | ||
F16C, | ||
JEMALLOC, | ||
|
||
// Math libraries | ||
LAPACK, | ||
MKLDNN, | ||
|
||
// Image processing | ||
OPENCV, | ||
|
||
// Misc | ||
CAFFE, | ||
PROFILER, | ||
DIST_KVSTORE, | ||
CXX14, | ||
SIGNAL_HANDLER, | ||
DEBUG, | ||
|
||
// size indicator | ||
MAX_FEATURES | ||
}; | ||
|
||
|
||
/*! | ||
* \return true if the given feature is supported | ||
*/ | ||
bool is_enabled(uint32_t feat); | ||
|
||
} // namespace features | ||
} // namespace mxnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/*! | ||
* Copyright (c) 2018 by Contributors | ||
* \file mxfeatures.cc | ||
* \brief check MXNet features including compile time support | ||
*/ | ||
|
||
#include "mxnet/mxfeatures.h" | ||
#include "dmlc/logging.h" | ||
#include <bitset> | ||
|
||
|
||
namespace mxnet { | ||
namespace features { | ||
|
||
class Storage { | ||
public: | ||
Storage(): | ||
feature_bits() | ||
{ | ||
if (MXNET_USE_CUDA) | ||
feature_bits.set(CUDA); | ||
if (MXNET_USE_CUDNN) | ||
feature_bits.set(CUDNN); | ||
if (MXNET_USE_NCCL) | ||
feature_bits.set(NCCL); | ||
if (MXNET_USE_OPENCV) | ||
feature_bits.set(OPENCV); | ||
if (MXNET_ENABLE_CUDA_RTC) | ||
feature_bits.set(CUDA_RTC); | ||
if (MXNET_USE_TENSORRT) | ||
feature_bits.set(TENSORRT); | ||
if (MXNET_USE_OPENMP) | ||
feature_bits.set(OPENMP); | ||
if (MXNET_USE_F16C) | ||
feature_bits.set(F16C); | ||
if (MXNET_USE_LAPACK) | ||
feature_bits.set(LAPACK); | ||
if (MXNET_USE_MKLDNN) | ||
feature_bits.set(MKLDNN); | ||
if (MXNET_USE_OPENCV) | ||
feature_bits.set(OPENCV); | ||
if (MXNET_USE_CAFFE) | ||
feature_bits.set(CAFFE); | ||
if (MXNET_USE_DIST_KVSTORE) | ||
feature_bits.set(DIST_KVSTORE); | ||
if (MXNET_USE_SIGNAL_HANDLER) | ||
feature_bits.set(SIGNAL_HANDLER); | ||
#ifndef NDEBUG | ||
feature_bits.set(DEBUG); | ||
#endif | ||
|
||
|
||
#ifdef USE_JEMALLOC | ||
feature_bits.set(JEMALLOC); | ||
#endif | ||
} | ||
bool is_enabled(unsigned feat) { | ||
CHECK_LT(feat, MAX_FEATURES); | ||
return feature_bits.test(feat); | ||
} | ||
private: | ||
std::bitset<MAX_FEATURES> feature_bits; | ||
}; | ||
|
||
static Storage storage; | ||
|
||
bool is_enabled(unsigned feat) { | ||
return storage.is_enabled(feat); | ||
} | ||
|
||
} // namespace features | ||
} // namespace mxnet |