Skip to content

Commit

Permalink
Fixed the cil part of the suite setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkendk committed Apr 13, 2015
1 parent 5fdce47 commit e823a07
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion suites/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
cpp11_bxx = ('CPP/BH', '`bp-info --benchmarks`/{script}/cpp11_bxx/bin/{script} {args}', None)

# C#
cil_managed = ('Mono/Managed', 'mono `bp-info --benchmarks`/{script}/csharp_numcil/bin/{script}.exe --bohrium=False {args}', {'NUMCIL_DISABLE_UNSAFE': '1'})
cil_unsafe = ('Mono/Unsafe', 'mono `bp-info --benchmarks`/{script}/csharp_numcil/bin/{script}.exe --bohrium=False {args}', None)
cil_bohrium = ('Mono/Bohrium', 'mono `bp-info --benchmarks`/{script}/csharp_numcil/bin/{script}.exe --bohrium=True {args}', None)

# F#

Expand All @@ -54,7 +57,7 @@
# (alias, cmd (relative to the root of bohrium), env-vars)
bridges = [
('numpy', 'python benchmark/python/{script}.py {args} --bohrium=True', None),
('CIL', 'mono benchmark/CIL/Csharp/{script}/bin/Release/{script}.exe {args}', None),
('CIL', 'mono benchmark/CIL/Csharp/{script}/bin/{script}.exe {args} --bohrium=True', None),
('cpp', 'benchmark/cpp/bin/{script} {args}', None)
]

Expand Down

0 comments on commit e823a07

Please sign in to comment.