Skip to content Skip to sidebar Skip to footer
Showing posts with the label Memory Leaks

Javascript Nested Function Performance

I have some nested functions such as var freak = function() { var die = function() { ... } … Read more Javascript Nested Function Performance

Requestanimationframe Garbage Collection

I'm profiling the following code's memory usage using the Timeline in Chrome Dev Tools v27.… Read more Requestanimationframe Garbage Collection

Memory Leak In Tensorflow.js: How To Clean Up Unused Tensors?

I'm writing a script, which sometimes leaks tensors. This can happen in multiple cases, for exa… Read more Memory Leak In Tensorflow.js: How To Clean Up Unused Tensors?

Are There Memory Leaks With Javascript Call A Function In A Callback Recursively?

Let's say, for example, you are writing a program that waits for a message on a queue, handles … Read more Are There Memory Leaks With Javascript Call A Function In A Callback Recursively?