Commit aff3d264 by liyinqiao Committed by 李垠桥

Bug fixed.

Fix the memory pool bug in SetDevice function.
parent 6a014865
......@@ -520,13 +520,11 @@ relocate the data on the target device
*/
void XTensor::SetDevice(int myDevId, XMem * myMem)
{
if (myMem != NULL) {
FlushToMem(myMem);
isInGlobalMem = false;
}
else {
if (myMem == NULL) {
myMem = GMems.GetMem(myDevId);
}
FlushToMem(myMem);
isInGlobalMem = false;
}
bool XTensor::IsReduceShaped(const XTensor * a, const XTensor * b, int dim)
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论