removed debug lines
This commit is contained in:
@ -56,7 +56,6 @@ class DynamicLoader(importlib.abc.Loader):
|
|||||||
|
|
||||||
def activate_mliappy(lmp):
|
def activate_mliappy(lmp):
|
||||||
try:
|
try:
|
||||||
print("activate_mliappy")
|
|
||||||
library = lmp.lib
|
library = lmp.lib
|
||||||
module_names = ["mliap_model_python_couple", "mliap_unified_couple"]
|
module_names = ["mliap_model_python_couple", "mliap_unified_couple"]
|
||||||
api_version = library.lammps_python_api_version()
|
api_version = library.lammps_python_api_version()
|
||||||
@ -75,7 +74,6 @@ def activate_mliappy(lmp):
|
|||||||
|
|
||||||
def activate_mliappy_kokkos(lmp):
|
def activate_mliappy_kokkos(lmp):
|
||||||
try:
|
try:
|
||||||
print("activate_mliappy_kokkos")
|
|
||||||
library = lmp.lib
|
library = lmp.lib
|
||||||
module_names = ["mliap_model_python_couple_kokkos"]
|
module_names = ["mliap_model_python_couple_kokkos"]
|
||||||
api_version = library.lammps_python_api_version()
|
api_version = library.lammps_python_api_version()
|
||||||
@ -94,7 +92,6 @@ def activate_mliappy_kokkos(lmp):
|
|||||||
|
|
||||||
def load_model(model):
|
def load_model(model):
|
||||||
try:
|
try:
|
||||||
print("load_model")
|
|
||||||
import mliap_model_python_couple
|
import mliap_model_python_couple
|
||||||
except ImportError as ie:
|
except ImportError as ie:
|
||||||
raise ImportError("ML-IAP python module must be activated before loading\n"
|
raise ImportError("ML-IAP python module must be activated before loading\n"
|
||||||
@ -104,7 +101,6 @@ def load_model(model):
|
|||||||
|
|
||||||
def load_model_kokkos(model):
|
def load_model_kokkos(model):
|
||||||
try:
|
try:
|
||||||
print("load_model_kokkos")
|
|
||||||
import mliap_model_python_couple_kokkos
|
import mliap_model_python_couple_kokkos
|
||||||
except ImportError as ie:
|
except ImportError as ie:
|
||||||
raise ImportError("ML-IAP python module must be activated before loading\n"
|
raise ImportError("ML-IAP python module must be activated before loading\n"
|
||||||
|
|||||||
Reference in New Issue
Block a user