SimpleNetwork.cc (6145:15cca6ab723a) SimpleNetwork.cc (6154:6bb54dcb940e)
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

31 * SimpleNetwork.C
32 *
33 * Description: See SimpleNetwork.h
34 *
35 * $Id$
36 *
37 */
38
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

31 * SimpleNetwork.C
32 *
33 * Description: See SimpleNetwork.h
34 *
35 * $Id$
36 *
37 */
38
39#include "SimpleNetwork.hh"
40#include "Profiler.hh"
41#include "System.hh"
42#include "Switch.hh"
43#include "NetDest.hh"
44#include "Topology.hh"
45#include "TopologyType.hh"
46#include "MachineType.hh"
47#include "MessageBuffer.hh"
48#include "Protocol.hh"
49#include "Map.hh"
39#include "mem/ruby/network/simple/SimpleNetwork.hh"
40#include "mem/ruby/profiler/Profiler.hh"
41#include "mem/ruby/system/System.hh"
42#include "mem/ruby/network/simple/Switch.hh"
43#include "mem/ruby/common/NetDest.hh"
44#include "mem/ruby/network/simple/Topology.hh"
45#include "mem/protocol/TopologyType.hh"
46#include "mem/protocol/MachineType.hh"
47#include "mem/ruby/buffers/MessageBuffer.hh"
48#include "mem/protocol/Protocol.hh"
49#include "mem/gems_common/Map.hh"
50
51// ***BIG HACK*** - This is actually code that _should_ be in Network.C
52
53// Note: Moved to Princeton Network
54// calls new to abstract away from the network
55/*
56Network* Network::createNetwork(int nodes)
57{

--- 200 unchanged lines hidden ---
50
51// ***BIG HACK*** - This is actually code that _should_ be in Network.C
52
53// Note: Moved to Princeton Network
54// calls new to abstract away from the network
55/*
56Network* Network::createNetwork(int nodes)
57{

--- 200 unchanged lines hidden ---