Where is dlfeval tracing information stored?
1 次查看(过去 30 天)
显示 更早的评论
When dlfeval() is used to call a function, the computation is traced in such a way as to later allow automatic differentiation via dlgradient(). For example,
x=dlarray(rand(30));
f=@(x) sum(x*x'*x*x'*x*x'*x*x'*x*x'*x*x'*x*x');
y1=f(x);
y2=dlfeval(f,x);
My question is, where is this tracing information stored? In y2? If so, why does whos() not show any apparent additional memory consumption by y2, as compared to the untraced version y1?
whos y1 y2
0 个评论
回答(1 个)
Bruno Luong
2024-2-16
编辑:Bruno Luong
2024-2-16
I don't kwow the dlarray class but IMO it looks like the creating function handle f is stored in some sort of private property in y2 well hidden and cannot be disclosed by whos command.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Particle Swarm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!