AbstractController.hh (9856:69bb50791e25) AbstractController.hh (9996:150338b8ba12)
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 131 unchanged lines hidden (view full) ---

140 NodeID m_version;
141 Network* m_net_ptr;
142 MachineID m_machineID;
143 bool m_is_blocking;
144 std::map<Address, MessageBuffer*> m_block_map;
145 typedef std::vector<MessageBuffer*> MsgVecType;
146 typedef std::map< Address, MsgVecType* > WaitingBufType;
147 WaitingBufType m_waiting_buffers;
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 131 unchanged lines hidden (view full) ---

140 NodeID m_version;
141 Network* m_net_ptr;
142 MachineID m_machineID;
143 bool m_is_blocking;
144 std::map<Address, MessageBuffer*> m_block_map;
145 typedef std::vector<MessageBuffer*> MsgVecType;
146 typedef std::map< Address, MsgVecType* > WaitingBufType;
147 WaitingBufType m_waiting_buffers;
148 int m_max_in_port_rank;
149 int m_cur_in_port_rank;
148 unsigned int m_in_ports;
149 unsigned int m_cur_in_port;
150 int m_number_of_TBEs;
151
152 //! Map from physical network number to the Message Buffer.
153 std::map<uint32_t, MessageBuffer*> peerQueueMap;
154
155 //! Counter for the number of cycles when the transitions carried out
156 //! were equal to the maximum allowed
157 uint64_t m_fully_busy_cycles;

--- 31 unchanged lines hidden ---
150 int m_number_of_TBEs;
151
152 //! Map from physical network number to the Message Buffer.
153 std::map<uint32_t, MessageBuffer*> peerQueueMap;
154
155 //! Counter for the number of cycles when the transitions carried out
156 //! were equal to the maximum allowed
157 uint64_t m_fully_busy_cycles;

--- 31 unchanged lines hidden ---