Throttle.hh revision 10918
16145Snate@binkert.org/*
26145Snate@binkert.org * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
36145Snate@binkert.org * All rights reserved.
46145Snate@binkert.org *
56145Snate@binkert.org * Redistribution and use in source and binary forms, with or without
66145Snate@binkert.org * modification, are permitted provided that the following conditions are
76145Snate@binkert.org * met: redistributions of source code must retain the above copyright
86145Snate@binkert.org * notice, this list of conditions and the following disclaimer;
96145Snate@binkert.org * redistributions in binary form must reproduce the above copyright
106145Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
116145Snate@binkert.org * documentation and/or other materials provided with the distribution;
126145Snate@binkert.org * neither the name of the copyright holders nor the names of its
136145Snate@binkert.org * contributors may be used to endorse or promote products derived from
146145Snate@binkert.org * this software without specific prior written permission.
156145Snate@binkert.org *
166145Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176145Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186145Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196145Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206145Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216145Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226145Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236145Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246145Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256145Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266145Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276145Snate@binkert.org */
286145Snate@binkert.org
296145Snate@binkert.org/*
307054Snate@binkert.org * The class to implement bandwidth and latency throttle. An instance
317054Snate@binkert.org * of consumer class that can be woke up. It is only used to control
327054Snate@binkert.org * bandwidth at output port of a switch. And the throttle is added
337054Snate@binkert.org * *after* the output port, means the message is put in the output
347054Snate@binkert.org * port of the PerfectSwitch (a intermediateBuffers) first, then go
357054Snate@binkert.org * through the Throttle.
366145Snate@binkert.org */
376145Snate@binkert.org
387054Snate@binkert.org#ifndef __MEM_RUBY_NETWORK_SIMPLE_THROTTLE_HH__
397054Snate@binkert.org#define __MEM_RUBY_NETWORK_SIMPLE_THROTTLE_HH__
406145Snate@binkert.org
417055Snate@binkert.org#include <iostream>
428229Snate@binkert.org#include <string>
437454Snate@binkert.org#include <vector>
447055Snate@binkert.org
456154Snate@binkert.org#include "mem/ruby/common/Consumer.hh"
467054Snate@binkert.org#include "mem/ruby/common/Global.hh"
477054Snate@binkert.org#include "mem/ruby/network/Network.hh"
486285Snate@binkert.org#include "mem/ruby/system/System.hh"
496145Snate@binkert.org
506145Snate@binkert.orgclass MessageBuffer;
516145Snate@binkert.org
527054Snate@binkert.orgclass Throttle : public Consumer
537054Snate@binkert.org{
547054Snate@binkert.org  public:
5510918Sbrandon.potter@amd.com    Throttle(int sID, RubySystem *rs, NodeID node, Cycles link_latency,
569230Snilay@cs.wisc.edu             int link_bandwidth_multiplier, int endpoint_bandwidth,
579465Snilay@cs.wisc.edu             ClockedObject *em);
5810918Sbrandon.potter@amd.com    Throttle(RubySystem *rs, NodeID node, Cycles link_latency,
5910918Sbrandon.potter@amd.com             int link_bandwidth_multiplier, int endpoint_bandwidth,
6010918Sbrandon.potter@amd.com             ClockedObject *em);
617054Snate@binkert.org    ~Throttle() {}
626145Snate@binkert.org
638054Sksewell@umich.edu    std::string name()
648054Sksewell@umich.edu    { return csprintf("Throttle-%i", m_sID); }
658054Sksewell@umich.edu
6610370Snilay@cs.wisc.edu    void addLinks(const std::vector<MessageBuffer*>& in_vec,
6710370Snilay@cs.wisc.edu                  const std::vector<MessageBuffer*>& out_vec);
687054Snate@binkert.org    void wakeup();
696145Snate@binkert.org
709863Snilay@cs.wisc.edu    // The average utilization (a fraction) since last clearStats()
719863Snilay@cs.wisc.edu    const Stats::Scalar & getUtilization() const
729863Snilay@cs.wisc.edu    { return m_link_utilization; }
739863Snilay@cs.wisc.edu    const Stats::Vector & getMsgCount(unsigned int type) const
749863Snilay@cs.wisc.edu    { return m_msg_counts[type]; }
759863Snilay@cs.wisc.edu
769499Snilay@cs.wisc.edu    int getLinkBandwidth() const
779499Snilay@cs.wisc.edu    { return m_endpoint_bandwidth * m_link_bandwidth_multiplier; }
786145Snate@binkert.org
799499Snilay@cs.wisc.edu    Cycles getLatency() const { return m_link_latency; }
806145Snate@binkert.org
819863Snilay@cs.wisc.edu    void clearStats();
829863Snilay@cs.wisc.edu    void collateStats();
839863Snilay@cs.wisc.edu    void regStats(std::string name);
847055Snate@binkert.org    void print(std::ostream& out) const;
856145Snate@binkert.org
867054Snate@binkert.org  private:
879499Snilay@cs.wisc.edu    void init(NodeID node, Cycles link_latency, int link_bandwidth_multiplier,
888259SBrad.Beckmann@amd.com              int endpoint_bandwidth);
8910311Snilay@cs.wisc.edu    void operateVnet(int vnet, int &bw_remainin, bool &schedule_wakeup,
9010311Snilay@cs.wisc.edu                     MessageBuffer *in, MessageBuffer *out);
916145Snate@binkert.org
927054Snate@binkert.org    // Private copy constructor and assignment operator
937054Snate@binkert.org    Throttle(const Throttle& obj);
947054Snate@binkert.org    Throttle& operator=(const Throttle& obj);
956145Snate@binkert.org
9610370Snilay@cs.wisc.edu    std::vector<MessageBuffer*> m_in;
9710370Snilay@cs.wisc.edu    std::vector<MessageBuffer*> m_out;
9810370Snilay@cs.wisc.edu    unsigned int m_vnets;
9910370Snilay@cs.wisc.edu    std::vector<int> m_units_remaining;
10010311Snilay@cs.wisc.edu
1017054Snate@binkert.org    int m_sID;
1027054Snate@binkert.org    NodeID m_node;
1037054Snate@binkert.org    int m_link_bandwidth_multiplier;
1049499Snilay@cs.wisc.edu    Cycles m_link_latency;
1057054Snate@binkert.org    int m_wakeups_wo_switch;
1068259SBrad.Beckmann@amd.com    int m_endpoint_bandwidth;
10710918Sbrandon.potter@amd.com    RubySystem *m_ruby_system;
1086145Snate@binkert.org
1099863Snilay@cs.wisc.edu    // Statistical variables
1109863Snilay@cs.wisc.edu    Stats::Scalar m_link_utilization;
1119866Sjthestness@gmail.com    Stats::Vector m_msg_counts[MessageSizeType_NUM];
1129866Sjthestness@gmail.com    Stats::Formula m_msg_bytes[MessageSizeType_NUM];
1139863Snilay@cs.wisc.edu
1149863Snilay@cs.wisc.edu    double m_link_utilization_proxy;
1156145Snate@binkert.org};
1166145Snate@binkert.org
1177055Snate@binkert.orginline std::ostream&
1187055Snate@binkert.orgoperator<<(std::ostream& out, const Throttle& obj)
1196145Snate@binkert.org{
1207054Snate@binkert.org    obj.print(out);
1217055Snate@binkert.org    out << std::flush;
1227054Snate@binkert.org    return out;
1236145Snate@binkert.org}
1246145Snate@binkert.org
1257054Snate@binkert.org#endif // __MEM_RUBY_NETWORK_SIMPLE_THROTTLE_HH__
126