diff options
| author | JRPan <[email protected]> | 2025-08-18 23:09:47 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-19 06:09:47 +0000 |
| commit | 21b18be3832b80b00d4890f041818bac431866e7 (patch) | |
| tree | 4a8801a93a6dde20b747ef6db509215894c9f3ec /src/stream_manager.h | |
| parent | 33644740f15e0fa9f3d64ff98956569b2acf47bc (diff) | |
running formatter (#126)
* running formatter
* consolidate CI runs
* use cluster to run formatter
* use cluster to run formatter
* Add a CI-Success step
Diffstat (limited to 'src/stream_manager.h')
| -rw-r--r-- | src/stream_manager.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/stream_manager.h b/src/stream_manager.h index 55cfb8d..c6d2fc3 100644 --- a/src/stream_manager.h +++ b/src/stream_manager.h @@ -82,7 +82,7 @@ struct CUevent_st { unsigned int m_issued; time_t m_wallclock; double m_gpu_tot_sim_cycle; - + // SST related bool m_requested_synchronize = false; @@ -206,7 +206,9 @@ class stream_operation { kernel_info_t *get_kernel() { return m_kernel; } bool do_operation(gpgpu_sim *gpu); void print(FILE *fp) const; - struct CUstream_st *get_stream() { return m_stream; } + struct CUstream_st *get_stream() { + return m_stream; + } void set_stream(CUstream_st *stream) { m_stream = stream; } private: @@ -284,7 +286,7 @@ class stream_manager { unsigned size() { return m_streams.size(); }; bool is_blocking() { return m_cuda_launch_blocking; }; CUstream_st *get_stream_zero() { return &m_stream_zero; }; - std::list<CUstream_st *>& get_concurrent_streams() { return m_streams; }; + std::list<CUstream_st *> &get_concurrent_streams() { return m_streams; }; private: void print_impl(FILE *fp); |
