Skip to content

Commit 874853c

Browse files
committed
Merged with master
2 parents 9201fe2 + c0dfa0f commit 874853c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

meson_options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ option('enso_pipe_size', type: 'integer', min: 0, max: 32768, value: 32768,
66
description: 'Buffer size used by each software enso pipe')
77
option('latency_opt', type: 'boolean', value: true,
88
description: 'Optimize for latency')
9-
option('dev_backend', type: 'combo', choices: ['intel_fpga', 'software', 'hybrid'],
9+
option('dev_backend', type: 'combo', choices: ['intel_fpga', 'hybrid'],
1010
value: 'intel_fpga', description: 'Device backend to use')

software/include/enso/queue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class Queue {
256256
}
257257

258258
if (!join_if_exists && !create_queue) {
259-
std::cerr << "Queue already exists!!" << std::endl;
259+
std::cerr << "Queue already exists" << std::endl;
260260
return -1;
261261
}
262262

software/meson.build

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
if dev_backend == 'intel_fpga'
22
library_name = 'enso'
3-
elif dev_backend == 'software'
4-
library_name = 'enso_sw'
53
elif dev_backend == 'hybrid'
64
library_name = 'enso_hybrid'
75
else

0 commit comments

Comments
 (0)