Throttle.hh revision 9117:49116b947194
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/*
30 * The class to implement bandwidth and latency throttle. An instance
31 * of consumer class that can be woke up. It is only used to control
32 * bandwidth at output port of a switch. And the throttle is added
33 * *after* the output port, means the message is put in the output
34 * port of the PerfectSwitch (a intermediateBuffers) first, then go
35 * through the Throttle.
36 */
37
38#ifndef __MEM_RUBY_NETWORK_SIMPLE_THROTTLE_HH__
39#define __MEM_RUBY_NETWORK_SIMPLE_THROTTLE_HH__
40
41#include <iostream>
42#include <string>
43#include <vector>
44
45#include "mem/ruby/common/Consumer.hh"
46#include "mem/ruby/common/Global.hh"
47#include "mem/ruby/network/Network.hh"
48#include "mem/ruby/system/System.hh"
49
50class MessageBuffer;
51
52class Throttle : public Consumer
53{
54  public:
55    Throttle(int sID, NodeID node, int link_latency,
56             int link_bandwidth_multiplier, int endpoint_bandwidth);
57    Throttle(NodeID node, int link_latency, int link_bandwidth_multiplier,
58             int endpoint_bandwidth);
59    ~Throttle() {}
60
61    std::string name()
62    { return csprintf("Throttle-%i", m_sID); }
63
64    void addLinks(const std::vector<MessageBuffer*>& in_vec,
65        const std::vector<MessageBuffer*>& out_vec);
66    void wakeup();
67
68    void printStats(std::ostream& out) const;
69    void clearStats();
70    // The average utilization (a percent) since last clearStats()
71    double getUtilization() const;
72    int
73    getLinkBandwidth() const
74    {
75        return m_endpoint_bandwidth * m_link_bandwidth_multiplier;
76    }
77    int getLatency() const { return m_link_latency; }
78
79    const std::vector<std::vector<int> >&
80    getCounters() const
81    {
82        return m_message_counters;
83    }
84
85    void clear();
86
87    void print(std::ostream& out) const;
88
89  private:
90    void init(NodeID node, int link_latency, int link_bandwidth_multiplier,
91              int endpoint_bandwidth);
92    void addVirtualNetwork(MessageBuffer* in_ptr, MessageBuffer* out_ptr);
93    void linkUtilized(double ratio) { m_links_utilized += ratio; }
94
95    // Private copy constructor and assignment operator
96    Throttle(const Throttle& obj);
97    Throttle& operator=(const Throttle& obj);
98
99    std::vector<MessageBuffer*> m_in;
100    std::vector<MessageBuffer*> m_out;
101    std::vector<std::vector<int> > m_message_counters;
102    int m_vnets;
103    std::vector<int> m_units_remaining;
104    int m_sID;
105    NodeID m_node;
106    int m_link_bandwidth_multiplier;
107    int m_link_latency;
108    int m_wakeups_wo_switch;
109    int m_endpoint_bandwidth;
110
111    // For tracking utilization
112    Time m_ruby_start;
113    double m_links_utilized;
114};
115
116inline std::ostream&
117operator<<(std::ostream& out, const Throttle& obj)
118{
119    obj.print(out);
120    out << std::flush;
121    return out;
122}
123
124#endif // __MEM_RUBY_NETWORK_SIMPLE_THROTTLE_HH__
125