xref: /aosp_15_r20/external/pytorch/caffe2/core/common.cc (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1 #include "caffe2/core/common.h"
2 
3 namespace caffe2 {
4 
GetBuildOptions()5 const std::map<string, string>& GetBuildOptions() {
6 #ifndef CAFFE2_BUILD_STRINGS
7 #define CAFFE2_BUILD_STRINGS {}
8 #endif
9   static const std::map<string, string> kMap = CAFFE2_BUILD_STRINGS;
10   return kMap;
11 }
12 
13 } // namespace caffe2
14