gem5  v20.0.0.3
dispatcher.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2015,2018 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __GPU_DISPATCHER_HH__
35 #define __GPU_DISPATCHER_HH__
36 
37 #include <queue>
38 #include <vector>
39 
40 #include "base/statistics.hh"
41 #include "dev/dma_device.hh"
43 #include "gpu-compute/ndrange.hh"
44 #include "gpu-compute/qstruct.hh"
45 #include "mem/port.hh"
46 #include "params/GpuDispatcher.hh"
47 
48 class BaseCPU;
49 class Shader;
50 
51 class GpuDispatcher : public DmaDevice
52 {
53  public:
54  typedef GpuDispatcherParams Params;
55 
56  MasterID masterId() { return _masterId; }
57 
58  protected:
60 
61  // Base and length of PIO register space
65 
67 
68  std::unordered_map<int, NDRange> ndRangeMap;
70 
71  // list of kernel_ids to launch
72  std::queue<int> execIds;
73  // list of kernel_ids that have finished
74  std::queue<int> doneIds;
75 
76  uint64_t dispatchCount;
77  // is there a kernel in execution?
79 
84 
85 
87 
88  // sycall emulation mode can have only 1 application running(?)
89  // else we have to do some pid based tagging
90  // unused
91  typedef std::unordered_map<uint64_t, uint64_t> TranslationBuffer;
92  TranslationBuffer tlb;
93 
94  public:
95  /*statistics*/
97  GpuDispatcher(const Params *p);
98 
100 
101  void exec();
102  virtual void serialize(CheckpointOut &cp) const override;
103  virtual void unserialize(CheckpointIn &cp) override;
104  void notifyWgCompl(Wavefront *w);
105  void scheduleDispatch();
106  void accessUserVar(BaseCPU *cpu, uint64_t addr, int val, int off);
107 
108  // using singleton so that glue code can pass pointer locations
109  // to the dispatcher. when there are multiple dispatchers, we can
110  // call something like getInstance(index)
111  static void
113  {
114  instance = _instance;
115  }
116 
117  static GpuDispatcher* getInstance() { return instance; }
118 
119  class TLBPort : public MasterPort
120  {
121  public:
122 
123  TLBPort(const std::string &_name, GpuDispatcher *_dispatcher)
124  : MasterPort(_name, _dispatcher), dispatcher(_dispatcher) { }
125 
126  protected:
128 
129  virtual bool recvTimingResp(PacketPtr pkt) { return true; }
130  virtual Tick recvAtomic(PacketPtr pkt) { return 0; }
131  virtual void recvFunctional(PacketPtr pkt) { }
132  virtual void recvRangeChange() { }
133  virtual void recvReqRetry() { }
134 
135  };
136 
138 
139  Port &getPort(const std::string &if_name,
140  PortID idx=InvalidPortID) override;
141 
142  AddrRangeList getAddrRanges() const override;
143  Tick read(PacketPtr pkt) override;
144  Tick write(PacketPtr pkt) override;
145 
146  // helper functions to retrieve/set GPU attributes
147  int getNumCUs();
148  int wfSize() const;
149  void setFuncargsSize(int funcargs_size);
150 
152  uint32_t getStaticContextSize() const;
153 };
154 
155 #endif // __GPU_DISPATCHER_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:71
virtual void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: dispatcher.cc:81
Ports are used to interface objects to each other.
Definition: port.hh:56
Tick write(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: dispatcher.cc:153
BaseCPU * cpu
Definition: dispatcher.hh:80
uint32_t getStaticContextSize() const
Returns the size of the static hardware context of a wavefront.
Definition: dispatcher.cc:386
const PortID InvalidPortID
Definition: types.hh:236
std::queue< int > execIds
Definition: dispatcher.hh:72
uint64_t dispatchCount
Definition: dispatcher.hh:76
ip6_addr_t addr
Definition: inet.hh:330
GpuDispatcherParams Params
Definition: dispatcher.hh:54
MasterID _masterId
Definition: dispatcher.hh:59
void setFuncargsSize(int funcargs_size)
Definition: dispatcher.cc:380
Definition: shader.hh:76
void accessUserVar(BaseCPU *cpu, uint64_t addr, int val, int off)
Definition: dispatcher.cc:351
Definition: cprintf.cc:40
TLBPort(const std::string &_name, GpuDispatcher *_dispatcher)
Definition: dispatcher.hh:123
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
int wfSize() const
Definition: dispatcher.cc:374
Bitfield< 63 > val
Definition: misc.hh:769
virtual void recvFunctional(PacketPtr pkt)
Definition: dispatcher.hh:131
std::unordered_map< uint64_t, uint64_t > TranslationBuffer
Definition: dispatcher.hh:91
HsaQueueEntry curTask
Definition: dispatcher.hh:66
void notifyWgCompl(Wavefront *w)
Definition: dispatcher.cc:306
ClDriver * driver
Definition: dispatcher.hh:82
uint64_t Tick
Tick count type.
Definition: types.hh:61
virtual void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: dispatcher.cc:96
virtual void recvRangeChange()
Called to receive an address range change from the peer slave port.
Definition: dispatcher.hh:132
TranslationBuffer tlb
Definition: dispatcher.hh:92
static void setInstance(GpuDispatcher *_instance)
Definition: dispatcher.hh:112
Port Object Declaration.
std::queue< int > doneIds
Definition: dispatcher.hh:74
Bitfield< 0 > w
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint16_t MasterID
Definition: request.hh:84
Stats::Scalar num_kernelLaunched
Definition: dispatcher.hh:96
virtual Tick recvAtomic(PacketPtr pkt)
Definition: dispatcher.hh:130
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
static GpuDispatcher * getInstance()
Definition: dispatcher.hh:117
virtual bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: dispatcher.hh:129
Shader * shader
Definition: dispatcher.hh:81
AddrRangeList getAddrRanges() const
Get the address ranges of the connected slave port.
Definition: port.cc:89
EventFunctionWrapper tickEvent
Definition: dispatcher.hh:83
std::ostream CheckpointOut
Definition: serialize.hh:63
void scheduleDispatch()
Definition: dispatcher.cc:344
bool dispatchActive
Definition: dispatcher.hh:78
GpuDispatcher * dispatcher
Definition: dispatcher.hh:127
TLBPort * tlbPort
Definition: dispatcher.hh:137
MasterID masterId()
Definition: dispatcher.hh:56
Tick read(PacketPtr pkt) override
Pure virtual function that the device must implement.
Definition: dispatcher.cc:123
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
std::unordered_map< int, NDRange > ndRangeMap
Definition: dispatcher.hh:68
static GpuDispatcher * instance
Definition: dispatcher.hh:86
NDRange ndRange
Definition: dispatcher.hh:69
Bitfield< 0 > p
GpuDispatcher(const Params *p)
Definition: dispatcher.cc:47
virtual void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: dispatcher.hh:133
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: dispatcher.cc:251

Generated on Fri Jul 3 2020 15:53:02 for gem5 by doxygen 1.8.13