Commit 1024924b authored by Adam Procter's avatar Adam Procter

Merge branch 'aprocter/de-eigenize' into aprocter/de-eigenize-partial

parents 0c681f1f 33b51160
......@@ -23,7 +23,10 @@ namespace ngraph
template <typename T>
void copy(T* arg, T* out, size_t count)
{
memcpy(out, arg, sizeof(T) * count);
for (size_t i = 0; i < count; i++)
{
out[i] = arg[i];
}
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment