Commit source

This commit is contained in:
kradchen
2023-05-18 16:04:27 +08:00
parent 88cf81e4ea
commit c6cd188732
83 changed files with 39921 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/*
* tval3.h
*
* Created on: Mar 14, 2011
* Author: ditlevsen
*/
#ifndef TVAL3_GPU_H_
#define TVAL3_GPU_H_
#include "container_host.h"
#include <complex>
#include "tval3_types.h"
extern const tval3_info tval3_gpu(mat_host &U, const sparse_mat_host &A, const mat_host &b,
const tval3_options &opts, const mat_host &Ut=0, bool pagelocked=true);
extern const tval3_info tval3_gpu(mat_host &U, const mat_host &A, const mat_host &b,
const tval3_options &opts, const mat_host &Ut=0, bool pagelocked=true);
extern const tval3_info tval3_gpu(mat_host &U, const geometry_host &A, const mat_host &b,
const tval3_options &opts, const mat_host &Ut, bool pagelocked);
#endif /* TVAL3_GPU_H_ */