/* * Copyright (c) 2008 Princeton University * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer; * redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution; * neither the name of the copyright holders nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * Authors: Niket Agarwal */ #include "mem/ruby/network/garnet/fixed-pipeline/GarnetNetwork_d.hh" #include "mem/protocol/MachineType.hh" #include "mem/ruby/network/garnet/fixed-pipeline/NetworkInterface_d.hh" #include "mem/ruby/buffers/MessageBuffer.hh" #include "mem/ruby/network/garnet/fixed-pipeline/Router_d.hh" #include "mem/ruby/network/simple/Topology.hh" #include "mem/ruby/network/garnet/fixed-pipeline/NetworkLink_d.hh" #include "mem/ruby/network/garnet/fixed-pipeline/CreditLink_d.hh" #include "mem/ruby/common/NetDest.hh" using namespace std; GarnetNetwork_d::GarnetNetwork_d(const Params *p) : BaseGarnetNetwork(p) { m_ruby_start = 0; m_flits_recieved = 0; m_flits_injected = 0; m_network_latency = 0.0; m_queueing_latency = 0.0; m_router_ptr_vector.clear(); // Allocate to and from queues m_toNetQueues.setSize(m_nodes); // Queues that are getting messages from protocol m_fromNetQueues.setSize(m_nodes); // Queues that are feeding the protocol m_in_use.setSize(m_virtual_networks); m_ordered.setSize(m_virtual_networks); for (int i = 0; i < m_virtual_networks; i++) { m_in_use[i] = false; m_ordered[i] = false; } for (int node = 0; node < m_nodes; node++) { //Setting how many vitual message buffers will there be per Network Queue m_toNetQueues[node].setSize(m_virtual_networks); m_fromNetQueues[node].setSize(m_virtual_networks); for (int j = 0; j < m_virtual_networks; j++) { m_toNetQueues[node][j] = new MessageBuffer(); // Instantiating the Message Buffers that interact with the coherence protocol m_fromNetQueues[node][j] = new MessageBuffer(); } } } void GarnetNetwork_d::init() { BaseGarnetNetwork::init(); // // The topology pointer should have already been initialized in the parent // network constructor. // assert(m_topology_ptr != NULL); int number_of_routers = m_topology_ptr->numSwitches(); for (int i=0; iaddNode(m_toNetQueues[i], m_fromNetQueues[i]); m_ni_ptr_vector.insertAtBottom(ni); } m_topology_ptr->createLinks(this, false); // false because this isn't a reconfiguration for(int i = 0; i < m_router_ptr_vector.size(); i++) { m_router_ptr_vector[i]->init(); } } GarnetNetwork_d::~GarnetNetwork_d() { for (int i = 0; i < m_nodes; i++) { m_toNetQueues[i].deletePointers(); m_fromNetQueues[i].deletePointers(); } m_router_ptr_vector.deletePointers(); m_ni_ptr_vector.deletePointers(); m_link_ptr_vector.deletePointers(); m_creditlink_ptr_vector.deletePointers(); delete m_topology_ptr; } void GarnetNetwork_d::reset() { for (int node = 0; node < m_nodes; node++) { for (int j = 0; j < m_virtual_networks; j++) { m_toNetQueues[node][j]->clear(); m_fromNetQueues[node][j]->clear(); } } } /* * This function creates a link from the Network Interface (NI) into the Network. * It creates a Network Link from the NI to a Router and a Credit Link from * the Router to the NI */ void GarnetNetwork_d::makeInLink(NodeID src, SwitchID dest, const NetDest& routing_table_entry, int link_latency, int bw_multiplier, bool isReconfiguration) { assert(src < m_nodes); if(!isReconfiguration) { NetworkLink_d *net_link = new NetworkLink_d(m_link_ptr_vector.size(), link_latency, this); CreditLink_d *credit_link = new CreditLink_d(m_creditlink_ptr_vector.size(), link_latency, this); m_link_ptr_vector.insertAtBottom(net_link); m_creditlink_ptr_vector.insertAtBottom(credit_link); m_router_ptr_vector[dest]->addInPort(net_link, credit_link); m_ni_ptr_vector[src]->addOutPort(net_link, credit_link); } else { ERROR_MSG("Fatal Error:: Reconfiguration not allowed here"); // do nothing } } /* * This function creates a link from the Network to a NI. * It creates a Network Link from a Router to the NI and * a Credit Link from NI to the Router */ void GarnetNetwork_d::makeOutLink(SwitchID src, NodeID dest, const NetDest& routing_table_entry, int link_latency, int link_weight, int bw_multiplier, bool isReconfiguration) { assert(dest < m_nodes); assert(src < m_router_ptr_vector.size()); assert(m_router_ptr_vector[src] != NULL); if(!isReconfiguration) { NetworkLink_d *net_link = new NetworkLink_d(m_link_ptr_vector.size(), link_latency, this); CreditLink_d *credit_link = new CreditLink_d(m_creditlink_ptr_vector.size(), link_latency, this); m_link_ptr_vector.insertAtBottom(net_link); m_creditlink_ptr_vector.insertAtBottom(credit_link); m_router_ptr_vector[src]->addOutPort(net_link, routing_table_entry, link_weight, credit_link); m_ni_ptr_vector[dest]->addInPort(net_link, credit_link); } else { ERROR_MSG("Fatal Error:: Reconfiguration not allowed here"); //do nothing } } /* * This function creates a internal network links */ void GarnetNetwork_d::makeInternalLink(SwitchID src, SwitchID dest, const NetDest& routing_table_entry, int link_latency, int link_weight, int bw_multiplier, bool isReconfiguration) { if(!isReconfiguration) { NetworkLink_d *net_link = new NetworkLink_d(m_link_ptr_vector.size(), link_latency, this); CreditLink_d *credit_link = new CreditLink_d(m_creditlink_ptr_vector.size(), link_latency, this); m_link_ptr_vector.insertAtBottom(net_link); m_creditlink_ptr_vector.insertAtBottom(credit_link); m_router_ptr_vector[dest]->addInPort(net_link, credit_link); m_router_ptr_vector[src]->addOutPort(net_link, routing_table_entry, link_weight, credit_link); } else { ERROR_MSG("Fatal Error:: Reconfiguration not allowed here"); // do nothing } } void GarnetNetwork_d::checkNetworkAllocation(NodeID id, bool ordered, int network_num) { ASSERT(id < m_nodes); ASSERT(network_num < m_virtual_networks); if (ordered) { m_ordered[network_num] = true; } m_in_use[network_num] = true; } MessageBuffer* GarnetNetwork_d::getToNetQueue(NodeID id, bool ordered, int network_num) { checkNetworkAllocation(id, ordered, network_num); return m_toNetQueues[id][network_num]; } MessageBuffer* GarnetNetwork_d::getFromNetQueue(NodeID id, bool ordered, int network_num) { checkNetworkAllocation(id, ordered, network_num); return m_fromNetQueues[id][network_num]; } void GarnetNetwork_d::clearStats() { m_ruby_start = g_eventQueue_ptr->getTime(); } Time GarnetNetwork_d::getRubyStartTime() { return m_ruby_start; } void GarnetNetwork_d::printStats(ostream& out) const { double average_link_utilization = 0; Vector average_vc_load; average_vc_load.setSize(m_virtual_networks*m_vcs_per_class); for(int i = 0; i < m_virtual_networks*m_vcs_per_class; i++) { average_vc_load[i] = 0; } out << endl; out << "Network Stats" << endl; out << "-------------" << endl; out << endl; for(int i = 0; i < m_link_ptr_vector.size(); i++) { average_link_utilization += (double(m_link_ptr_vector[i]->getLinkUtilization())) / (double(g_eventQueue_ptr->getTime()-m_ruby_start)); Vector vc_load = m_link_ptr_vector[i]->getVcLoad(); for(int j = 0; j < vc_load.size(); j++) { assert(vc_load.size() == m_vcs_per_class*m_virtual_networks); average_vc_load[j] += vc_load[j]; } } average_link_utilization = average_link_utilization/m_link_ptr_vector.size(); out << "Average Link Utilization :: " << average_link_utilization << " flits/cycle" << endl; out << "-------------" << endl; for(int i = 0; i < m_vcs_per_class*m_virtual_networks; i++) { average_vc_load[i] = (double(average_vc_load[i]) / (double(g_eventQueue_ptr->getTime()) - m_ruby_start)); out << "Average VC Load [" << i << "] = " << average_vc_load[i] << " flits/cycle " << endl; } out << "-------------" << endl; // out << "Total flits injected = " << m_flits_injected << endl; // out << "Total flits recieved = " << m_flits_recieved << endl; out << "Average network latency = " << ((double) m_network_latency/ (double) m_flits_recieved)<< endl; // out << "Average queueing latency = " << ((double) m_queueing_latency/ (double) m_flits_recieved)<< endl; // out << "Average latency = " << ((double) (m_queueing_latency + m_network_latency) / (double) m_flits_recieved)<< endl; out << "-------------" << endl; double m_total_link_power = 0.0; double m_total_router_power = 0.0; for(int i = 0; i < m_link_ptr_vector.size(); i++) { m_total_link_power += m_link_ptr_vector[i]->calculate_power(); } for(int i = 0; i < m_router_ptr_vector.size(); i++) { m_total_router_power += m_router_ptr_vector[i]->calculate_power(); } out << "Total Link Power = " << m_total_link_power << " W " << endl; out << "Total Router Power = " << m_total_router_power << " W " <getName() << endl; out << endl; for (int i = 0; i < m_virtual_networks; i++) { out << "virtual_net_" << i << ": "; if (m_in_use[i]) { out << "active, "; if (m_ordered[i]) { out << "ordered" << endl; } else { out << "unordered" << endl; } } else { out << "inactive" << endl; } } out << endl; for(int i = 0; i < m_ni_ptr_vector.size(); i++) { m_ni_ptr_vector[i]->printConfig(out); } for(int i = 0; i < m_router_ptr_vector.size(); i++) { m_router_ptr_vector[i]->printConfig(out); } m_topology_ptr->printConfig(out); } void GarnetNetwork_d::print(ostream& out) const { out << "[GarnetNetwork_d]"; } GarnetNetwork_d * GarnetNetwork_dParams::create() { return new GarnetNetwork_d(this); }