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
This is my first experience with falkon.
I installed falkon version 0.8.4 with torch 2.1, cuda 12.1, keops 2.1.2.
i have 2 gpus: A6000 and rtx 3090. i can see the gpus being utilized during training, with memory utilized to full capacity.
everything seems to work. but kind of slow.
my dataset is about 10m (1e7) samples and 70 features. I use M=10,000 for the number of random points. Fitting takes about 600 seconds.
Is this about how long it should take? I want to make sure I am not off by an order or two orders of magnitude because of some weird issue.
The text was updated successfully, but these errors were encountered:
Hi @viktor2
I'm not 100% sure, two tries you could to to check:
only use the better GPU (I guess A6000) with CUDA_SET_VISIBLE_DEVICES
try setting debug=True in the FalkonOptions class - it will print timings for each part of the model. The preconditioner should be very fast to compute (as 10k points are few), and the iterations could be a bit slower.
Another thing to keep in mind is to make sure the data is in float32 precision not float64!
This is my first experience with falkon.
I installed falkon version 0.8.4 with torch 2.1, cuda 12.1, keops 2.1.2.
i have 2 gpus: A6000 and rtx 3090. i can see the gpus being utilized during training, with memory utilized to full capacity.
everything seems to work. but kind of slow.
my dataset is about 10m (1e7) samples and 70 features. I use M=10,000 for the number of random points. Fitting takes about 600 seconds.
Is this about how long it should take? I want to make sure I am not off by an order or two orders of magnitude because of some weird issue.
The text was updated successfully, but these errors were encountered: