mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Fixes #ISSUE_NUMBER Pull Request resolved: https://github.com/pytorch/pytorch/pull/128477 Approved by: https://github.com/ezyang, https://github.com/r-barnes
14 lines
282 B
C++
14 lines
282 B
C++
#include "caffe2/core/common.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
const std::map<string, string>& GetBuildOptions() {
|
|
#ifndef CAFFE2_BUILD_STRINGS
|
|
#define CAFFE2_BUILD_STRINGS {}
|
|
#endif
|
|
static const std::map<string, string> kMap = CAFFE2_BUILD_STRINGS;
|
|
return kMap;
|
|
}
|
|
|
|
} // namespace caffe2
|