IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
248B

  1. #pragma once
  2. #include <torch/extension.h>
  3. #include <vector>
  4. #include <tuple>
  5. std::vector<torch::Tensor> dispatch_cpu(torch::Tensor input,
  6. int dim,
  7. bool descending,
  8. torch::optional<std::tuple<torch::Tensor, torch::Tensor>> out);