Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94106384
gradient.hpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Dec 3, 23:22
Size
1 KB
Mime Type
text/x-c
Expires
Thu, Dec 5, 23:22 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22737368
Attached To
R1448 Lenstool-HPC
gradient.hpp
View Options
#pragma once
#ifndef __GRAD_HPP__
#define __GRAD_HPP__
#include "structure.h"
#include "gradientgpu.cuh"
/** for both gradient and second derivatives **/
struct
point
rotateCoordinateSystem
(
struct
point
P
,
double
theta
);
/** gradient **/
struct
point
module_potentialDerivatives_totalGradient
(
const
runmode_param
*
runmode
,
const
struct
point
*
pImage
,
const
struct
Potential
*
lens
);
struct
point
module_potentialDerivatives_totalGradient_SOA
(
const
int
*
Nlens
,
const
struct
point
*
pImage
,
const
struct
Potential_SOA
*
lens
);
struct
point
module_potentialDerivatives_totalGradient_SOA_GPU
(
const
int
*
Nlens
,
const
struct
point
*
pImage
,
const
struct
Potential_SOA
*
lens
);
//struct point module_potentialDerivatives_totalGradient_SOA_AVX(const int *Nlens, const struct point *pImage, const struct Potential_SOA *lens);
static
struct
point
grad_halo
(
const
struct
point
*
pImage
,
const
struct
Potential
*
lens
);
struct
point
grad_halo_sis_SOA
(
const
struct
point
*
pImage
,
int
iterator
,
Potential_SOA
*
lens
);
struct
point
grad_halo_piemd_SOA
(
const
struct
point
*
pImage
,
int
iterator
,
Potential_SOA
*
lens
);
//struct point grad_halo_sis_SOA_AVX(const struct point *pImage, int iterator,Potential_SOA *lens);
//struct point grad_halo_piemd_SOA_AVX(const struct point *pImage, int iterator,Potential_SOA *lens);
/** PIEMD **/
complex
piemd_1derivatives_ci05
(
double
x
,
double
y
,
double
eps
,
double
rc
);
/** Potential **/
//void module_readParameters_calculatePotentialparameter(Potential *lens);
void
module_readParameters_calculatePotentialparameter_SOA
(
Potential_SOA
*
lens
,
int
i
);
#endif
Event Timeline
Log In to Comment