scoreboard_check_stage.cc (11308:7d8836fd043d) scoreboard_check_stage.cc (11394:2bc2120ad76b)
1/*
2 * Copyright (c) 2014-2015 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:

--- 30 unchanged lines hidden (view full) ---

39#include "gpu-compute/gpu_static_inst.hh"
40#include "gpu-compute/shader.hh"
41#include "gpu-compute/wavefront.hh"
42#include "params/ComputeUnit.hh"
43
44ScoreboardCheckStage::ScoreboardCheckStage(const ComputeUnitParams *p)
45 : numSIMDs(p->num_SIMDs),
46 numMemUnits(p->num_global_mem_pipes + p->num_shared_mem_pipes),
1/*
2 * Copyright (c) 2014-2015 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:

--- 30 unchanged lines hidden (view full) ---

39#include "gpu-compute/gpu_static_inst.hh"
40#include "gpu-compute/shader.hh"
41#include "gpu-compute/wavefront.hh"
42#include "params/ComputeUnit.hh"
43
44ScoreboardCheckStage::ScoreboardCheckStage(const ComputeUnitParams *p)
45 : numSIMDs(p->num_SIMDs),
46 numMemUnits(p->num_global_mem_pipes + p->num_shared_mem_pipes),
47 numGlbMemPipes(p->num_global_mem_pipes),
48 numShrMemPipes(p->num_shared_mem_pipes),
49 vectorAluInstAvail(nullptr),
50 lastGlbMemSimd(-1),
51 lastShrMemSimd(-1), glbMemInstAvail(nullptr),
52 shrMemInstAvail(nullptr)
53{
54}
55

--- 118 unchanged lines hidden ---
47 numShrMemPipes(p->num_shared_mem_pipes),
48 vectorAluInstAvail(nullptr),
49 lastGlbMemSimd(-1),
50 lastShrMemSimd(-1), glbMemInstAvail(nullptr),
51 shrMemInstAvail(nullptr)
52{
53}
54

--- 118 unchanged lines hidden ---