Skip to content

Commit f4b3d2f

Browse files
committed
make format
1 parent f53cad4 commit f4b3d2f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libs/libarchfpga/src/echo_arch.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -323,20 +323,20 @@ void PrintArchInfo(FILE* Echo, const t_arch* arch) {
323323
fprintf(Echo, "*************************************************\n\n");
324324

325325
//Router Connection List
326-
if(arch->noc != nullptr){
326+
if (arch->noc != nullptr) {
327327
fprintf(Echo, "*************************************************\n");
328328
fprintf(Echo, "NoC Router Connection List:\n");
329329

330-
for(auto noc_router : arch->noc->router_list){
331-
fprintf(Echo, "NoC router %d is connected to:\t",noc_router.id);
332-
for(auto noc_conn_id : noc_router.connection_list){
330+
for (auto noc_router : arch->noc->router_list) {
331+
fprintf(Echo, "NoC router %d is connected to:\t", noc_router.id);
332+
for (auto noc_conn_id : noc_router.connection_list) {
333333
fprintf(Echo, "%d\t", noc_conn_id);
334334
}
335-
fprintf(Echo,"\n");
335+
fprintf(Echo, "\n");
336336
}
337337
fprintf(Echo, "*************************************************\n\n");
338338
}
339-
339+
340340
//Architecture Power
341341
fprintf(Echo, "*************************************************\n");
342342
fprintf(Echo, "Power:\n");

0 commit comments

Comments
 (0)