Design of DNN-Based Low-Power VLSI Architecture To Classify Atrial Fibrillation For Wearable Devices
Design of DNN-Based Low-Power VLSI Architecture To Classify Atrial Fibrillation For Wearable Devices
Design of DNN-Based Low-Power VLSI Architecture To Classify Atrial Fibrillation For Wearable Devices
3, MARCH 2023
Abstract— Atrial fibrillation (AF) is a recurrent and depression, and chronic kidney disease making a timely
life-threatening disease leading to rapid growth in the mortality diagnosis of AF imperative to increase life expectancy [3],
rate due to cardiac abnormalities. It is challenging to manually [4]. We aim to develop biomedical signal processing architec-
diagnose AF using electrocardiogram (ECG) signals due to
complex and varied changes in its characteristics. In this article, tures for wearable or hand-held devices that can continuously
for the first time, an end-to-end edge-enabled machine learning- analyze and detect AF in real time.
based VLSI architecture is proposed to classify ECG excerpts Previously reported research primarily focuses on the detec-
having AF from normal beats. Researchers have found that tion and classification of different types of cardiac arrhythmia
abnormal atrial activity is confined to the low-frequency range as per Association for the Advancement of Medical Instrumen-
through the decades. Therefore, in the proposed work, this
frequency band is directly analyzed for AF detection, which tation (AAMI) standards, viz. detection of normal beat (N),
has not previously been discussed. The proposed architecture is supraventricular ectopic beat (SVEB), ventricular ectopic beat
implemented using 180-nm bulk CMOS technology consuming (VEB), fusion beat (F), and unknown beat (U). It is important
11.098 µW at 25 kHz and exhibits an accuracy of 92.37% to note that previous works have not included AF while
for class-oriented classification and 81.60% for subject-oriented classifying arrhythmia. Massachusetts Institute of Technology-
classification. The low-power realization of the proposed design,
as compared to the state-of-the-art methods, makes it suitable to Beth Israel Hospital (MIT-BIH) arrhythmia database [23] is
be used for wearable devices. one of the standard datasets used by researchers for detecting
and classifying different types of cardiac arrhythmia. It is
Index Terms— Application specific integrated circuit (ASIC),
atrial fibrillation (AF), deep neural network (DNN), electrocar- worth mentioning that the previously mentioned dataset lacks
diogram (ECG) signal, wavelet transform, wearable devices. subjects with AF episodes and consists of 47 subjects, out
of which only eight have suffered from AF episodes. The
MIT-BIH atrial fibrillation (AF) database [19] was released
I. I NTRODUCTION to support research in AF classification, which consists of
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
PARMAR et al.: DESIGN OF DNN-BASED LOW-POWER VLSI ARCHITECTURE TO CLASSIFY AF FOR WEARABLE DEVICES 321
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
322 IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 31, NO. 3, MARCH 2023
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
PARMAR et al.: DESIGN OF DNN-BASED LOW-POWER VLSI ARCHITECTURE TO CLASSIFY AF FOR WEARABLE DEVICES 323
TABLE I
C ALCULATION OF THE C OEFFICIENTS U SING INTEGER H AAR WAVELET
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
324 IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 31, NO. 3, MARCH 2023
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
PARMAR et al.: DESIGN OF DNN-BASED LOW-POWER VLSI ARCHITECTURE TO CLASSIFY AF FOR WEARABLE DEVICES 325
C. Proposed Optimized AM
Several designs of accurate and AMs are proposed in the
literature. However, AMs have better power, area, and speed
efficiency than accurate multipliers. Moreover, Mitchell’s algo-
rithm [17] is the most simplified approach for integer and
fixed point multiplication among all the available methods of
approximate multiplications.
Mitchell proposes an efficient AM, which utilizes a log mul-
tiplication property. It computes approximate multiplication by
linearly approximating log and antilog values. In this method,
first, the characteristic part of the approximate log is obtained
by finding the position of the leading “1,” i.e., the leftmost one
in the binary sequence. Next, the remaining values are used
Fig. 6. Proposed architecture of AM.
as an approximate fractional part of the log. Later, these two
operands are added, and the approximate antilog operation is
performed to this summation, which generates an approximate
product. Therefore, the approximate product is decomposed into two
Consider an N bit integer B with Bn−1 , Bn−2 , . . . , B0 , cases. First, 0 ≤ x 1 + x 2 < 1, which has no carry generating
Nbits
−1 i from the fractional part to the characteristic and second, 1 ≤
which is represented as B = i=0 2 bi . Assuming that
leading one occurs at position k, where (N − 1) k 0, x 1 + x 2 < 2, which has a carry generating to the characteristic
B can be written as (11) without any loss of the accuracy part. This can be expressed as follows:
k−1 k1 +k2 (x + x + 1), x + x < 1
B = 2k 1 + 2i−k bi . (11)
= 2
P
1 2 1 2
(15)
2k1 +k2 +1(x 1 + x 2 ), x 1 + x 2 ≥ 1.
i=0
Equation (11) can further be represented as B = 2k (1 + x), Although the above-mentioned approximation reduces the
where x = k−1 i=0 2
i−k b . Hence, log of B can be described as
i entire multiplication to addition and shift operations, it intro-
(12), where k is essentially an integer representing character- duces a significant error in the product obtained. Therefore,
istic value of log, and log2 (1 + x) is the fractional part to obtain an efficient multiplier architecture for the MAC
unit of a neuron, we propose an efficient error reduction
log2 B = k + log2 (1 + x). (12)
technique and an optimal hardware implementation of (15).
Since, 0≤x < 1, the linear approximation of log2 B can be This obtains a more accurate result compared to the con-
represents approximate ventional Mitchell’s algorithm. The multiplier architecture
depicted as (13), where function log
proposed in this article is described in Fig. 6. The error reduc-
binary log
tion technique utilized in the proposed method is described
2 B = k + x.
log (13) below.
1) Error Reduction Scheme: Here, we propose a two-step
Further, assuming there are two N-bits binary numbers
method to reduce error in the approximated product. First,
B1 and B2 with leading ones at k1 and k2 , they can be
a bias is calculated by averaging errors across the entire range
represented as B1 = 2k1 (1 + x 1 ) and B2 = 2k2 (1 + x 2 ). Thus,
of the fractional part x. Further, this average error is added to
the approximate product can be represented as mentioned in the approximate product improving its accuracy [25]. Error E
the following:
in the approximate product is estimated by (16), where P is
= k1 + k2 + x 1 + x 2
log2 ( P) (14) the logarithmic product of B1 and B2 and P
is the approximate
product obtained by Mitchell’s algorithm
where P
represents approximate product. Later, to estimate
approximate antilog of (14), “1” is added to the fractional part E =
P−P
x and is scaled with respect to the characteristic part. It is to −2k1 +k2 (x 1 x 2 ), x1 + x2 < 1
be noted that the fractional part should be in the range [0, 1). = (16)
Since 0 ≤ (x 1 , x 2 ) < 1, thus, in this case 0 ≤ x 1 + x 2 < 2. −2k1 +k2 (1 + x 1 x 2 − x 1 − x 2 ), x 1 + x 2 ≥ 1.
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
326 IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 31, NO. 3, MARCH 2023
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
PARMAR et al.: DESIGN OF DNN-BASED LOW-POWER VLSI ARCHITECTURE TO CLASSIFY AF FOR WEARABLE DEVICES 327
TABLE II
FPGA I MPLEMENTATION OF AF C LASSIFIER A RCHITECTURE
(X ILINX V IRTEX -7 FPGA)
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
328 IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 31, NO. 3, MARCH 2023
TABLE III
C OMPARISION OF THE P ROPOSED W ORK W ITH S TATE - OF - THE -A RT M ETHODS
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
PARMAR et al.: DESIGN OF DNN-BASED LOW-POWER VLSI ARCHITECTURE TO CLASSIFY AF FOR WEARABLE DEVICES 329
and Shannon entropy (SE), Later, it utilizes a threshold detec- consuming more power and hardware resources. Such complex
tor to classify a beat as normal or AF. Similar to the model classifiers are not suitable for wearable devices and can only
proposed in [22], this model does not extract the RR-interval be employed in a medical setup using a software platform.
from ECG signal, and an external processing unit is required Moreover, the method reported in [14] uses an approach
for RR-interval extraction. Further, the AF detector [31] also to evaluate performance on the blind data and reports an
uses nontunable hard-coded thresholds. accuracy of 82.7% and an F1 score of 79. This method is
The methods proposed in [22] and [31] consume less area similar to the approach adopted in Experiment-2 and yields
than ours because they implement only classifier on hardware comparable performance with our implementation. However,
using 65-nm technology and does not realize RR-interval it employs 37 time and frequency domain features, making it
extraction block. Further, their power consumptions are less inefficient to be used in wearable applications. Our proposed
than our proposed work because of using very low supply classifier is optimized not only at the algorithmic level but also
voltage (VDD) in the subthreshold (subVT ) region and low at the architectural level to be utilized in low-power wearable
operating frequency. The operating frequency of the classifier devices.
block is considered while estimating the power in the methods It is observed from Table III that our proposed classifier
proposed in [22] and [31]. Since power is proportional to VDD has better or comparable performance than other state-of-the-
and the operating frequency, the power consumptions of the art methods. However, multilead ECG data and more physi-
work reported in [22] and [31] are less. As stated above, the ological variables should be employed to obtain a medically
RR-interval series extraction is not realized in hardware in [22] acceptable device. As we know, the primary motive of the
and [31]. Due to this, the actual operating frequency of the wearable device is to alert an individual for any anomaly and
proposed designs would vary for real-time ECG analysis. Our not to provide any clinical suggestions. Therefore, the area
proposed design implements a complete end-to-end solution and power optimal proposed AF classifier can be utilized to
for AF detection, including feature extraction and classification realize wearable devices.
of ECG signal. Therefore, it can be considered as a better
choice for real-time AF detection and can be employed in any V. C ONCLUSION
wearable and portable devices.
This article proposes hardware realization of an end-to-
Additionally, Lim et al. [11] explore hardware–software
end area and power-efficient AF classifier for wearable health
co-design to achieve an accuracy of 95.30% but employ
care devices. Since abnormal atrial activity is confined in the
complex features including power spectral density, log energy
low-frequency range (<12 Hz), it is to mention that for the
entropy, wavelet transform with ANN as a classifier, and
first time, this frequency band is directly analyzed for AF
a 10-s input ECG sample window. Lim et al. [11] have
detection. Further, using the integer Haar wavelet and an effi-
prototyped the design on Intel’s DE2-115 FPGA board,
cient realization of the multilevel decomposition technique, the
which features a Cyclone IV FPGA and an onboard Nios
computational complexity of the proposed classifier is reduced
II processor. The ECG-processing blocks along with classi-
significantly. This classifier is implemented on 180-nm CMOS
fier are executed on the Nios II processor software, while
technology. It utilizes an AM with an optimized DNN to
only fast Fourier transform (FFT) is hardware accelerated
classify AF consuming 11.098 µW power at 25 kHz with
and is implemented on FPGA. Thus, the hardware–software
an accuracy of 92.37% for the class-oriented classification
co-design methodology is utilized to implement ECG feature
and 81.60% for the subject-oriented classification in real-time.
processing along with the classifier on the Nios II processor
This makes our design a highly suitable candidate for wearable
(software) and FFT on Cyclone IV FPGA (hardware). Our
health care devices.
proposed design, including the complete ECG processing and
the classifier, is realized on FPGA and then synthesized for an
ASIC implementation. Sadasivuni et al. [32] have proposed an R EFERENCES
analog machine learning classifier IC to detect sepsis and AF [1] V. Fuster et al., “ACC/AHA/ESC 2006 guidelines for the management of
from ECG signal. The classifier achieves an average accuracy patients with atrial fibrillation-executive summary: A report of the Amer-
ican College of Cardiology/American Heart Association task force on
of 98.2% for AF detection and 90.7% for predicting sepsis. practice guidelines and the European Society of Cardiology Committee
Using a 30-s ECG signal, a set of 63 time domain features are for practice guidelines (writing committee to revise the 2001 guidelines
computed for AF detection. It is important to note that only for the management of patients with atrial fibrillation),” Eur. Heart J.,
vol. 27, no. 16, pp. 1979–2030, 2006.
the ANN classifier is implemented on ASIC, while feature [2] P. Kirchhof et al., “2016 ESC guidelines for the management of
extraction is implemented OFF-chip. Extracting 63 features for atrial fibrillation developed in collaboration with EACTS,” Kardiologia
AF detection will drastically increase the feature extraction Polska, Polish Heart J., vol. 74, no. 12, pp. 1359–1469, 2016.
[3] S. Nattel, “New ideas about atrial fibrillation 50 years on,” Nature,
block’s computation complexity. The on-chip ANN classifier vol. 415, no. 6868, pp. 219–226, Jan. 2002.
[32] utilizes an area of 1.67 mm2 at 65 nm, while our [4] J. Oldgren et al., “Variations in cause and management of atrial fibrilla-
classifier, with its simplified DWT implementation and ML tion in a prospective registry of 15 400 emergency department patients
in 46 countries: The RE-LY atrial fibrillation registry,” Circulation,
model, utilizes an area of 1.18 mm2 at 180 nm. vol. 129, no. 15, pp. 1568–1576, Apr. 2014.
The proposed classifier has 8% less accuracy than the [5] P. Langley, J. P. Bourke, and A. Murray, “Frequency analysis of atrial
algorithm presented in [21]. The classifier proposed in [21] fibrillation,” in Proc. Comput. Cardiol., vol. 27, 2000, pp. 65–68.
[6] R. Couceiro, P. Carvalho, J. Henriques, M. Antunes, M. Harris, and
utilizes a feature vector of 2700 samples with a 13-layer J. Habetha, “Detection of atrial fibrillation using model-based ECG
convolution neural network, making it compute-intensive and analysis,” in Proc. 19th Int. Conf. Pattern Recognit., Dec. 2008, pp. 1–5.
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.
330 IEEE TRANSACTIONS ON VERY LARGE SCALE INTEGRATION (VLSI) SYSTEMS, VOL. 31, NO. 3, MARCH 2023
[7] N. Sasaki et al., “Frequency analysis of atrial fibrillation from the [30] M. Jobst et al., “ZEN: A flexible energy-efficient hardware classifier
specific ECG leads V7–V9: A lower DF in lead V9 is a marker of exploiting temporal sparsity in ECG data,” in Proc. IEEE 4th Int.
potential atrial remodeling,” J. Cardiol., vol. 66, no. 5, pp. 388–394, Conf. Artif. Intell. Circuits Syst. (AICAS), Jun. 2022, pp. 214–217, doi:
2015. 10.1109/AICAS54282.2022.9869958.
[8] M. Zihlmann, D. Perekrestenko, and M. Tschannen, “Convolutional [31] O. Andersson and J. N. Rodrigues, “A 400 mV atrial fibrillation
recurrent neural networks for electrocardiogram classification,” in Proc. detector with 0.56 pJ/operation in 65 nm CMOS,” in Proc. IEEE
Comput. Cardiol. Conf. (CinC), Sep. 2017, pp. 1–4. Int. Symp. Circuits Syst. (ISCAS), May 2015, pp. 2628–2631, doi:
[9] S. Ladavich and B. Ghoraani, “Rate-independent detection of atrial 10.1109/ISCAS.2015.7169225.
fibrillation by statistical modeling of atrial activity,” Biomed. Signal [32] S. Sadasivuni, S. P. Bhanushali, S. S. Singamsetti, I. Banerjee,
Process. Control, vol. 18, pp. 274–281, Apr. 2015. and A. Sanyal, “Multi-task learning mixed-signal classifier for in-
[10] D. E. Lake and J. R. Moorman, “Accurate estimation of entropy in situ detection of atrial fibrillation and sepsis,” in Proc. IEEE Bio-
very short physiological time series: The problem of atrial fibrillation med. Circuits Syst. Conf. (BioCAS), Oct. 2021, pp. 1–4, doi: 10.1109/
detection in implanted ventricular devices,” Amer. J. Physiol.-Heart BioCAS49922.2021.9644994.
Circulatory Physiol., vol. 300, no. 1, pp. H319–H325, Jan. 2011. [33] W. J. Tompkins, Biomedical Digital Signal Processing.
[11] H. W. Lim, Y. W. Hau, M. A. Othman, and C. W. Lim, “Embedded Upper Saddle River, NJ, USA: Prentice-Hall, 1993.
system-on-chip design of atrial fibrillation classifier,” in Proc. Int. SoC
Design Conf. (ISOCC), Nov. 2017, pp. 90–91.
[12] R. Alcaraz, F. Sandberg, L. Sörnmo, and J. J. Rieta, “Classification Rushik Parmar received the B.E. degree in
of paroxysmal and persistent atrial fibrillation in ambulatory ECG electronics and telecommunication from the
recordings,” IEEE Trans. Biomed. Eng., vol. 58, no. 5, pp. 1441–1449, Institute of Engineering and Technology, DAVV,
May 2011. Indore, India, in 2019.
[13] S. Asgari, A. Mehrnia, and M. Moussavi, “Automatic detection of He worked as a Software Engineer with
atrial fibrillation using stationary wavelet transform and support vector Accenture Digital, Mumbai, Maharashtra, India,
machine,” Comput. Biol. Med., vol. 60, pp. 132–142, May 2015. from 2019 to 2020. He is currently a Research
[14] R. Mahajan, R. Kamaleswaran, J. A. Howe, and O. Akbilgic, “Cardiac Scholar with IIT Guwahati, Guwahati, Assam,
rhythm classification from a short single lead ECG recording via random India. His research areas include VLSI system
forest,” in Proc. Comput. Cardiol. Conf. (CinC), Sep. 2017, pp. 1–4. design, machine learning, and VLSI architectures
[15] M. Janveja and G. Trivedi, “An area and power efficient VLSI archi- for biomedical applications.
tecture for ECG feature extraction for wearable IoT healthcare applica-
tions,” Integration, vol. 82, pp. 96–103, Jan. 2022.
[16] S. G. Mallat, “A theory for multiresolution signal decomposition: The
wavelet representation,” in Fundamental Papers in Wavelet Theory. Meenali Janveja (Student Member, IEEE) received
Princeton, NJ, USA: Princeton Univ. Press, 2009, pp. 494–513. the B.Tech. degree in electronics and communication
[17] J. Y. L. Low and C. C. Jong, “Unified Mitchell-based approximation for engineering from the Government Women Engineer-
efficient logarithmic conversion circuit,” IEEE Trans. Comput., vol. 64, ing College, Ajmer, India, in 2013, and the M.Tech.
no. 6, pp. 1783–1797, Jun. 2015. degree in VLSI design from Indira Gandhi Delhi
[18] M. Ito, D. Chinnery, and K. Keutzer, “Low power multiplication algo- Technical University for Women, India, in 2016.
rithm for switching activity reduction through operand decomposition,” She worked as an Assistant Professor with the
in Proc. 21st Int. Conf. Comput. Design, 2003, pp. 21–26. Department of Electronics and Communication
[19] G. Moody, “A new method for detecting atrial fibrillation using RR Engineering, G.L. Bajaj Institute of Technology and
intervals,” in Proc. Comput. Cardiol., 1983, pp. 227–230. Management, India, from 2016 to 2017. She is
[20] Virtex-7 FPGA Family. Accessed: Sep. 15, 2022. [Online]. Available: currently a Research Scholar with the Department of
https://www.xilinx.com/products/silicon-devices/fpga/virtex-7.html Electronics and Electrical Engineering, IIT Guwahati, Guwahati, India. Her
[21] S. Nurmaini et al., “Robust detection of atrial fibrillation from short-term research areas include digital VLSI design, computer architecture, machine
electrocardiogram using convolutional neural networks,” Future Gener. learning, and VLSI for biomedical signal processing.
Comput. Syst., vol. 113, pp. 304–317, Dec. 2020.
[22] O. Andersson, K. H. Chon, L. Sörnmo, and J. N. Rodrigues, “A 290 mV
sub-VT ASIC for real-time atrial fibrillation detection,” IEEE Trans.
Biomed. Circuits Syst., vol. 9, no. 3, pp. 377–386, Jun. 2015. Jan Pidanic (Senior Member, IEEE) was born in
[23] G. B. Moody and R. G. Mark, “The impact of the MIT-BIH arrhythmia 1979. He received the M.Sc. and Ph.D. degrees from
database,” IEEE Eng. Med. Biol. Mag., vol. 20, no. 3, pp. 45–50, the University of Pardubice, Pardubice, Czechia, in
May/Jun. 2001. 2005 and 2012, respectively.
[24] M. Janveja, R. Parmar, M. Tantuway, and G. Trivedi, “A DNN-based His research interests include signal processing in
low power ECG co-processor architecture to classify cardiac arrhythmia passive radar systems, bistatic radars, clutter model-
for wearable devices,” IEEE Trans. Circuits Syst. II, Exp. Briefs, vol. 69, ing, and optimization of signal processing algorithms
no. 4, pp. 2281–2285, Apr. 2022. with parallel processing techniques.
[25] H. Saadat, H. Bokhari, and S. Parameswaran, “Minimally biased mul-
tipliers for approximate integer and floating-point multiplication,” IEEE
Trans. Comput.-Aided Design Integr. Circuits Syst., vol. 37, no. 11,
pp. 2623–2635, Nov. 2018.
[26] J. Lee, B. A. Reyes, D. D. McManus, O. Mathias, and K. H. Chon,
“Atrial fibrillation detection using an iPhone 4S,” IEEE Trans. Biomed. Gaurav Trivedi (Member, IEEE) received the Ph.D.
Eng., vol. 60, no. 1, pp. 203–206, Jan. 2013. degree in electrical engineering from IIT Bombay,
[27] K. K. Parhi and T. Nishitani, “VLSI architectures for discrete wavelet Mumbai, Maharashtra, India, in 2007.
transforms,” in IEEE Trans. Very Large Scale Integr. (VLSI) Syst., vol. 1, He is currently an Associate Professor with the
no. 2, pp. 191–202, Jun. 1993, doi: 10.1109/92.238416. Department of Electronics and Electrical Engineer-
[28] M. Vishwanath, R. M. Owens, and M. J. Irwin, “VLSI architectures ing, IIT Guwahati, Guwahati, India. He worked as
for the discrete wavelet transform,” in IEEE Trans. Circuits Syst. II, a Senior Member of Technical Staff with Cadence
Analog Digit. Signal Process., vol. 42, no. 5, pp. 305–316, May 1995, Design System India Pvt. Ltd., Noida, UP, India and
doi: 10.1109/82.386170. Mentor-Siemens (Earlier Berkeley Design Automa-
[29] J. Loh, J. Wen, and T. Gemmeke, “Low-cost DNN hardware tion India), Bengaluru, India, for three years, and as
accelerator for wearable, high-quality cardiac arrythmia detec- a Post-Doctoral Fellow at IIT Bombay, for two years.
tion,” in Proc. IEEE 31st Int. Conf. Appl.-Specific Syst., Archi- His research interests include VLSI CAD, semiconductor devices, digital and
tectures Processors (ASAP), Jul. 2020, pp. 213–216, doi: 10.1109/ analog circuit design, high-performance computing, computer architecture and
ASAP49362.2020.00042. algorithms, embedded and IoT, and quantum computing.
Authorized licensed use limited to: Amrita School of Engineering. Downloaded on February 27,2023 at 05:59:22 UTC from IEEE Xplore. Restrictions apply.