~ubuntu-branches/ubuntu/vivid/ffc/vivid

« back to all changes in this revision

Viewing changes to ffc/parameters.py

  • Committer: Package Import Robot
  • Author(s): Johannes Ring
  • Date: 2014-01-10 13:56:45 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20140110135645-4ozcd71y1oggj44z
Tags: 1.3.0-1
* New upstream release.
* debian/watch: Update URL for move to Bitbucket.
* debian/docs: README -> README.rst and remove TODO.
* debian/control:
  - Add python-numpy to Build-Depends.
  - Replace python-all with python-all-dev in Build-Depends.
  - Add ${shlibs:Depends} to Depends.
  - Change to Architecture: any.
  - Bump Standards-Version to 3.9.5 (no changes needed).
* debian/rules: Call dh_numpy in override_dh_python2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
  "cache_dir":                      "",      # cache dir used by Instant
44
44
  "output_dir":                     ".",     # output directory for generated
45
45
                                             # code
46
 
  "cpp_optimize":                   False,   # optimization for the JIT compiler
 
46
  "cpp_optimize":                   True,    # optimization for the JIT compiler
47
47
  "cpp_optimize_flags":             "-O2",   # optimization flags for the JIT compiler
48
48
  "optimize":                       False,   # optimise the code generation
 
49
  "restrict_keyword":               "",      # compiler specific "__restrict" or "__restrict__" keyword
49
50
  "log_level":                      INFO,    # log level, displaying only
50
51
                                             # messages with level >= log_level
51
52
  "log_prefix":                     "",      # log prefix
52
53
  "error_control":                  False,   # with error control
53
 
  "swig_binary":                    "swig",  # swig binary file for the JIT compiler
54
 
  "swig_path":                      "",      # path to swig binary for the JIT compiler
55
54
}
56
55
 
57
56
def default_parameters():