1 Star 0 Fork 0

陈孝天/depth-diff-gaussian-rasterization

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
cuda_rasterizer
diff_gaussian_rasterization
third_party
.gitignore
.gitmodules
CMakeLists.txt
LICENSE.md
README.md
ext.cpp
rasterize_points.cu
rasterize_points.h
setup.py
克隆/下载
setup.py 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
Bernhard Kerbl 提交于 2年前 . Added license files
#
# Copyright (C) 2023, Inria
# GRAPHDECO research group, https://team.inria.fr/graphdeco
# All rights reserved.
#
# This software is free for non-commercial, research and evaluation use
# under the terms of the LICENSE.md file.
#
# For inquiries contact george.drettakis@inria.fr
#
from setuptools import setup
from torch.utils.cpp_extension import CUDAExtension, BuildExtension
import os
os.path.dirname(os.path.abspath(__file__))
setup(
name="diff_gaussian_rasterization",
packages=['diff_gaussian_rasterization'],
ext_modules=[
CUDAExtension(
name="diff_gaussian_rasterization._C",
sources=[
"cuda_rasterizer/rasterizer_impl.cu",
"cuda_rasterizer/forward.cu",
"cuda_rasterizer/backward.cu",
"rasterize_points.cu",
"ext.cpp"],
extra_compile_args={"nvcc": ["-I" + os.path.join(os.path.dirname(os.path.abspath(__file__)), "third_party/glm/")]})
],
cmdclass={
'build_ext': BuildExtension
}
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ChenXT216/depth-diff-gaussian-rasterization.git
git@gitee.com:ChenXT216/depth-diff-gaussian-rasterization.git
ChenXT216
depth-diff-gaussian-rasterization
depth-diff-gaussian-rasterization
main

搜索帮助