Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

ext.cpp 571 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  1. /*
  2. * Copyright (C) 2023, Inria
  3. * GRAPHDECO research group, https://team.inria.fr/graphdeco
  4. * All rights reserved.
  5. *
  6. * This software is free for non-commercial, research and evaluation use
  7. * under the terms of the LICENSE.md file.
  8. *
  9. * For inquiries contact george.drettakis@inria.fr
  10. */
  11. #include <torch/extension.h>
  12. #include "rasterize_points.h"
  13. PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
  14. m.def("rasterize_gaussians", &RasterizeGaussiansCUDA);
  15. m.def("rasterize_gaussians_backward", &RasterizeGaussiansBackwardCUDA);
  16. m.def("mark_visible", &markVisible);
  17. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...