-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBank.h
More file actions
75 lines (67 loc) · 3.21 KB
/
Bank.h
File metadata and controls
75 lines (67 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//Copyright (c) 2015-2016, UT-Battelle, LLC. See LICENSE file in the top-level directory
// This file contains code from NVSim, (c) 2012-2013, Pennsylvania State University
//and Hewlett-Packard Company. See LICENSE_NVSim file in the top-level directory.
//No part of DESTINY Project, including this file, may be copied,
//modified, propagated, or distributed except according to the terms
//contained in the LICENSE file.
#ifndef BANK_H_
#define BANK_H_
#include "FunctionUnit.h"
#include "Mat.h"
#include "typedef.h"
#include "TSV.h"
class Bank: public FunctionUnit {
public:
Bank();
virtual ~Bank();
/* Functions */
void PrintProperty();
virtual void Initialize(int _numRowMat, int _numColumnMat, long long _capacity,
long _blockSize, int _associativity, int _numRowPerSet, int _numActiveMatPerRow,
int _numActiveMatPerColumn, int _muxSenseAmp, bool _internalSenseAmp, int _muxOutputLev1, int _muxOutputLev2,
int _numRowSubarray, int _numColumnSubarray,
int _numActiveSubarrayPerRow, int _numActiveSubarrayPerColumn,
BufferDesignTarget _areaOptimizationLevel, MemoryType _memoryType,
int _stackedDieCount, int _paritionGranularity, int monolithicStackCount) = 0;
virtual void CalculateArea() = 0;
virtual void CalculateRC() = 0;
virtual void CalculateLatencyAndPower() = 0;
virtual Bank & operator=(const Bank &);
/* Properties */
bool initialized; /* Initialization flag */
bool invalid; /* Indicate that the current configuration is not valid, pass down to all the sub-components */
bool internalSenseAmp;
int numRowMat; /* Number of mat rows in a bank */
int numColumnMat; /* Number of mat columns in a bank */
long long capacity; /* The capacity of this bank, Unit: bit */
long blockSize; /* The basic block size in this bank, Unit: bit */
int associativity; /* Associativity, for cache design only */
int numRowPerSet; /* For cache design, the number of wordlines which a set is partitioned into */
int numActiveMatPerRow; /* For different access types */
int numActiveMatPerColumn; /* For different access types */
int muxSenseAmp; /* How many bitlines connect to one sense amplifier */
int muxOutputLev1; /* How many sense amplifiers connect to one output bit, level-1 */
int muxOutputLev2; /* How many sense amplifiers connect to one output bit, level-2 */
int numRowSubarray; /* Number of subarray rows in a mat */
int numColumnSubarray; /* Number of subarray columns in a mat */
int numActiveSubarrayPerRow; /* For different access types */
int numActiveSubarrayPerColumn; /* For different access types */
BufferDesignTarget areaOptimizationLevel;
MemoryType memoryType;
int stackedDieCount;
int partitionGranularity;
double routingReadLatency;
double routingWriteLatency;
double routingResetLatency;
double routingSetLatency;
double routingRefreshLatency;
double routingReadDynamicEnergy; /* Non-TSV routing energy. */
double routingWriteDynamicEnergy; /* Non-TSV routing energy. */
double routingResetDynamicEnergy; /* Non-TSV routing energy. */
double routingSetDynamicEnergy; /* Non-TSV routing energy. */
double routingRefreshDynamicEnergy; /* Non-TSV routing energy. */
double routingLeakage;
Mat mat;
TSV tsvArray;
};
#endif /* BANK_H_ */