|
13 | 13 |
|
14 | 14 | #ifdef VTR_ENABLE_CAPNPROTO |
15 | 15 |
|
16 | | -#include <cmath> |
17 | | -#include <limits> |
18 | | -#include <kj/std/iostream.h> |
19 | | -#include <regex> |
20 | | -#include <string> |
21 | | -#include <unordered_map> |
22 | | -#include <unordered_set> |
23 | | -#include <zlib.h> |
24 | | -#include <iostream> |
25 | | -#include <sstream> |
26 | | - |
27 | | -#include "LogicalNetlist.capnp.h" |
28 | | -#include "capnp/serialize.h" |
29 | | -#include "capnp/serialize-packed.h" |
30 | | - |
31 | | -#include "vtr_assert.h" |
32 | | -#include "vtr_hash.h" |
33 | | -#include "vtr_util.h" |
34 | | -#include "vtr_log.h" |
35 | | -#include "vtr_logic.h" |
36 | | -#include "vtr_time.h" |
37 | | -#include "vtr_digest.h" |
38 | | - |
39 | | -#include "vpr_types.h" |
40 | | -#include "vpr_error.h" |
41 | | -#include "globals.h" |
42 | | -#include "arch_types.h" |
| 16 | +# include <cmath> |
| 17 | +# include <limits> |
| 18 | +# include <kj/std/iostream.h> |
| 19 | +# include <regex> |
| 20 | +# include <string> |
| 21 | +# include <unordered_map> |
| 22 | +# include <unordered_set> |
| 23 | +# include <zlib.h> |
| 24 | +# include <iostream> |
| 25 | +# include <sstream> |
| 26 | + |
| 27 | +# include "LogicalNetlist.capnp.h" |
| 28 | +# include "capnp/serialize.h" |
| 29 | +# include "capnp/serialize-packed.h" |
| 30 | + |
| 31 | +# include "vtr_assert.h" |
| 32 | +# include "vtr_hash.h" |
| 33 | +# include "vtr_util.h" |
| 34 | +# include "vtr_log.h" |
| 35 | +# include "vtr_logic.h" |
| 36 | +# include "vtr_time.h" |
| 37 | +# include "vtr_digest.h" |
| 38 | + |
| 39 | +# include "vpr_types.h" |
| 40 | +# include "vpr_error.h" |
| 41 | +# include "globals.h" |
| 42 | +# include "arch_types.h" |
43 | 43 |
|
44 | 44 | struct NetlistReader { |
45 | 45 | public: |
@@ -524,7 +524,7 @@ struct NetlistReader { |
524 | 524 | } |
525 | 525 | }; |
526 | 526 |
|
527 | | -#endif // VTR_ENABLE_CAPNPROTO |
| 527 | +#endif // VTR_ENABLE_CAPNPROTO |
528 | 528 |
|
529 | 529 | AtomNetlist read_interchange_netlist(const char* ic_netlist_file, |
530 | 530 | t_arch& arch) { |
@@ -572,12 +572,12 @@ AtomNetlist read_interchange_netlist(const char* ic_netlist_file, |
572 | 572 |
|
573 | 573 | return netlist; |
574 | 574 |
|
575 | | -#else // VTR_ENABLE_CAPNPROTO |
| 575 | +#else // VTR_ENABLE_CAPNPROTO |
576 | 576 |
|
577 | 577 | // If CAPNPROTO is not enabled, throw an error |
578 | 578 | (void)ic_netlist_file; |
579 | 579 | (void)arch; |
580 | 580 | throw vtr::VtrError("Unable to read interchange netlist with CAPNPROTO disabled", __FILE__, __LINE__); |
581 | 581 |
|
582 | | -#endif // VTR_ENABLE_CAPNPROTO |
| 582 | +#endif // VTR_ENABLE_CAPNPROTO |
583 | 583 | } |
0 commit comments