From 7adb8fa94be67f24be6c081fd890a9c2d620da5e Mon Sep 17 00:00:00 2001 From: Brad Beckmann Date: Thu, 28 Apr 2011 17:18:12 -0700 Subject: ruby: removed dated comment in SimpleNetwork --- src/mem/ruby/network/simple/SimpleNetwork.hh | 34 ---------------------------- 1 file changed, 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__ -- cgit v1.2.3