Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3653f896 authored by hhakim's avatar hhakim
Browse files

Fix 2 pyfaust windows bugs.

- Fix error occurring on not defined _NSI_INSTALL_PATH when pip package is used.
- Workaround bug occurring on Faust.normalize() and especially __getitem__() slicing (memory disabling optimization).
parent 3460cbcb
No related branches found
No related tags found
No related merge requests found
Pipeline #833863 skipped
......@@ -507,7 +507,11 @@ namespace Faust {
template<typename FPP>
void TransformHelper<FPP, Cpu>::eval_sliced_Transform()
{
#ifdef _MSC_VER
bool cloning_fact = true; //temporarily disabling opt. for Windows VS compiler
#else
bool cloning_fact = false;
#endif
std::vector<MatGeneric<FPP,Cpu>*> factors((size_t) this->size());
faust_unsigned_int size = this->size();
MatGeneric<FPP,Cpu>* gen_fac, *first_sub_fac, *last_sub_fac;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment