mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/12254 Move distributed_* code to oss folders This unblocks adding python bindings Reviewed By: duc0 Differential Revision: D10141400 fbshipit-source-id: 04d6654b73b6757c4dc4a1ddd9dfa2ce23c8c91d
17 lines
302 B
C++
17 lines
302 B
C++
#include "caffe2/opt/converter.h"
|
|
|
|
namespace caffe2 {
|
|
namespace {
|
|
|
|
using namespace nom;
|
|
using namespace nom::repr;
|
|
|
|
TRIVIAL_CONVERTER(Declare);
|
|
REGISTER_CONVERTER(Declare, DeclareConverter);
|
|
|
|
TRIVIAL_CONVERTER(Export);
|
|
REGISTER_CONVERTER(Export, ExportConverter);
|
|
|
|
} // namespace
|
|
} // namespace caffe2
|