bmtool 0.6.5__tar.gz → 0.6.5.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. {bmtool-0.6.5 → bmtool-0.6.5.1}/PKG-INFO +1 -1
  2. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/SLURM.py +2 -2
  3. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool.egg-info/PKG-INFO +1 -1
  4. {bmtool-0.6.5 → bmtool-0.6.5.1}/setup.py +1 -1
  5. {bmtool-0.6.5 → bmtool-0.6.5.1}/LICENSE +0 -0
  6. {bmtool-0.6.5 → bmtool-0.6.5.1}/README.md +0 -0
  7. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/__init__.py +0 -0
  8. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/__main__.py +0 -0
  9. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/bmplot.py +0 -0
  10. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/connectors.py +0 -0
  11. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/debug/__init__.py +0 -0
  12. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/debug/commands.py +0 -0
  13. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/debug/debug.py +0 -0
  14. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/graphs.py +0 -0
  15. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/manage.py +0 -0
  16. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/plot_commands.py +0 -0
  17. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/singlecell.py +0 -0
  18. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/synapses.py +0 -0
  19. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/util/__init__.py +0 -0
  20. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/util/commands.py +0 -0
  21. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/util/neuron/__init__.py +0 -0
  22. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/util/neuron/celltuner.py +0 -0
  23. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool/util/util.py +0 -0
  24. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool.egg-info/SOURCES.txt +0 -0
  25. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool.egg-info/dependency_links.txt +0 -0
  26. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool.egg-info/entry_points.txt +0 -0
  27. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool.egg-info/requires.txt +0 -0
  28. {bmtool-0.6.5 → bmtool-0.6.5.1}/bmtool.egg-info/top_level.txt +0 -0
  29. {bmtool-0.6.5 → bmtool-0.6.5.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: bmtool
3
- Version: 0.6.5
3
+ Version: 0.6.5.1
4
4
  Summary: BMTool
5
5
  Home-page: https://github.com/cyneuro/bmtool
6
6
  Download-URL:
@@ -208,7 +208,7 @@ class SimulationBlock:
208
208
  # Conditional account linegit
209
209
  account_line = f"#SBATCH --account={self.account}\n" if self.account else ""
210
210
  env_var_component_path = f"export COMPONENT_PATH={self.component_path}" if self.component_path else ""
211
-
211
+ mem_per_cpu = int(int(self.mem)/int(self.ntasks))
212
212
 
213
213
  # Write the batch script to the file
214
214
  with open(batch_script_path, 'w') as script_file:
@@ -220,7 +220,7 @@ class SimulationBlock:
220
220
  #SBATCH --partition={self.partition}
221
221
  #SBATCH --nodes={self.nodes}
222
222
  #SBATCH --ntasks={self.ntasks}
223
- #SBATCH --mem={self.mem}
223
+ #SBATCH --mem-per-cpu={mem_per_cpu}G
224
224
  {account_line}
225
225
 
226
226
  # Additional user-defined commands
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: bmtool
3
- Version: 0.6.5
3
+ Version: 0.6.5.1
4
4
  Summary: BMTool
5
5
  Home-page: https://github.com/cyneuro/bmtool
6
6
  Download-URL:
@@ -6,7 +6,7 @@ with open("README.md", "r") as fh:
6
6
 
7
7
  setup(
8
8
  name="bmtool",
9
- version='0.6.5',
9
+ version='0.6.5.1',
10
10
  author="Neural Engineering Laboratory at the University of Missouri",
11
11
  author_email="gregglickert@mail.missouri.edu",
12
12
  description="BMTool",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes