mindspore.ops.Depend — MindSpore master documentation
a = A(x) ---> a = A(x) b = B(y) ---> y = Depend(y, a) ---> b = B(y)
假设是上面这种情况,执行了y = Depend(y, a)后,y(就是B的输入数据)会不会被搬运到AICORE中?
还是说到b = B(y)这一步再搬运?
数据将存储在L2或HBM中。
mindspore.ops.Depend — MindSpore master documentation
a = A(x) ---> a = A(x) b = B(y) ---> y = Depend(y, a) ---> b = B(y)
假设是上面这种情况,执行了y = Depend(y, a)后,y(就是B的输入数据)会不会被搬运到AICORE中?
还是说到b = B(y)这一步再搬运?
数据将存储在L2或HBM中。