You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
445 B
25 lines
445 B
2 years ago
|
//
|
||
|
// Created by dtouch on 23-5-14.
|
||
|
//
|
||
|
|
||
|
#ifndef RENDERSDF_CUDAEIGENTEST_CUH
|
||
|
#define RENDERSDF_CUDAEIGENTEST_CUH
|
||
|
|
||
|
#include "Eigen/Eigen"
|
||
|
#include "Eigen/Dense"
|
||
|
#include "cuda_runtime.h"
|
||
|
#include "glm/glm.hpp"
|
||
|
|
||
|
__global__ void eigenKernel(Eigen::Matrix<double, 4, 3> factor, Eigen::Vector3d testVector);
|
||
|
|
||
|
__global__ void glmKernel(glm::vec3 testVector);
|
||
|
|
||
|
__host__ void testHost();
|
||
|
|
||
|
class cudaEigenTest {
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //RENDERSDF_CUDAEIGENTEST_CUH
|