inplace Computation

computation that destroy their inputs as a side-effect.

Example

if you iterate over matrix and double every elements, this is an inplace operations.

because when you are done, the original inputs has been overwritten.

Notes

Ops representing inplace computations are destructive, and by default these can only be inserted by optimizations, not user code.

相关文章:

  • 2021-10-18
  • 2022-02-25
  • 2021-08-20
  • 2021-11-03
  • 2022-12-23
  • 2022-02-25
  • 2021-06-01
  • 2022-01-15
猜你喜欢
  • 2021-08-06
  • 2021-11-25
  • 2022-12-23
  • 2021-11-18
  • 2021-07-09
  • 2021-10-07
  • 2022-12-23
相关资源
相似解决方案