Syntax C/C++ | #include <MFstd.h>
void MF_subMT( fMatrix MC, fMatrix MA, fMatrix MB, ui ht, ui len );
void MFs_subMT( fMatrix MC, fMatrix MA, fMatrix MB, ui ht, ui len, float C ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::subMT( const matrix<T>& MA, const matrix<T>& MB);
void matrix<T>::s_subMT( const matrix<T>& MA, const matrix<T>& MB, const T& C); |
Pascal/Delphi | uses MFstd;
procedure MF_subMT( MC, MA, MB:fMatrix; ht, len:UIntSize );
procedure MFs_subMT( MC, MA, MB:fMatrix; ht, len:UIntSize; C:Single ); |
|
CUDA-Funktion C/C++ | #include <cudaMFstd.h>
int cudaMF_subMT( fMatrix d_MC, fMatrix d_MA, fMatrix d_MB, ui ht, ui len );
int cudaMFs_subMT( fMatrix d_MC, fMatrix d_MA, fMatrix d_MB, ui ht, ui len, float C );
int cusdMFs_subMT( fMatrix d_MC, fMatrix d_MA, fMatrix d_MB, ui ht, ui len, float *d_C );
void MFcu_subMT( fMatrix h_MC, fMatrix h_MA, fMatrix h_MB, ui ht, ui len );
void MFs_subMT( fMatrix h_MC, fMatrix h_MA, fMatrix h_MB, ui ht, ui len, float C ); |
CUDA-Funktion Pascal/Delphi | uses MFstd;
function cudaMF_subMT( d_MC, d_MA, d_MB:fMatrix; ht, len:UIntSize ): IntBool;
function cudaMFs_subMT( d_MC, d_MA, d_MB:fMatrix; ht, len:UIntSize; C:Single ): IntBool;
function cusdMFs_subMT( d_MC, d_MA, d_MB:fMatrix; ht, len:UIntSize; d_C:PSingle ): IntBool;
procedure MF_subMT( h_MC, h_MA, h_MB:fMatrix; ht, len:UIntSize );
procedure MFs_subMT( h_MC, h_MA, h_MB:fMatrix; ht, len:UIntSize; C:Single );
|
|