summaryrefslogtreecommitdiff
path: root/src/gpgpusim_entrypoint.h
diff options
context:
space:
mode:
authorNick <[email protected]>2019-09-13 07:48:08 -0400
committerNick <[email protected]>2019-09-13 07:48:08 -0400
commitae63df6d86f995876f38ab3cdf47eac61ccda8cd (patch)
treecd789844612b2a2d85fbd574926da02d9e4bee15 /src/gpgpusim_entrypoint.h
parent9b1e6dba9f721c772e801abc4851a88aa61929da (diff)
Revert "Add src/ director formatting"
This reverts commit 26ca8de4a6ec9bfe422a14cbe325a5f257df453b.
Diffstat (limited to 'src/gpgpusim_entrypoint.h')
-rw-r--r--src/gpgpusim_entrypoint.h70
1 files changed, 35 insertions, 35 deletions
diff --git a/src/gpgpusim_entrypoint.h b/src/gpgpusim_entrypoint.h
index 517885c..9f408df 100644
--- a/src/gpgpusim_entrypoint.h
+++ b/src/gpgpusim_entrypoint.h
@@ -7,16 +7,14 @@
//
// 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
+// 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 University of British Columbia 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
+// 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 HOLDER OR CONTRIBUTORS BE LIABLE
@@ -30,50 +28,52 @@
#ifndef GPGPUSIM_ENTRYPOINT_H_INCLUDED
#define GPGPUSIM_ENTRYPOINT_H_INCLUDED
+#include "abstract_hardware_model.h"
#include <pthread.h>
#include <semaphore.h>
#include <time.h>
-#include "abstract_hardware_model.h"
-// extern time_t g_simulation_starttime;
+//extern time_t g_simulation_starttime;
class gpgpu_context;
class GPGPUsim_ctx {
- public:
- GPGPUsim_ctx(gpgpu_context *ctx) {
- g_sim_active = false;
- g_sim_done = true;
- break_limit = false;
- g_sim_lock = PTHREAD_MUTEX_INITIALIZER;
+ public:
+ GPGPUsim_ctx(gpgpu_context* ctx) {
+ g_sim_active = false;
+ g_sim_done = true;
+ break_limit = false;
+ g_sim_lock = PTHREAD_MUTEX_INITIALIZER;
+
+ g_the_gpu_config=NULL;
+ g_the_gpu=NULL;
+ g_stream_manager=NULL;
+ the_cude_device=NULL;
+ the_context=NULL;
+ gpgpu_ctx = ctx;
+ }
+
+ //struct gpgpu_ptx_sim_arg *grid_params;
- g_the_gpu_config = NULL;
- g_the_gpu = NULL;
- g_stream_manager = NULL;
- the_cude_device = NULL;
- the_context = NULL;
- gpgpu_ctx = ctx;
- }
+ sem_t g_sim_signal_start;
+ sem_t g_sim_signal_finish;
+ sem_t g_sim_signal_exit;
+ time_t g_simulation_starttime;
+ pthread_t g_simulation_thread;
- // struct gpgpu_ptx_sim_arg *grid_params;
+ class gpgpu_sim_config *g_the_gpu_config;
+ class gpgpu_sim *g_the_gpu;
+ class stream_manager *g_stream_manager;
- sem_t g_sim_signal_start;
- sem_t g_sim_signal_finish;
- sem_t g_sim_signal_exit;
- time_t g_simulation_starttime;
- pthread_t g_simulation_thread;
+ struct _cuda_device_id *the_cude_device;
+ struct CUctx_st* the_context;
+ gpgpu_context* gpgpu_ctx;
- class gpgpu_sim_config *g_the_gpu_config;
- class gpgpu_sim *g_the_gpu;
- class stream_manager *g_stream_manager;
- struct _cuda_device_id *the_cude_device;
- struct CUctx_st *the_context;
- gpgpu_context *gpgpu_ctx;
+ pthread_mutex_t g_sim_lock;
+ bool g_sim_active;
+ bool g_sim_done;
+ bool break_limit;
- pthread_mutex_t g_sim_lock;
- bool g_sim_active;
- bool g_sim_done;
- bool break_limit;
};
#endif