You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

vision.cpp 449 B

3 years ago
12345678910111213141516171819
  1. // Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
  2. #include <torch/extension.h>
  3. #include "SwapAlign2Nat/SwapAlign2Nat.h"
  4. namespace tensormask {
  5. PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
  6. m.def(
  7. "swap_align2nat_forward",
  8. &SwapAlign2Nat_forward,
  9. "SwapAlign2Nat_forward");
  10. m.def(
  11. "swap_align2nat_backward",
  12. &SwapAlign2Nat_backward,
  13. "SwapAlign2Nat_backward");
  14. }
  15. } // namespace tensormask

No Description