You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are very few algorithms left that do not use device_buffer. Like many algorithms, T-SNE was written just before the device_buffer was created so it's still using the underlying allocator directly.
The allocations done on heap should be replaced with stack device_buffer to make the code generally easier to maintain.
The text was updated successfully, but these errors were encountered:
There are very few algorithms left that do not use
device_buffer
. Like many algorithms, T-SNE was written just before thedevice_buffer
was created so it's still using the underlying allocator directly.The allocations done on heap should be replaced with stack
device_buffer
to make the code generally easier to maintain.The text was updated successfully, but these errors were encountered: