From 7fb441aab45c315de1c27310225475fa79b0e2d3 Mon Sep 17 00:00:00 2001 From: Changgang Li Date: Wed, 13 Nov 2019 14:50:01 +0800 Subject: [PATCH] v0.10.7.1. Update Readme and remove parallel part. --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index 800bc0a8..4842e982 100644 --- a/README.md +++ b/README.md @@ -48,19 +48,6 @@ Here is a complete procedure of how to build STEPS. 4. Compile CppTest as static library. You can find CppTest.cbp in the code/ folder. 5. Compile STEPS as dynamic library or exectuable file. Include libUMFPACK.a, libBLAS.a, libCSparse.a, and libCpptest.a. Put libBLAS.a after libUMFPACK.a. -### Parallel and serial version -Dynamic simulator has both parallel and serial version. Typically, the serial version is 2 times faster than the parallel version if paralle number is set to 1. Therefore, in stepspy both parallel and serial library should be provided. - -To build serial version, comment the following line in dynamic_simulator.cpp, then build with previous instructions to get libSTEPS.dll or libSTEPS.so: - -> #define STEPS_DYNAMIC_SIMULATOR_OPENMP - -To build parallel version, keep the following line in dynamic_simulator.cpp, then build with previous instructions to get another libSTEPS.dll or libSTEPS.so: - -> #define STEPS_DYNAMIC_SIMULATOR_OPENMP - -Then, you should change libSTEPS to libSTEPS-p, i.e., the library file becomes libSTEPS-p.dll or libSTEPS-p.so. - ## How to use stepspy stepspy is a Python module of advanced APIs of STEPS. It enables most of STEPS applications. It is recommended to use stepspy in Python 3 of 64-bit version, though Python 2 is also supported.