RE-OWOD/projects/TensorMask/tensormask/layers/csrc/vision.cpp

20 lines
449 B
C++
Raw Normal View History

2022-01-04 13:41:19 +08:00
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
#include <torch/extension.h>
#include "SwapAlign2Nat/SwapAlign2Nat.h"
namespace tensormask {
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
m.def(
"swap_align2nat_forward",
&SwapAlign2Nat_forward,
"SwapAlign2Nat_forward");
m.def(
"swap_align2nat_backward",
&SwapAlign2Nat_backward,
"SwapAlign2Nat_backward");
}
} // namespace tensormask