trellis-2-mrp-mlx/o-voxel/src/serialize/api.cu
2025-12-16 19:00:42 +00:00

181 lines
5.3 KiB
Plaintext

#include <torch/extension.h>
#include "api.h"
#include "z_order.h"
#include "hilbert.h"
torch::Tensor
z_order_encode_cpu(
const torch::Tensor& x,
const torch::Tensor& y,
const torch::Tensor& z
) {
// Allocate output tensor
torch::Tensor codes = torch::empty_like(x, torch::dtype(torch::kInt32));
// Call CUDA kernel
CPU::z_order_encode(
x.size(0),
reinterpret_cast<uint32_t*>(x.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(codes.data_ptr<int>())
);
return codes;
}
std::tuple<torch::Tensor, torch::Tensor, torch::Tensor>
z_order_decode_cpu(
const torch::Tensor& codes
) {
// Allocate output tensors
torch::Tensor x = torch::empty_like(codes, torch::dtype(torch::kInt32));
torch::Tensor y = torch::empty_like(codes, torch::dtype(torch::kInt32));
torch::Tensor z = torch::empty_like(codes, torch::dtype(torch::kInt32));
// Call CUDA kernel
CPU::z_order_decode(
codes.size(0),
reinterpret_cast<uint32_t*>(codes.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(x.data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.data_ptr<int>())
);
return std::make_tuple(x, y, z);
}
torch::Tensor
hilbert_encode_cpu(
const torch::Tensor& x,
const torch::Tensor& y,
const torch::Tensor& z
) {
// Allocate output tensor
torch::Tensor codes = torch::empty_like(x);
// Call CUDA kernel
CPU::hilbert_encode(
x.size(0),
reinterpret_cast<uint32_t*>(x.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(codes.data_ptr<int>())
);
return codes;
}
std::tuple<torch::Tensor, torch::Tensor, torch::Tensor>
hilbert_decode_cpu(
const torch::Tensor& codes
) {
// Allocate output tensors
torch::Tensor x = torch::empty_like(codes);
torch::Tensor y = torch::empty_like(codes);
torch::Tensor z = torch::empty_like(codes);
// Call CUDA kernel
CPU::hilbert_decode(
codes.size(0),
reinterpret_cast<uint32_t*>(codes.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(x.data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.data_ptr<int>())
);
return std::make_tuple(x, y, z);
}
torch::Tensor
z_order_encode_cuda(
const torch::Tensor& x,
const torch::Tensor& y,
const torch::Tensor& z
) {
// Allocate output tensor
torch::Tensor codes = torch::empty_like(x, torch::dtype(torch::kInt32));
// Call CUDA kernel
CUDA::z_order_encode<<<(x.size(0) + BLOCK_SIZE - 1) / BLOCK_SIZE, BLOCK_SIZE>>>(
x.size(0),
reinterpret_cast<uint32_t*>(x.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(codes.data_ptr<int>())
);
return codes;
}
std::tuple<torch::Tensor, torch::Tensor, torch::Tensor>
z_order_decode_cuda(
const torch::Tensor& codes
) {
// Allocate output tensors
torch::Tensor x = torch::empty_like(codes, torch::dtype(torch::kInt32));
torch::Tensor y = torch::empty_like(codes, torch::dtype(torch::kInt32));
torch::Tensor z = torch::empty_like(codes, torch::dtype(torch::kInt32));
// Call CUDA kernel
CUDA::z_order_decode<<<(codes.size(0) + BLOCK_SIZE - 1) / BLOCK_SIZE, BLOCK_SIZE>>>(
codes.size(0),
reinterpret_cast<uint32_t*>(codes.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(x.data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.data_ptr<int>())
);
return std::make_tuple(x, y, z);
}
torch::Tensor
hilbert_encode_cuda(
const torch::Tensor& x,
const torch::Tensor& y,
const torch::Tensor& z
) {
// Allocate output tensor
torch::Tensor codes = torch::empty_like(x);
// Call CUDA kernel
CUDA::hilbert_encode<<<(x.size(0) + BLOCK_SIZE - 1) / BLOCK_SIZE, BLOCK_SIZE>>>(
x.size(0),
reinterpret_cast<uint32_t*>(x.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(codes.data_ptr<int>())
);
return codes;
}
std::tuple<torch::Tensor, torch::Tensor, torch::Tensor>
hilbert_decode_cuda(
const torch::Tensor& codes
) {
// Allocate output tensors
torch::Tensor x = torch::empty_like(codes);
torch::Tensor y = torch::empty_like(codes);
torch::Tensor z = torch::empty_like(codes);
// Call CUDA kernel
CUDA::hilbert_decode<<<(codes.size(0) + BLOCK_SIZE - 1) / BLOCK_SIZE, BLOCK_SIZE>>>(
codes.size(0),
reinterpret_cast<uint32_t*>(codes.contiguous().data_ptr<int>()),
reinterpret_cast<uint32_t*>(x.data_ptr<int>()),
reinterpret_cast<uint32_t*>(y.data_ptr<int>()),
reinterpret_cast<uint32_t*>(z.data_ptr<int>())
);
return std::make_tuple(x, y, z);
}