Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试优化(内存乘以 X 及其转置 X'
有谁知道 numpys 矩阵乘法是否考虑到 X' 只是 X 的转置。我的意思是,如果它检测到这一点,则不会创建对象 X',而只是在 X 的列/行上工作以产生产品?感谢您对此的任何帮助!
J。
在 numpy 约定中,转置由X表示X.T,你很幸运,X.T只是原始数组的一个视图X,这意味着没有完成复制。
X
X.T