complete last commit...

This commit is contained in:
Christian Zimmermann 2019-01-16 10:39:58 +01:00
parent e1b6271a95
commit 8237fba438
2 changed files with 3 additions and 4 deletions

View file

@ -111,7 +111,7 @@ Caution: If you want to multithread operations over functional multi arrays, you
# Planned features # Planned features
Basically the structure of the operation routines allows in some cases (at least in those, where it is possible for simple c++ for loops) vectorization and multi threading. So far the necessary implamentations are not done, but it is planned to enable these features. Basically the structure of the operation routines allows in some cases (at least in those, where it is possible for simple c++ for loops) vectorization. So far the necessary implamentations are not done, but it is planned to enable these features.
# Known Issues # Known Issues

View file

@ -296,9 +296,8 @@ namespace {
{ {
data.resize(s); data.resize(s);
for(size_t i = 0; i != s; ++i){ for(size_t i = 0; i != s; ++i){
double arg = static_cast<double>( i - s ) - 0.1; const double arg = static_cast<double>( s - i ) - 0.1;
data[i] = sin(arg); data[i] = sin(arg)*10;
//VCHECK(data[i]);
} }
SRF f; SRF f;
sr = std::dynamic_pointer_cast<SR>(f.create()); sr = std::dynamic_pointer_cast<SR>(f.create());