summaryrefslogtreecommitdiff
path: root/src/mem/ruby/network/simple
diff options
context:
space:
mode:
authorBrad Beckmann <Brad.Beckmann@amd.com>2011-04-28 17:18:12 -0700
committerBrad Beckmann <Brad.Beckmann@amd.com>2011-04-28 17:18:12 -0700
commit7adb8fa94be67f24be6c081fd890a9c2d620da5e (patch)
treea0edeaa8497ce9b9c4b42e31a00673091e779c49 /src/mem/ruby/network/simple
parent3e319d6e9478189feba92b6e3096fb2287b0a994 (diff)
downloadgem5-7adb8fa94be67f24be6c081fd890a9c2d620da5e.tar.xz
ruby: removed dated comment in SimpleNetwork
Diffstat (limited to 'src/mem/ruby/network/simple')
-rw-r--r--src/mem/ruby/network/simple/SimpleNetwork.hh34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/mem/ruby/network/simple/SimpleNetwork.hh b/src/mem/ruby/network/simple/SimpleNetwork.hh
index 6767f725b..2a791ab87 100644
--- a/src/mem/ruby/network/simple/SimpleNetwork.hh
+++ b/src/mem/ruby/network/simple/SimpleNetwork.hh
@@ -26,40 +26,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/*
- * The SimpleNetwork class implements the interconnection
- * SimpleNetwork between components (processor/cache components and
- * memory/directory components). The interconnection network as
- * described here is not a physical network, but a programming concept
- * used to implement all communication between components. Thus parts
- * of this 'network' may model the on-chip connections between cache
- * controllers and directory controllers as well as the links between
- * chip and network switches.
- *
- * Two conceptual networks, an address and data network, are modeled.
- * The data network is unordered, where the address network provides
- * and conforms to a global ordering of all transactions.
- *
- * Currently the data network is point-to-point and the address
- * network is a broadcast network. These two distinct conceptual
- * network can be modeled as physically separate networks or
- * multiplexed over a single physical network.
- *
- * The network encapsulates all notion of virtual global time and is
- * responsible for ordering the network transactions received. This
- * hides all of these ordering details from the processor/cache and
- * directory/memory modules.
- *
- * FIXME: Various flavor of networks are provided as a compiler time
- * configurable. We currently include this SimpleNetwork in the
- * makefile's vpath, so that SimpleNetwork.cc can provide an alternative
- * version constructor for the abstract Network class. It is easy to
- * modify this to make network a runtime configuable. Just make the
- * abstract Network class take a enumeration parameter, and based on
- * that to initial proper network. Or even better, just make the ruby
- * system initializer choose the proper network to initiate.
- */
-
#ifndef __MEM_RUBY_NETWORK_SIMPLE_SIMPLENETWORK_HH__
#define __MEM_RUBY_NETWORK_SIMPLE_SIMPLENETWORK_HH__