58 lines
2.0 KiB
C++
58 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2010 Sebastian Held (Sebastian.Held@gmx.de)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef OPERATOR_SSE_H
|
|
#define OPERATOR_SSE_H
|
|
|
|
#include "operator.h"
|
|
#include "tools/array_ops.h"
|
|
|
|
class Operator_sse : public Operator
|
|
{
|
|
public:
|
|
//! Create a new operator
|
|
static Operator_sse* New();
|
|
virtual ~Operator_sse();
|
|
|
|
virtual Engine* CreateEngine();
|
|
|
|
inline virtual FDTD_FLOAT& GetVV( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return f4_vv[n][x][y][z%numVectors].f[z/numVectors]; }
|
|
inline virtual FDTD_FLOAT& GetVI( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return f4_vi[n][x][y][z%numVectors].f[z/numVectors]; }
|
|
|
|
inline virtual FDTD_FLOAT& GetII( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return f4_ii[n][x][y][z%numVectors].f[z/numVectors]; }
|
|
inline virtual FDTD_FLOAT& GetIV( unsigned int n, unsigned int x, unsigned int y, unsigned int z ) const { return f4_iv[n][x][y][z%numVectors].f[z/numVectors]; }
|
|
|
|
protected:
|
|
//! use New() for creating a new Operator
|
|
Operator_sse();
|
|
|
|
virtual void Init();
|
|
virtual void Reset();
|
|
virtual void InitOperator();
|
|
|
|
unsigned int numVectors;
|
|
|
|
// engine/post-proc needs access
|
|
public:
|
|
f4vector**** f4_vv; //calc new voltage from old voltage
|
|
f4vector**** f4_vi; //calc new voltage from old current
|
|
f4vector**** f4_iv; //calc new current from old current
|
|
f4vector**** f4_ii; //calc new current from old voltage
|
|
};
|
|
|
|
#endif // OPERATOR_SSE_H
|