Models: cleaning of the global caching mechanism

This commit is contained in:
Philippe Tillet
2015-08-04 10:06:52 -07:00
parent d88ff6b39b
commit df2d5e7d00
6 changed files with 53 additions and 34 deletions

View File

@@ -169,7 +169,7 @@ array& array::operator=(controller<TYPE> const & c)
assert(dtype_ == c.x().dtype());
array_expression expression(*this, c.x(), op_element(OPERATOR_BINARY_TYPE_FAMILY, OPERATOR_ASSIGN_TYPE), context_, dtype_, shape_);
execute(controller<array_expression>(expression, c.execution_options(), c.dispatcher_options(), c.compilation_options()),
isaac::models(c.execution_options().queue(context_)));
isaac::models::get(c.execution_options().queue(context_)));
return *this;
}