-
-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use GPU? #1010
Comments
Hi, as far as I know the standard way to check if the torch configuration is working ist:
this should return As a side note: We are currently working on resolving some overhead calculations in the core of gempy. It might be that we will be able to increase speed a little bit in the future. Cheers. |
geo_model: gp.data.GeoModel = gp.create_geomodel( |
Hi again, |
import numpy as np data_path = 'C:/Users/Administrator/Desktop' geo_model: gp.data.GeoModel = gp.create_geomodel( refinement=4, # * Here we define the number of octree levels. If octree levels are defined, the resolution is ignored.importer_helper=gp.data.ImporterHelper( "Strat_Series": ('dmx', 'Qdl')} gpv.plot_2d(geo_model,section_names=['section1']) Thank you. |
I am using the latest version of gempyV3.0 and want to use GPU acceleration for modeling. I have successfully installed PyTorch, but when I run the command
sol = gp.compute_model(geo_model,
,engine_config=gp.data.GemPyEngineConfig(
backend=gp.data.AvailableBackends.PYTORCH,
use_gpu=True,
dtype="float64"
))
I noticed that the GPU's video memory barely changed, and I was wondering if I was actually utilizing the GPU. How can I check if I'm using the GPU? Thank you.
The text was updated successfully, but these errors were encountered: