From 463f2a52ecc7bc040d9d0e3a21fb4104f3534382 Mon Sep 17 00:00:00 2001 From: Remi Lehe Date: Fri, 25 Aug 2023 10:20:20 -0700 Subject: Do not pre-processing routine in Python initialization (#4231) --- Source/Python/pyWarpX.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'Source/Python/pyWarpX.cpp') diff --git a/Source/Python/pyWarpX.cpp b/Source/Python/pyWarpX.cpp index 31c8e6ec6..64db77153 100644 --- a/Source/Python/pyWarpX.cpp +++ b/Source/Python/pyWarpX.cpp @@ -120,12 +120,6 @@ PYBIND11_MODULE(PYWARPX_MODULE_NAME, m) { "Initialize AMReX library"); m.def("amrex_finalize", [] () { amrex::Finalize(); }, "Close out the amrex related data"); - m.def("convert_lab_params_to_boost", &ConvertLabParamsToBoost, - "Convert input parameters from the lab frame to the boosted frame"); - m.def("read_BC_params", &ReadBCParams, - "Read the boundary condition parametes and check for consistency"); - m.def("check_gridding_for_RZ_spectral", &CheckGriddingForRZSpectral, - "Ensure that the grid is setup appropriately with using the RZ spectral solver"); // Expose functions to get the processor number m.def("getNProcs", [](){return amrex::ParallelDescriptor::NProcs();} ); -- cgit v1.2.3