Open3D (C++ API)  0.19.0
Loading...
Searching...
No Matches
LUImpl.h
Go to the documentation of this file.
1// ----------------------------------------------------------------------------
2// - Open3D: www.open3d.org -
3// ----------------------------------------------------------------------------
4// Copyright (c) 2018-2024 www.open3d.org
5// SPDX-License-Identifier: MIT
6// ----------------------------------------------------------------------------
7
8// Private header. Do not include in Open3d.h.
9
10#pragma once
11
13
14namespace open3d {
15namespace core {
16
17void LUCPU(void* A_data,
18 void* ipiv_data,
19 int64_t rows,
20 int64_t cols,
21 Dtype dtype,
22 const Device& device);
23
24#ifdef BUILD_SYCL_MODULE
25void LUSYCL(void* A_data,
26 void* ipiv_data,
27 int64_t rows,
28 int64_t cols,
29 Dtype dtype,
30 const Device& device);
31#endif
32
33#ifdef BUILD_CUDA_MODULE
34void LUCUDA(void* A_data,
35 void* ipiv_data,
36 int64_t rows,
37 int64_t cols,
38 Dtype dtype,
39 const Device& device);
40#endif
41} // namespace core
42} // namespace open3d
void LUCPU(void *A_data, void *ipiv_data, int64_t rows, int64_t cols, Dtype dtype, const Device &device)
Definition LUCPU.cpp:15
void LUSYCL(void *A_data, void *ipiv_data, int64_t m, int64_t n, Dtype dtype, const Device &device)
Definition LUSYCL.cpp:19
void LUCUDA(void *A_data, void *ipiv_data, int64_t rows, int64_t cols, Dtype dtype, const Device &device)
Definition LUCUDA.cpp:15
Definition PinholeCameraIntrinsic.cpp:16