FEAT
3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
min_abs_index_mkl.cpp
1
// FEAT3: Finite Element Analysis Toolbox, Version 3
2
// Copyright (C) 2010 by Stefan Turek & the FEAT group
3
// FEAT3 is released under the GNU General Public License version 3,
4
// see the file 'copyright.txt' in the top level directory for details.
5
6
// includes, FEAT
7
#include <
kernel/base_header.hpp
>
8
#include <kernel/lafem/arch/min_abs_index.hpp>
9
10
FEAT_DISABLE_WARNINGS
11
#include <mkl.h>
12
FEAT_RESTORE_WARNINGS
13
14
15
using namespace
FEAT
;
16
using namespace
FEAT::LAFEM
;
17
using namespace
FEAT::LAFEM::Arch;
18
19
Index
MinAbsIndex::value_mkl(
const
float
*
const
x,
const
Index
size)
20
{
21
return
cblas_isamin((MKL_INT)size, x, 1);
22
}
23
24
Index
MinAbsIndex::value_mkl(
const
double
*
const
x,
const
Index
size)
25
{
26
return
cblas_idamin((MKL_INT)size, x, 1);
27
}
base_header.hpp
FEAT Kernel base header.
FEAT::LAFEM
LAFEM namespace.
Definition:
apply.hpp:22
FEAT
FEAT namespace.
Definition:
adjactor.hpp:12
FEAT::Index
std::uint64_t Index
Index data type.
Definition:
base_header.hpp:122
kernel
lafem
arch
min_abs_index_mkl.cpp
Generated by
1.9.5