Skip to content

Commit 2146ef8

Browse files
committedJul 23, 2019
Add modified Manchester libs
1 parent 7c3d0eb commit 2146ef8

File tree

925 files changed

+2150546
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

925 files changed

+2150546
-0
lines changed
 

‎spinn_frontend_common/.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: python
2+
matrix:
3+
include:
4+
- python: "2.7"
5+
- pytest
6+
7+
virtualenv:
8+
system_site_packages: true
9+
10+
before_script:
11+
- python ./setup.py install
12+
script: "py.test ."

‎spinn_frontend_common/README.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
This package provides functionality which are common to front ends that translate application level programs into
2+
exeuctables which run on a SpiNNaker machine.
3+
4+
Requirements
5+
6+
In addition to a standard Python installation, this package depends on:
7+
8+
six
9+
enum34
10+
SpiNNStorageHandlers
11+
DataSpecification
12+
PACMAN
13+
SpiNNMan
14+
SpiNNMachine
15+
PyNN
16+
numpy
17+
18+
These dependencies, excluding numpy, can be installed using pip:
19+
pip install six
20+
pip install enum34
21+
pip install SpiNNStorageHandlers
22+
pip install DataSpecification
23+
pip install PACMAN
24+
pip install SpiNNMan
25+
pip install PyNN
26+
pip install SpiNNFrontEndCommon
27+
pip install SpiNNMachine
28+
29+
Details of the installation of numpy on various operating systems are shown below.
30+
31+
If you are using virtualenv, please also follow the instructions below to install numpy. Further instructions for adding this global package to your virutalenv are detailed in the "User Installation" and "Developer Installation" sections below.
32+
Ubuntu Linux
33+
34+
Execute the following to install both gtk and pygtk: sudo apt-get install python-numpy
35+
Fedora Linux
36+
37+
Execute the following to install both gtk and pygtk: sudo yum install numpy
38+
Windows 7/8 64-bit
39+
40+
Download and install http://spinnaker.cs.manchester.ac.uk/.../numpy-MKL-1.8.1.win-amd64-py2.7.exe
41+
Windows 7/8 32-bit
42+
43+
Download and install http://spinnaker.cs.manchester.ac.uk/.../numpy-MKL-1.8.1.win32-py2.7.exe

0 commit comments

Comments
 (0)
Please sign in to comment.