summaryrefslogtreecommitdiff
path: root/Demos
Commit message (Collapse)AuthorAgeFilesLines
...
* Overflow benchmarks.Robert Bradshaw2012-12-282-0/+240
|
* enable 'inline_defnode_calls' optimisation for benchmarks (even though they ↵Stefan Behnel2012-12-151-1/+6
| | | | don't benefit currently)
* add platform specific include directory to compile lineJulian Taylor2012-11-181-1/+2
| | | | | beginning with python3.3 it is different than the general include directory on debian based systems
* Fixes setup filename in Demos/Makefile.Bertrand Bordage2012-09-021-1/+1
|
* fix setup.py script in Demos dirStefan Behnel2012-07-271-3/+3
|
* Fix missing error when overriding final methods of cimported classes.Robert Bradshaw2012-07-211-1/+1
|
* generate annotated HTML from benchmark sourcesStefan Behnel2012-07-051-1/+1
|
* added common entry point to richards benchmarkStefan Behnel2012-07-051-1/+1
|
* added common entry point to benchmarksStefan Behnel2012-07-054-0/+6
|
* added setup.py script to compile benchmark modulesStefan Behnel2012-07-051-0/+7
|
* another benchmark tweakStefan Behnel2012-04-011-2/+3
|
* optimised benchmarkStefan Behnel2012-03-311-2/+5
|
* new micro benchmark for generatorsStefan Behnel2012-03-311-0/+76
|
* more typing and finalisation in richerds benchmarkStefan Behnel2011-10-151-7/+12
|
* optimise bpnn benchmarkStefan Behnel2011-08-122-2/+23
|
* fix timings for bpnn benchmarkStefan Behnel2011-08-121-1/+2
|
* cleanupStefan Behnel2011-08-121-8/+0
|
* additional benchmarkStefan Behnel2011-08-121-0/+196
|
* typoRobert Bradshaw2011-06-081-1/+1
|
* Integrate test from quickstart.Robert Bradshaw2011-06-084-0/+41
|
* Always use enclosing cython for Demos.Robert Bradshaw2011-06-071-0/+3
|
* another bit faster nqueens benchmarkStefan Behnel2011-05-151-1/+2
|
* simplify nqueens benchmarkStefan Behnel2011-05-151-2/+2
|
* another minor benchmark refactoringStefan Behnel2011-05-141-3/+3
|
* convert benchmark to Py3Stefan Behnel2011-05-141-7/+4
|
* convert benchmark to Py3Stefan Behnel2011-05-141-12/+12
|
* convert benchmark to Py3Stefan Behnel2011-05-141-6/+6
|
* another benchmark optimisationStefan Behnel2011-05-141-2/+2
|
* another benchmark optimisationStefan Behnel2011-05-141-1/+1
|
* new benchmark: nqueensStefan Behnel2011-05-141-0/+87
|
* added some externally typed benchmarks as demosStefan Behnel2011-05-067-0/+841
|
* Documentation cleanup.Robert Bradshaw2011-03-013-3/+7
|
* enable embedded testcase in Python 3Lisandro Dalcin2011-02-162-6/+13
|
* fix makefile for embed testcaseLisandro Dalcin2011-02-161-2/+2
|
* newlinesRobert Bradshaw2010-12-101-1/+1
|
* Change numeric demo to numpy demo using new features, update setup.py.Robert Bradshaw2010-12-103-54/+21
|
* Update spam demo.Robert Bradshaw2010-12-101-1/+1
|
* build embedding test against static Python library to support non-shared ↵Stefan Behnel2010-08-271-1/+2
| | | | CPython builds
* more robust build for embedded testsLisandro Dalcin2010-08-231-4/+11
|
* Fix demo setup.py.Robert Bradshaw2010-03-161-2/+1
|
* fix typo in Makefile and remove make logfile after runLisandro Dalcin2010-03-111-1/+1
|
* run embedding test with current Python, not system PythonStefan Behnel2010-03-111-5/+6
|
* Merge gsoc-danilo C++ code into main branch.Robert Bradshaw2010-02-041-1/+2
|\
| * Make sure new can be used as a non-keyword.Robert Bradshaw2010-01-311-1/+2
| |
* | Library linking demo.Robert Bradshaw2010-01-214-0/+42
| |
* | Py3 fixes for embedded example.Robert Bradshaw2010-01-071-4/+4
|/
* Linking flags for embedded mode.Robert Bradshaw2009-11-231-1/+2
|
* add embedding to the test suiteRobert Bradshaw2009-10-281-1/+1
|
* Test for --embedded mode.Robert Bradshaw2009-10-283-6/+18
|
* freeze: fix for compiling with Python3Mark Lodato2009-10-241-3/+3
| | | | | | | | | | | To get the output of cython_freeze to compile with both Python 2 and Python 3, I copied the contents of Python-3.1.1/Modules/python.c, with some slight modifications. The main issue is that Python 3 uses wchar_t, while Python 2 uses char. It also appears that the Py_FlushLine/PyErr_Clear is not needed in Python 3. Related to #434: "main() function generated by --embed doesn't compile in Py3"