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 not really an issue for desilike but something annoying when running sampler in large number of procs...
The question was raised in the official JAX repo: here
The simple way (dirty stuff for sure) is to remove the warning by disabling the logger as mentioned above !
This should fixed the problem (if put before any desilike import): import logging logging.getLogger("jax._src.lib.xla_bridge").addFilter(logging.Filter("No GPU/TPU found, falling back to CPU."))
The text was updated successfully, but these errors were encountered:
This is not really an issue for desilike but something annoying when running sampler in large number of procs...
The question was raised in the official JAX repo: here
The simple way (dirty stuff for sure) is to remove the warning by disabling the logger as mentioned above !
This should fixed the problem (if put before any desilike import):
import logging
logging.getLogger("jax._src.lib.xla_bridge").addFilter(logging.Filter("No GPU/TPU found, falling back to CPU."))
The text was updated successfully, but these errors were encountered: