depthsplat / MinkowskiEngine /src /interpolation_gpu.cu
Yeqing0814's picture
Upload folder using huggingface_hub
a6dd040 verified
/*
* Copyright (c) 2020 NVIDIA Corporation.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*
* Please cite "4D Spatio-Temporal ConvNets: Minkowski Convolutional Neural
* Networks", CVPR'19 (https://arxiv.org/abs/1904.08755) if you use any part
* of the code.
*/
#include "coordinate_map.hpp"
#include "coordinate_map_cpu.hpp"
#include "coordinate_map_key.hpp"
#include "coordinate_map_manager.hpp"
#include "errors.hpp"
#include "types.hpp"
#include "utils.hpp"
#include "interpolation_cpu.cpp"
#include "spmm.cuh"
#include <pybind11/pybind11.h>
#include <torch/extension.h>
namespace minkowski {
template <typename coordinate_type,
template <typename C> class TemplatedAllocator>
std::vector<at::Tensor> InterpolationForwardGPU(
at::Tensor const &in_feat, //
at::Tensor const &tfield, //
CoordinateMapKey *p_in_map_key, //
gpu_manager_type<coordinate_type, TemplatedAllocator> *p_map_manager) {
ASSERT(in_feat.is_contiguous(), "in_feat must be contiguous");
ASSERT(in_feat.is_cuda(), "in_feat must be GPU");
ASSERT(in_feat.dim() == 2, "in_feat.dim():", in_feat.dim());
ASSERT(tfield.is_contiguous(), "tfield must be contiguous");
ASSERT(tfield.is_cuda(), "tfield must be GPU");
ASSERT(tfield.dim() == 2, "tfield.dim():", tfield.dim());
ASSERT(tfield.dtype() == in_feat.dtype(),
"tfield and in_feat must have the same dtype");
ASSERT(at::cuda::check_device({in_feat, tfield}),
"in_feat and tfield must be on the same device");
coordinate_map_key_type in_key = p_in_map_key->get_key();
ASSERT(p_map_manager->exists(in_key), ERROR_MAP_NOT_FOUND);
ASSERT(in_feat.size(0) == p_map_manager->size(in_key), "Invalid in_feat size",
in_feat.size(0), "!=", p_map_manager->size(in_key));
auto map_weight =
p_map_manager->interpolation_map_weight(tfield, p_in_map_key);
auto const &in_maps = map_weight[0];
auto const &out_maps = map_weight[1];
auto const &weights = map_weight[2];
LOG_DEBUG("InterpolationForwardKernelGPU");
auto out_feat = coo_spmm<int>(out_maps, in_maps, weights, tfield.size(0),
in_feat.size(0), in_feat, 1, false);
LOG_DEBUG("out_feat shape: (", out_feat.size(0), ",", out_feat.size(1), ")");
// to out_feats
map_weight.insert(map_weight.begin(), out_feat);
return map_weight;
}
template <typename coordinate_type,
template <typename C> class TemplatedAllocator>
at::Tensor InterpolationBackwardGPU(
at::Tensor &grad_out_feat, //
at::Tensor const &in_maps, //
at::Tensor const &out_maps, //
at::Tensor const &weights, //
CoordinateMapKey *p_in_map_key, //
gpu_manager_type<coordinate_type, TemplatedAllocator> *p_map_manager) {
if (!grad_out_feat.is_contiguous())
grad_out_feat = grad_out_feat.contiguous();
ASSERT(grad_out_feat.is_cuda(), "grad_out_feat must be CUDA");
ASSERT(grad_out_feat.dim() == 2, "grad_out_feat.dim():", grad_out_feat.dim());
coordinate_map_key_type in_key = p_in_map_key->get_key();
ASSERT(p_map_manager->exists(in_key), ERROR_MAP_NOT_FOUND);
uint32_t const in_nrows = p_map_manager->size(in_key);
LOG_DEBUG("InterpolationBackwardKernelGPU");
return coo_spmm<int>(in_maps, out_maps, weights, in_nrows,
grad_out_feat.size(0), grad_out_feat, 1, false);
}
// Forward
template std::vector<at::Tensor>
InterpolationForwardGPU<default_types::dcoordinate_type,
detail::default_allocator>(
at::Tensor const &in_feat, //
at::Tensor const &tfield, //
CoordinateMapKey *p_in_map_key, //
gpu_manager_type<default_types::dcoordinate_type, detail::default_allocator>
*p_map_manager);
template std::vector<at::Tensor>
InterpolationForwardGPU<default_types::dcoordinate_type,
detail::c10_allocator>(
at::Tensor const &in_feat, //
at::Tensor const &tfield, //
CoordinateMapKey *p_in_map_key, //
gpu_manager_type<default_types::dcoordinate_type, detail::c10_allocator>
*p_map_manager);
// Backward
template at::Tensor InterpolationBackwardGPU<default_types::dcoordinate_type,
detail::default_allocator>(
at::Tensor &grad_out_feat, //
at::Tensor const &in_map, //
at::Tensor const &out_map, //
at::Tensor const &weight, //
CoordinateMapKey *p_in_map_key, //
gpu_manager_type<default_types::dcoordinate_type, detail::default_allocator>
*p_map_manager);
template at::Tensor InterpolationBackwardGPU<default_types::dcoordinate_type,
detail::c10_allocator>(
at::Tensor &grad_out_feat, //
at::Tensor const &in_map, //
at::Tensor const &out_map, //
at::Tensor const &weight, //
CoordinateMapKey *p_in_map_key, //
gpu_manager_type<default_types::dcoordinate_type, detail::c10_allocator>
*p_map_manager);
} // end namespace minkowski