Ejemplo n.º 1
0
DLLEXPORT void c_vector_multiply( const int n, const MKL_Complex8 x[], const MKL_Complex8 y[], MKL_Complex8 result[] ){
	vcMul( n, x, y, result );
}
Ejemplo n.º 2
0
void caffe_mul<complex<float>>(const int n, const complex<float>* a, const complex<float>* b,
    complex<float>* y) {
  vcMul(n, a, b, y);
}