lds_state.cc (12697:cd71b966be1e) lds_state.cc (13892:0182a0601f66)
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:

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

43#include "gpu-compute/compute_unit.hh"
44#include "gpu-compute/gpu_dyn_inst.hh"
45#include "gpu-compute/shader.hh"
46
47/**
48 * the default constructor that works with SWIG
49 */
50LdsState::LdsState(const Params *params) :
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:

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

43#include "gpu-compute/compute_unit.hh"
44#include "gpu-compute/gpu_dyn_inst.hh"
45#include "gpu-compute/shader.hh"
46
47/**
48 * the default constructor that works with SWIG
49 */
50LdsState::LdsState(const Params *params) :
51 MemObject(params),
51 ClockedObject(params),
52 tickEvent(this),
53 cuPort(name() + ".port", this),
54 maximumSize(params->size),
55 range(params->range),
56 bankConflictPenalty(params->bankConflictPenalty),
57 banks(params->banks)
58{
59 fatal_if(params->banks <= 0,

--- 274 unchanged lines hidden ---
52 tickEvent(this),
53 cuPort(name() + ".port", this),
54 maximumSize(params->size),
55 range(params->range),
56 bankConflictPenalty(params->bankConflictPenalty),
57 banks(params->banks)
58{
59 fatal_if(params->banks <= 0,

--- 274 unchanged lines hidden ---