pytorch/caffe2/opt/distributed_converter.cc
Bram Wasti 8c64655460 Open source distributed code (#12254)
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
2018-10-03 21:41:14 -07:00

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