Network.cc (8255:73089f793a0a) Network.cc (8259:36987780169e)
1/*
2 * Copyright (c) 1999-2008 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;

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

31#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Topology.hh"
33
34Network::Network(const Params *p)
35 : SimObject(p)
36{
37 m_virtual_networks = p->number_of_virtual_networks;
38 m_topology_ptr = p->topology;
1/*
2 * Copyright (c) 1999-2008 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;

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

31#include "mem/ruby/network/Network.hh"
32#include "mem/ruby/network/Topology.hh"
33
34Network::Network(const Params *p)
35 : SimObject(p)
36{
37 m_virtual_networks = p->number_of_virtual_networks;
38 m_topology_ptr = p->topology;
39 m_buffer_size = p->buffer_size;
40 m_endpoint_bandwidth = p->endpoint_bandwidth;
41 m_adaptive_routing = p->adaptive_routing;
42 m_link_latency = p->link_latency;
43 m_control_msg_size = p->control_msg_size;
44
45 // Total nodes/controllers in network
46 // Must make sure this is called after the State Machine constructors
47 m_nodes = MachineType_base_number(MachineType_NUM);
48 assert(m_nodes != 0);
49

--- 50 unchanged lines hidden ---
39 m_link_latency = p->link_latency;
40 m_control_msg_size = p->control_msg_size;
41
42 // Total nodes/controllers in network
43 // Must make sure this is called after the State Machine constructors
44 m_nodes = MachineType_base_number(MachineType_NUM);
45 assert(m_nodes != 0);
46

--- 50 unchanged lines hidden ---