Skip to content

Commit

Permalink
Initial bits of PyOpenCL.
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Mar 11, 2009
0 parents commit 05af02c
Show file tree
Hide file tree
Showing 10 changed files with 2,307 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
.pydevproject
.project
.settings
*~
.*.sw[po]
*.dat
*.pyc
build
*.prof
siteconf.py
doc/hedge-notes.pdf
*.vtk
*.silo
*.session
dump.py
*.orig
/Makefile
*.png
tags
*.vtu
*.pvtu
*.pvd
doc/user-reference
doc/dev-reference
*.poly
*.node
*.bak
*.pdf
*.tif
*.mpeg
*-journal
visitlog.py
*.log
.figleaf
dist
*.egg*
MANIFEST
*.patch
*.LOCAL.[0-9]*
*.REMOTE.[0-9]*
*.BASE.[0-9]*
tmp
temp*
34 changes: 34 additions & 0 deletions README_SETUP.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Hi, welcome.

This Python package uses aksetup for installation, which means that
installation should be easy and quick.

If you don't want to continue reading, just try the regular

./configure.py --help
./configure.py --some-options
make
sudo make install

That should do the trick. (By the way: If a config option says "several ok",
then you may specify several values, separated by commas.)

aksetup also supports regular distutils installation, without using
configure:

python setup.py build
sudo python setup.py install

In this case, configuration is obtained from files in this order:

/etc/aksetup-defaults.py
$HOME/.aksetup-defaults.py
$PACKAGEDIR/siteconf.py

Once you've run configure, you can copy options from your siteconf.py file to
one of these files, and you won't ever have to configure them again manually.
In fact, you may pass the options "--update-user" and "--update-global" to
configure, and it will automatically update these files for you.

This is particularly handy if you want to perform an unattended or automatic
installation via easy_install.
Loading

0 comments on commit 05af02c

Please sign in to comment.