mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-17 15:27:06 +01:00
SIMD improvements for mac and madd use in complex for avx, sse
This commit is contained in:
@ -157,6 +157,12 @@ namespace Optimization {
|
||||
};
|
||||
|
||||
struct Mult{
|
||||
inline float mac(float a, float b,double c){
|
||||
return 0;
|
||||
}
|
||||
inline double mac(double a, double b,double c){
|
||||
return 0;
|
||||
}
|
||||
// Real float
|
||||
inline float operator()(float a, float b){
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user