29 lines
615 B
Plaintext
29 lines
615 B
Plaintext
#include <iostream>
|
||
#include <memory>
|
||
#include <cmath>
|
||
#include <complex>
|
||
#include <cuda_runtime.h>
|
||
#include <cublas_v2.h>
|
||
|
||
|
||
|
||
/// <summary>
|
||
/// TBP GPU´úÂë
|
||
/// </summary>
|
||
/// <param name="antpos_ptr">ÎÀÐǹìµÀ×ø±ê</param>
|
||
/// <param name="echoArr">»Ø²¨¾ØÕó</param>
|
||
/// <param name="img_arr">ͼÏñ¾ØÕó</param>
|
||
void TBPImageGPUAlg(std::shared_ptr<float> antPx, std::shared_ptr<float> antPy, std::shared_ptr<float> antPz,
|
||
std::shared_ptr<float> antVx, std::shared_ptr<float> antVy, std::shared_ptr<float> antVz,
|
||
std::shared_ptr<std::complex<double>> echoArr,std::shared_ptr<std::complex<double>> img_arr) {
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
|
||
|
||
|