Speedup of Type-1 Fuzzy Logic Systems on Graphics Processing Units Using CUDA

Size: px
Start display at page:

Download "Speedup of Type-1 Fuzzy Logic Systems on Graphics Processing Units Using CUDA"

Transcription

1 Speedup of Type-1 Fuzzy Logc Systems on Graphcs Processng Unts Usng CUDA Durlabh Chauhan 1, Satvr Sngh 2, Sarabjeet Sngh 3 and Vjay Kumar Banga 4 1,2 Department of Electroncs & Communcaton Engneerng, SBS State Techncal Campus, Ferozepur , (Punjab) Inda 3 Department of Computer Scence & Engneerng, SBS State Techncal Campus, Ferozepur , (Punjab) Inda 4 Department of Electroncs & Communcaton Engneerng, Amrtsar College of Engg. & Tech., Amrtsar , (Punjab) Inda E-mal: 1 er.durlabh@gmal.com, 2 drsatvr.n@gmal.com, 3 sarabjeet_sngh13@yahoo.co, 4 v_banga@redffmal.com Abstract Parallelcomputng s one of sgnfcant components of the Hgh Performance Computng (HPC) and s beng used to solve problems, whch are large and complex n nature. Fuzzy Logc System (FLS) s a problem that becomes computatonally ntensve wth ncrease n number of nputs and/or fuzzy rules. Runnng an FLS s hghly parallel n nature, therefore, can be mplemented n parallel on GPU usng CUDA. In ths paper, varous fuzzy computatons vz. rule frng, mplcaton, aggregaton and defuzzfcaton are performed n parallel. Multple threads are run at a tme to fre multple fuzzy rules, smultaneously, that reduces the overall FLS executon tme. It s observed from smulaton results that GPU works faster as compared to CPU when ether number of nputs s ncreased or number of fuzzy rules. Keywords: Hgh Performance Computng, Fuzzy Logc Systems, General Purpose Computng on Graphcs Processng Unt, Compute Unfed Desgn Archtecture I. INTRODUCTION Artfcal Intellgence (AI) undoubtedly s the backbone of the emergng technologcal advancements, however, mplementaton nvolves ntensve computaton owng to ncreased data szes. Methods to mprove the runtme performance construe the areas of research to reduce mathematcal computatons and parallelzaton of algorthm n hardware. Graphcs Processor Unts (GPU), plays a major role n gamng and graphcs applcatons and allows for general purpose programmng on remarkably fast parallel hardware usng a Sngle Instructon Multple Data (SIMD) programmng archtecture. Fuzzy Logc, ntroduced by Zadeh [1], [2], s one of the exgent part of AI and possess nherent parallel nature. General Purpose computng on GPU (GPGPU) s targeted by many researchers to speed up complcated algorthms especally, AI algorthms and ther applcatons [3]. Ander-son et al. presented a GPU soluton for the fuzzy C-means clusterng algorthms [4]. Earler ths soluton used OpenGL and Cg (graphcs lbrares) to acheve approxmately two folds of computatonal speedup for some clusterng profles usng NVIDIA 8800 GPU. They later generalzed the system for the use of non- Eucldean metrcs [5]. Further, Sejun Km descrbes the method used to adapt a multlayer tree structure composed of fuzzy adaptve unts nto CUDA (Compute Unfed Devce Archtecture) platforms [6]. In [7], Chosa and Kolb present a framework for mesh clusterng solely mplemented on the GPU wth a new generc multlevel clusterng technque. Cha et al., have proposed the mplementaton of a zero-order TSK-Fuzzy Neural Network (FNN) on GPUs to reduce tranng tme n [8]. Harvey et al., have presented a GPU soluton for fuzzy nference system n [9]. Anderson et al., present a parallel mplementaton of fuzzy nference on GPU usng CUDA n[10]. Two folds of speed mprovement of ths naturally parallel algorthm have been acheved under typcal nference profles. One problem wth ths system and the mplementaton on GPU s that they both rely upon OpenGL and Cg lbrares, whch makes system generalzaton dffcult for new comers to GPGPU. Further, Ngo et al., report an mplementaton of Interval Type-2 FLS on GPU usng CUDA wth a tremendous speedup of 30 folds n [11]. In ths paper, parallel functonalty wth CUDA programmng model, for parallel mplementaton of a Type-1 Sugeno FLS on GPU, s nvestgated wth ncreased number of nputs and fuzzy rules. After ths bref hstorcal background rest of ths paper s outlned as follows: Secton II targets CUDA programmng model for GPGPU. Secton III ntroduces Type 1 FLS along wth the scope of parallelsm wherever possble. Secton IV presents smulaton results and a speedup comparson of seral and parallel computng usng CPU and GPU, respectvely. Fnally, secton V concludes the research workand presents future off-shoots. II. CUDA PROGRAMMING MODEL CUDA s a parallel computng platform and programmng model ntroduced by NVIDIA that ncreases computng performance substantally by harnessng the power of parallelsm of the GPU. CUDA gves program developers the drect access to the vrtual nstructon set and memory of the parallel computatonal elements n CUDA enabled GPUs. The CUDA platform s accessble to software developers through CUDA accelerated lbrares, compler drectves (such as Open ACC), and extensons to ndustry-standard programmng languages, ncludng C, C++ and FORTRAN. C/C++ programmers use

2 Internatonal Conference on Communcaton, Computng & Systems (ICCCS 2014) CUDAC/C++, compled wth nvcc whch s NVIDIA S LLVM-based C/C++ compler. A C/C++ program usng CUDA can nterface wth one GPU or multple GPUs and can be dentfed and utlzed n parallel, allowng for unprecedented processng power on desktop computers. CUDA allows multple kernels to be run smultaneously on GPU cores. CUDA refers to each kernel as a grd. A grd s a collecton of blocks. Each block runs the same kernel, however, s ndependent of each other (ths has sgnfcance n terms of access to memory types). A block contans threads, whch are the smallest dvsble unt on a GPU. A thread block s a number of SIMD threads that work on core at a gven tme. Threads can exchange nformaton through the shared memory and can be synchronzed. The operatons are systematzed as a grd of thread blocks. For parallel operaton the programmng model allows a developer to partton a program nto several subprograms, each of whch s executed ndependently on a block. Each subprogram can be further dvded nto fner peces that perform the same functon but execute on dfferent threads ndependently wthn the same block. For data set parallelsm, data sets can be dvded n to smaller chunks that are stored n the shared memory, and each chunk s vsble to all threads of the same block. Ths local data arrangement approach reduces the need to access off-chp global memory, whch reduces data access tme. memory reads and wrtes. Ths s typcally acheved by havng each thread read ts data from global memory and store ts content nto shared memory. The basc structure of a CUDA code comprses of allocaton of memory space (usng cuda Malloc functon) on devce (GPU) and (usng regular malloc functon) on host (CPU). Data whch s coped from the host to the devce for the call of kernel routne to be executed on the GPU (usng functon cuda Memcpy) also defnes the number of threads and ther physcal structure. Kernel s prefxed wth the global keyword. Results are transferred from GPU to CPU n the same fashon as data s coped from host to devce. III. SCOPE OF PARALLELISM IN TYPE-1 FLS Theory of FLS gven by Zadeh a fuzzy set s defned for a partcular doman, and t s characterzed by a membershp functon that maps elements from the doman to a real valued numbers [1], [2]. Mendel and many researchers gave numerous methods to desgn and mplement FLS for varous applcatons [12] [15]. Theory of FLS gven by Zadeh a fuzzy set s defned for a partcular doman, and t s characterzed by a membershp functon that maps elements from the doman to a real valued numbers. Fg. 1 CUDA Archtecture The next crtcal component of a CUDA applcaton s the memory model. There are multple types of memory and each has dfferent access tmes. The GPU s broken up nto read-wrte per thread regsters, read-wrte per thread local memory, read-wrte per-block shared memory, read-wrte per-grd global memory, read-only per-grd constant memory, and read-only per-grd texture memory. Texture and constant memory have relatvely small access latency tmes, whle global memory has the largest access latency tme. Applcatons should mnmze the number of global Fg. 2 CUDA Process Flow In ths paper every nput has been fuzzfed usng four arbtrary located Gaussan membershp functons that are characterzed by two parameters,.e., mean (m) and standard devaton (). Gaussan membershp functon s symmetrcal about ts mean and s expressed mathematcally as (1) ( x) ( x m) exp (1) In ths paper, an FLS wth 4 nputs and 1 output s subjectedto parallel computaton for forecastng of Mackey-Glass tmeseres [14]. For mplcaton and aggregaton, mn and maxoperator are nvestgated. The defuzzfcaton s performedwth the heght defuzzfcaton method as symmetrcal shaped Gaussan fuzzy sets have been used to fuzzfy consequent.output of the heght defuzzfer s gven by (2) 268

3 Speedup of Type-1 Fuzzy Logc Systems on Graphcs Processng Unts Usng CUDA y M 1 M C ( x ) 1 ( x ) Here C represents the locaton of sngleton consequents fuzzy sets and (x ) represent clppng level for each rule after mplcaton and M represents total number of fuzzy rules. However, for mplementaton of the FLS defned above n CUDA, the foremost and the most crucal step s to allocate the memory space for the data sets to be used n the system,as the choce and format of data affects performance of thealgorthm. Scope of possble parallel computatonal processng s dscussed as follows: Harvey et al., [9] and Anderson et al., [10] n ther respectve work have gven a vast scope of parallelsm for Type-1 FLS. In the same fashon Ngo et al., [11] presented a novel scope of parallelsm for Interval Type-2 FLS. However, n all these mplementatons the emphass was lad to parallelze the number of fuzzy rules and dscrete levels for a typcal FLS wth two nputs and sngle output. So, a sngle FLS was computed wth parallel rule nference on GPU usng CUDA. However, a typcal FLS can be processed multple tmes wth fxed fuzzy rules and dscrete levels but varyng nputs. Here les our scope of parallelsm, we construe our code to compute multple FLS n parallel on GPU as a FLS serally on CPU wll consume more tme. IV. PARALLEL I MPLEMENTATION Two M N dmensonal Mean and Sgma matrces are used n ths mplementaton where M denotes number of fuzzy rules and N s number of antecedents. These matrces hold mean and sgma values of Gaussan membershp functon n accordance wth fuzzy rules used n the FLS. An M 1 dmensonal Consequent matrx contans only mean values of the consequent fuzzy sets as systems uses heght defuzzfcatonmethod gven by equaton (2). Multple nputs are provded to the systems collectvely n the form of an L N dmensonal nput matrx, X, where L s the number of nputs.the CPU executes rule frng sequentally wth a sngle nput at a tme and causes more computatonal tme. Whereas, multple threads are run at the same tme to fre multple rules smultaneously usng system matrces,.e., Mean, Sgma and Consequent matrces,whch reduce the executon tme for the FLS. A kernel functon s ntalzed from CPU to pass nputs n parallel to varous GPU cores. Copyng system matrces everytme along wth nput vectors and ncreases the GPU processng tme. Therefore, system matrces are coped only once and subsequently requre only nput vectors those are passed to GPU n parallel to enhance the GPU performance. (2) V. RESULTS DISCUSSION The speed up performance wth GPU mplementaton of a Type-1 Sugeno FLS was compared wth that of CPU mplementaton. Intel Core 2 Duo system under expermentaton has 2GB of system RAM, and Wndows 7 platform. The GPU used here works on nvidiageforce GTX 650 wth 1024 MB of texture memory, 192 stream processors, and PCI Express X16. The number of antecedents s fxed to 4 and consequentto 1, the number of rules s vared between 10, 20, 30, 40, 50, 60, 70, 80, 90, 100 and nputs were vared as 128, 256, 512, and A set of nput data s obtaned from Mackey-Glass tme seres for expermentaton. Rato of CPU to GPU runtmes wth respect to number of fuzzy rules has been tabulated n Table I and presented graphcallyn Fg. 3. TABLE I FUZZY RULES VS. CPU TO GPU SPEEDUP RATIO CPU to GPU Runtme Speedup Rato Number of Fuzzy Rules Inputs Inputs Inputs Inputs Here, t can be observed clearly that advantage of GPU computng has ncreased wth ncreased nput data vector szes. In another smulaton results, t s observed that CPU to GPU speedup tme mproves wth ncrease n fuzzy rules. Computatonal tme on CPU vares sgnfcantly due to already always runnng applcatons at the back end.therefore, to present far comparson seral and parallel tmng analyss experments wth same FLS have been repeated 30 tmes. Average of CPU to GPU speedups for 30 monte-carlosmulatons durng seral and parallel computatons of rule frng, mplcaton, aggregaton and defuzzfcaton have beenpresented n Fg Fg. 3 CPU to GPU Speedup Rato vs Inputs Data Length 269

4 Internatonal Conference on Communcaton, Computng & Systems (ICCCS 2014) The overall performance of CPU to GPU speedup tmngswth respect to collectve number of nputs, presented to the FLS, s shown n Fg. 8 that depcts that larger the number offuzzy rules better s the speedup performance. Fg. 6 CPU and GPU Runtme Comparson for 512 Inputs Fg. 4 CPU and GPU Runtme Comparson for 128 Inputs Fg. 7 CPU and GPU Runtme Comparson for 1024 Inputs Fg. 5 CPU and GPU Runtme Comparson for 256 Inputs VI. CONCLUSION AND FUTURE WORK Ths paper has demonstrated the mplementaton and comparatve runtme performances of a typcal Sugeno Type-1 FLSon a GPU and CPU wthout the use of a graphcs API whch s flexble, scalable, and can be used by any researcher wth knowledge of C. It has been demonstrated that the CPU works equally fast as GPU when the system s small. As the number of rules or the number of nputs ncrease the GPU outperforms the CPU runtme. Here, n the work nearly 7.83 tmes speedup could be acheved as 1024 nputs suppled n parallel to the FLS ported on GPU. The GPU has an ntal setup overhead of kernel loadng and memory transfer, however, subsequent parallel computatons leads to a small ncrease n processng tme despte a substantal ncrease n computatonal load. On the other hand, CPU has no ntal cost, but computaton tme grows lnearly wth computatonal load much beyond GPGPU runtme. Fg. 8 CPU to GPU Speedup Rato for Varous Input Data Sets The parallelzaton of more FLS applcatons s next on ouragenda. That wll follow mplementaton of Interval Type-2 FLSs and Generalzed Type-2 FLSs for varous applcatons that requre much more computatonal tme otherwse.gpgpu s also possbly nvestgated to on Evolutonary Algorthms those are computatonal ntensve and parallel nnature. REFERENCES [1] L.A. Zadeh, Fuzzy Sets, Informaton and Control, Vol. 8, No. 3, pp , [2] L.A. Zadeh, Fuzzy Logc and Approxmate Reasonng, Synthese, Vol. 30, pp , [3] S. Sngh, S. Sngh, V.K. Banga, and D. Chauhan, CUDA for GPGPU Applcatons-A Survey, n Natonal Conference on Contem-poraryTechnques & Technologes n Electroncs Engneerng, Murthal,Sonepat, Inda, March 2013, p. Accepted. 270

5 Speedup of Type-1 Fuzzy Logc Systems on Graphcs Processng Unts Usng CUDA [4] D.T. Anderson, R.H. Luke, and J.M. Keller, Speedup of FuzzyClusterng through Stream Processng on Graphcs Processng Unts, IEEE Transactons on Fuzzy Systems, Vol. 16, No. 4, pp , [5] D. Anderson, R.H. Luke, and J.M. Keller, Incorporaton of non-eucldeandstance Metrcs nto Fuzzy Clusterng on Graphcs Processng Unts, n Analyss and Desgn of Intellgent Systems usng Soft Computng Technques. Sprnger, pp , [6] S. Km and D. Wunsch, A GPU based Parallel Herarchcal Fuzzy ART Clusterng, n The 2011 Internatonal Jont Conference on Neural Networks (IJCNN), pp , [7] I. Chosa and A. Kolb, GPU-based Multlevel Clusterng, IEEE Transactons on Vsualzaton and Computer Graphcs, Vol. 17, No. 2, pp , [8] C.F. Juang, T.C. Chen, and W.Y. Cheng, Speedup of Implementng Fuzzy Neural Networks wth Hgh-dmensonal Inputs through Parallel Processng on Graphc Processng Unts, IEEE Trans-actons on Fuzzy Systems, Vol. 19, No. 4, pp , [9] N. Harvey, R. Luke, J.M. Keller, and D. Anderson, Speedup of Fuzzy Logc through Stream Processng on Graphcs Processng Unts, n CEC IEEE World Congress on Computatonal Intellgence and Congress on Evolutonary Computaton, pp , [10] D. Anderson and S. Coupland, Parallelsaton of Fuzzy Inference on a Graphcs Processor Unt usng the Compute Unfed Desgn Archtecture, n Proceedngs of the UK Workshop on Computatonal Intellgence (UKCI 08), pp. 1 6, [11] L.T. Ngo, D.D. Nguyen, C.M. Luong et al.,., Speedup of Interval Type 2 Fuzzy Logc Systems based on GPU for Robot Navgaton, Advances n Fuzzy Systems, Vol. 2012, pp. 4, [12] J.M. Mendel, Fuzzy Logc Systems for Engneerng: A Tutoral, Proceedngs of the IEEE FUZZ, Vol. 83, No. 3, pp , [13] G.C. Mouzours and J.M. Mendel, Non-sngleton Fuzzy Logc Systems: Theory and Applcaton, IEEE Transactons on Fuzzy Systems, Vol. 5, No. 1, pp , [14] N.N. Karnk and J.M. Mendel, Applcatons of Type-2 Fuzzy Logc Systems to Forecastng of Tme-seres, Informaton Scences, Vol. 120, No. 1, pp , [15] J.M. Mendel, Uncertanty, Fuzzy Logc, and Sgnal Processng, Sgnal Processng, Vol. 80, No. 6, pp ,

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints Australan Journal of Basc and Appled Scences, 2(4): 1204-1208, 2008 ISSN 1991-8178 Sum of Lnear and Fractonal Multobjectve Programmng Problem under Fuzzy Rules Constrants 1 2 Sanjay Jan and Kalash Lachhwan

More information

Parallelism for Nested Loops with Non-uniform and Flow Dependences

Parallelism for Nested Loops with Non-uniform and Flow Dependences Parallelsm for Nested Loops wth Non-unform and Flow Dependences Sam-Jn Jeong Dept. of Informaton & Communcaton Engneerng, Cheonan Unversty, 5, Anseo-dong, Cheonan, Chungnam, 330-80, Korea. seong@cheonan.ac.kr

More information

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers IOSR Journal of Electroncs and Communcaton Engneerng (IOSR-JECE) e-issn: 78-834,p- ISSN: 78-8735.Volume 9, Issue, Ver. IV (Mar - Apr. 04), PP 0-07 Content Based Image Retreval Usng -D Dscrete Wavelet wth

More information

A mathematical programming approach to the analysis, design and scheduling of offshore oilfields

A mathematical programming approach to the analysis, design and scheduling of offshore oilfields 17 th European Symposum on Computer Aded Process Engneerng ESCAPE17 V. Plesu and P.S. Agach (Edtors) 2007 Elsever B.V. All rghts reserved. 1 A mathematcal programmng approach to the analyss, desgn and

More information

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data Malaysan Journal of Mathematcal Scences 11(S) Aprl : 35 46 (2017) Specal Issue: The 2nd Internatonal Conference and Workshop on Mathematcal Analyss (ICWOMA 2016) MALAYSIAN JOURNAL OF MATHEMATICAL SCIENCES

More information

Subspace clustering. Clustering. Fundamental to all clustering techniques is the choice of distance measure between data points;

Subspace clustering. Clustering. Fundamental to all clustering techniques is the choice of distance measure between data points; Subspace clusterng Clusterng Fundamental to all clusterng technques s the choce of dstance measure between data ponts; D q ( ) ( ) 2 x x = x x, j k = 1 k jk Squared Eucldean dstance Assumpton: All features

More information

Assignment # 2. Farrukh Jabeen Algorithms 510 Assignment #2 Due Date: June 15, 2009.

Assignment # 2. Farrukh Jabeen Algorithms 510 Assignment #2 Due Date: June 15, 2009. Farrukh Jabeen Algorthms 51 Assgnment #2 Due Date: June 15, 29. Assgnment # 2 Chapter 3 Dscrete Fourer Transforms Implement the FFT for the DFT. Descrbed n sectons 3.1 and 3.2. Delverables: 1. Concse descrpton

More information

Cluster Analysis of Electrical Behavior

Cluster Analysis of Electrical Behavior Journal of Computer and Communcatons, 205, 3, 88-93 Publshed Onlne May 205 n ScRes. http://www.scrp.org/ournal/cc http://dx.do.org/0.4236/cc.205.350 Cluster Analyss of Electrcal Behavor Ln Lu Ln Lu, School

More information

The Codesign Challenge

The Codesign Challenge ECE 4530 Codesgn Challenge Fall 2007 Hardware/Software Codesgn The Codesgn Challenge Objectves In the codesgn challenge, your task s to accelerate a gven software reference mplementaton as fast as possble.

More information

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization Problem efntons and Evaluaton Crtera for Computatonal Expensve Optmzaton B. Lu 1, Q. Chen and Q. Zhang 3, J. J. Lang 4, P. N. Suganthan, B. Y. Qu 6 1 epartment of Computng, Glyndwr Unversty, UK Faclty

More information

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task Proceedngs of NTCIR-6 Workshop Meetng, May 15-18, 2007, Tokyo, Japan Term Weghtng Classfcaton System Usng the Ch-square Statstc for the Classfcaton Subtask at NTCIR-6 Patent Retreval Task Kotaro Hashmoto

More information

A New Approach For the Ranking of Fuzzy Sets With Different Heights

A New Approach For the Ranking of Fuzzy Sets With Different Heights New pproach For the ankng of Fuzzy Sets Wth Dfferent Heghts Pushpnder Sngh School of Mathematcs Computer pplcatons Thapar Unversty, Patala-7 00 Inda pushpndersnl@gmalcom STCT ankng of fuzzy sets plays

More information

An Efficient Garbage Collection for Flash Memory-Based Virtual Memory Systems

An Efficient Garbage Collection for Flash Memory-Based Virtual Memory Systems S. J and D. Shn: An Effcent Garbage Collecton for Flash Memory-Based Vrtual Memory Systems 2355 An Effcent Garbage Collecton for Flash Memory-Based Vrtual Memory Systems Seunggu J and Dongkun Shn, Member,

More information

Evaluation of an Enhanced Scheme for High-level Nested Network Mobility

Evaluation of an Enhanced Scheme for High-level Nested Network Mobility IJCSNS Internatonal Journal of Computer Scence and Network Securty, VOL.15 No.10, October 2015 1 Evaluaton of an Enhanced Scheme for Hgh-level Nested Network Moblty Mohammed Babker Al Mohammed, Asha Hassan.

More information

Assembler. Building a Modern Computer From First Principles.

Assembler. Building a Modern Computer From First Principles. Assembler Buldng a Modern Computer From Frst Prncples www.nand2tetrs.org Elements of Computng Systems, Nsan & Schocken, MIT Press, www.nand2tetrs.org, Chapter 6: Assembler slde Where we are at: Human Thought

More information

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration Improvement of Spatal Resoluton Usng BlockMatchng Based Moton Estmaton and Frame Integraton Danya Suga and Takayuk Hamamoto Graduate School of Engneerng, Tokyo Unversty of Scence, 6-3-1, Nuku, Katsuska-ku,

More information

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Proceedngs of the Wnter Smulaton Conference M E Kuhl, N M Steger, F B Armstrong, and J A Jones, eds A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Mark W Brantley Chun-Hung

More information

Parallel matrix-vector multiplication

Parallel matrix-vector multiplication Appendx A Parallel matrx-vector multplcaton The reduced transton matrx of the three-dmensonal cage model for gel electrophoress, descrbed n secton 3.2, becomes excessvely large for polymer lengths more

More information

Tuning of Fuzzy Inference Systems Through Unconstrained Optimization Techniques

Tuning of Fuzzy Inference Systems Through Unconstrained Optimization Techniques Tunng of Fuzzy Inference Systems Through Unconstraned Optmzaton Technques ROGERIO ANDRADE FLAUZINO, IVAN NUNES DA SILVA Department of Electrcal Engneerng State Unversty of São Paulo UNESP CP 473, CEP 733-36,

More information

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz Compler Desgn Sprng 2014 Regster Allocaton Sample Exercses and Solutons Prof. Pedro C. Dnz USC / Informaton Scences Insttute 4676 Admralty Way, Sute 1001 Marna del Rey, Calforna 90292 pedro@s.edu Regster

More information

Classifying Acoustic Transient Signals Using Artificial Intelligence

Classifying Acoustic Transient Signals Using Artificial Intelligence Classfyng Acoustc Transent Sgnals Usng Artfcal Intellgence Steve Sutton, Unversty of North Carolna At Wlmngton (suttons@charter.net) Greg Huff, Unversty of North Carolna At Wlmngton (jgh7476@uncwl.edu)

More information

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision

SLAM Summer School 2006 Practical 2: SLAM using Monocular Vision SLAM Summer School 2006 Practcal 2: SLAM usng Monocular Vson Javer Cvera, Unversty of Zaragoza Andrew J. Davson, Imperal College London J.M.M Montel, Unversty of Zaragoza. josemar@unzar.es, jcvera@unzar.es,

More information

Virtual Memory. Background. No. 10. Virtual Memory: concept. Logical Memory Space (review) Demand Paging(1) Virtual Memory

Virtual Memory. Background. No. 10. Virtual Memory: concept. Logical Memory Space (review) Demand Paging(1) Virtual Memory Background EECS. Operatng System Fundamentals No. Vrtual Memory Prof. Hu Jang Department of Electrcal Engneerng and Computer Scence, York Unversty Memory-management methods normally requres the entre process

More information

Shadowed Type-2 Fuzzy Logic Systems

Shadowed Type-2 Fuzzy Logic Systems Shadowed Type-2 Fuzzy Logc Systems Dumdu Wjayaseara, ndrej Lnda, Mlos Manc Unversty of daho daho Falls, D, US wja2589@vandals.udaho.edu, olndaczech@gmal.com, mso@eee.org bstract General Type-2 Fuzzy Logc

More information

Assembler. Shimon Schocken. Spring Elements of Computing Systems 1 Assembler (Ch. 6) Compiler. abstract interface.

Assembler. Shimon Schocken. Spring Elements of Computing Systems 1 Assembler (Ch. 6) Compiler. abstract interface. IDC Herzlya Shmon Schocken Assembler Shmon Schocken Sprng 2005 Elements of Computng Systems 1 Assembler (Ch. 6) Where we are at: Human Thought Abstract desgn Chapters 9, 12 abstract nterface H.L. Language

More information

Positive Semi-definite Programming Localization in Wireless Sensor Networks

Positive Semi-definite Programming Localization in Wireless Sensor Networks Postve Sem-defnte Programmng Localzaton n Wreless Sensor etworks Shengdong Xe 1,, Jn Wang, Aqun Hu 1, Yunl Gu, Jang Xu, 1 School of Informaton Scence and Engneerng, Southeast Unversty, 10096, anjng Computer

More information

Centroid Density of Interval Type-2 Fuzzy Sets: Comparing Stochastic and Deterministic Defuzzification

Centroid Density of Interval Type-2 Fuzzy Sets: Comparing Stochastic and Deterministic Defuzzification Centrod Densty of Interval Type-2 Fuzzy Sets: Comparng Stochastc and Determnstc Defuzzfcaton Ondrej Lnda, Mlos Manc Unversty of Idaho Idaho Falls, ID, US olnda@udaho.edu, msko@eee.org bstract Recently,

More information

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier Some materal adapted from Mohamed Youns, UMBC CMSC 611 Spr 2003 course sldes Some materal adapted from Hennessy & Patterson / 2003 Elsever Scence Performance = 1 Executon tme Speedup = Performance (B)

More information

Scheduling Remote Access to Scientific Instruments in Cyberinfrastructure for Education and Research

Scheduling Remote Access to Scientific Instruments in Cyberinfrastructure for Education and Research Schedulng Remote Access to Scentfc Instruments n Cybernfrastructure for Educaton and Research Je Yn 1, Junwe Cao 2,3,*, Yuexuan Wang 4, Lanchen Lu 1,3 and Cheng Wu 1,3 1 Natonal CIMS Engneerng and Research

More information

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data

A Fast Content-Based Multimedia Retrieval Technique Using Compressed Data A Fast Content-Based Multmeda Retreval Technque Usng Compressed Data Borko Furht and Pornvt Saksobhavvat NSF Multmeda Laboratory Florda Atlantc Unversty, Boca Raton, Florda 3343 ABSTRACT In ths paper,

More information

An Accurate Evaluation of Integrals in Convex and Non convex Polygonal Domain by Twelve Node Quadrilateral Finite Element Method

An Accurate Evaluation of Integrals in Convex and Non convex Polygonal Domain by Twelve Node Quadrilateral Finite Element Method Internatonal Journal of Computatonal and Appled Mathematcs. ISSN 89-4966 Volume, Number (07), pp. 33-4 Research Inda Publcatons http://www.rpublcaton.com An Accurate Evaluaton of Integrals n Convex and

More information

Parallel Inverse Halftoning by Look-Up Table (LUT) Partitioning

Parallel Inverse Halftoning by Look-Up Table (LUT) Partitioning Parallel Inverse Halftonng by Look-Up Table (LUT) Parttonng Umar F. Sddq and Sadq M. Sat umar@ccse.kfupm.edu.sa, sadq@kfupm.edu.sa KFUPM Box: Department of Computer Engneerng, Kng Fahd Unversty of Petroleum

More information

Lecture 5: Multilayer Perceptrons

Lecture 5: Multilayer Perceptrons Lecture 5: Multlayer Perceptrons Roger Grosse 1 Introducton So far, we ve only talked about lnear models: lnear regresson and lnear bnary classfers. We noted that there are functons that can t be represented

More information

(1) The control processes are too complex to analyze by conventional quantitative techniques.

(1) The control processes are too complex to analyze by conventional quantitative techniques. Chapter 0 Fuzzy Control and Fuzzy Expert Systems The fuzzy logc controller (FLC) s ntroduced n ths chapter. After ntroducng the archtecture of the FLC, we study ts components step by step and suggest a

More information

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS ARPN Journal of Engneerng and Appled Scences 006-017 Asan Research Publshng Network (ARPN). All rghts reserved. NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS Igor Grgoryev, Svetlana

More information

A Binarization Algorithm specialized on Document Images and Photos

A Binarization Algorithm specialized on Document Images and Photos A Bnarzaton Algorthm specalzed on Document mages and Photos Ergna Kavalleratou Dept. of nformaton and Communcaton Systems Engneerng Unversty of the Aegean kavalleratou@aegean.gr Abstract n ths paper, a

More information

Lobachevsky State University of Nizhni Novgorod. Polyhedron. Quick Start Guide

Lobachevsky State University of Nizhni Novgorod. Polyhedron. Quick Start Guide Lobachevsky State Unversty of Nzhn Novgorod Polyhedron Quck Start Gude Nzhn Novgorod 2016 Contents Specfcaton of Polyhedron software... 3 Theoretcal background... 4 1. Interface of Polyhedron... 6 1.1.

More information

Outline. Digital Systems. C.2: Gates, Truth Tables and Logic Equations. Truth Tables. Logic Gates 9/8/2011

Outline. Digital Systems. C.2: Gates, Truth Tables and Logic Equations. Truth Tables. Logic Gates 9/8/2011 9/8/2 2 Outlne Appendx C: The Bascs of Logc Desgn TDT4255 Computer Desgn Case Study: TDT4255 Communcaton Module Lecture 2 Magnus Jahre 3 4 Dgtal Systems C.2: Gates, Truth Tables and Logc Equatons All sgnals

More information

Wishing you all a Total Quality New Year!

Wishing you all a Total Quality New Year! Total Qualty Management and Sx Sgma Post Graduate Program 214-15 Sesson 4 Vnay Kumar Kalakband Assstant Professor Operatons & Systems Area 1 Wshng you all a Total Qualty New Year! Hope you acheve Sx sgma

More information

A NOTE ON FUZZY CLOSURE OF A FUZZY SET

A NOTE ON FUZZY CLOSURE OF A FUZZY SET (JPMNT) Journal of Process Management New Technologes, Internatonal A NOTE ON FUZZY CLOSURE OF A FUZZY SET Bhmraj Basumatary Department of Mathematcal Scences, Bodoland Unversty, Kokrajhar, Assam, Inda,

More information

AC : TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS

AC : TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS AC 2011-1615: TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS Nkunja Swan, South Carolna State Unversty Dr. Swan s currently a Professor at

More information

Chinese Word Segmentation based on the Improved Particle Swarm Optimization Neural Networks

Chinese Word Segmentation based on the Improved Particle Swarm Optimization Neural Networks Chnese Word Segmentaton based on the Improved Partcle Swarm Optmzaton Neural Networks Ja He Computatonal Intellgence Laboratory School of Computer Scence and Engneerng, UESTC Chengdu, Chna Department of

More information

Meta-heuristics for Multidimensional Knapsack Problems

Meta-heuristics for Multidimensional Knapsack Problems 2012 4th Internatonal Conference on Computer Research and Development IPCSIT vol.39 (2012) (2012) IACSIT Press, Sngapore Meta-heurstcs for Multdmensonal Knapsack Problems Zhbao Man + Computer Scence Department,

More information

Motivation. EE 457 Unit 4. Throughput vs. Latency. Performance Depends on View Point?! Computer System Performance. An individual user wants to:

Motivation. EE 457 Unit 4. Throughput vs. Latency. Performance Depends on View Point?! Computer System Performance. An individual user wants to: 4.1 4.2 Motvaton EE 457 Unt 4 Computer System Performance An ndvdual user wants to: Mnmze sngle program executon tme A datacenter owner wants to: Maxmze number of Mnmze ( ) http://e-tellgentnternetmarketng.com/webste/frustrated-computer-user-2/

More information

Research Article A Proposal to Speed up the Computation of the Centroid of an Interval Type-2 Fuzzy Set

Research Article A Proposal to Speed up the Computation of the Centroid of an Interval Type-2 Fuzzy Set Advances n Fuzzy Systems Volume 23, Artcle ID 58969, 7 pages http://dx.do.org/.55/23/58969 Research Artcle A Proposal to Speed up the Computaton of the Centrod of an Interval Type-2 Fuzzy Set Carlos E.

More information

Today s Outline. Sorting: The Big Picture. Why Sort? Selection Sort: Idea. Insertion Sort: Idea. Sorting Chapter 7 in Weiss.

Today s Outline. Sorting: The Big Picture. Why Sort? Selection Sort: Idea. Insertion Sort: Idea. Sorting Chapter 7 in Weiss. Today s Outlne Sortng Chapter 7 n Wess CSE 26 Data Structures Ruth Anderson Announcements Wrtten Homework #6 due Frday 2/26 at the begnnng of lecture Proect Code due Mon March 1 by 11pm Today s Topcs:

More information

Performance Evaluation of an ANFIS Based Power System Stabilizer Applied in Multi-Machine Power Systems

Performance Evaluation of an ANFIS Based Power System Stabilizer Applied in Multi-Machine Power Systems Performance Evaluaton of an ANFIS Based Power System Stablzer Appled n Mult-Machne Power Systems A. A GHARAVEISI 1,2 A.DARABI 3 M. MONADI 4 A. KHAJEH-ZADEH 5 M. RASHIDI-NEJAD 1,2,5 1. Shahd Bahonar Unversty

More information

FUZZY LOGIC FUNDAMENTALS

FUZZY LOGIC FUNDAMENTALS 3.fm Page 6 Monday, March 26, 200 0:8 AM C H A P T E R 3 FUZZY LOGIC FUNDAMENTALS 3. INTRODUCTION The past few years have wtnessed a rapd growth n the number and varety of applcatons of fuzzy logc (FL).

More information

Support Vector Machines

Support Vector Machines /9/207 MIST.6060 Busness Intellgence and Data Mnng What are Support Vector Machnes? Support Vector Machnes Support Vector Machnes (SVMs) are supervsed learnng technques that analyze data and recognze patterns.

More information

Vectorization of Image Outlines Using Rational Spline and Genetic Algorithm

Vectorization of Image Outlines Using Rational Spline and Genetic Algorithm 01 Internatonal Conference on Image, Vson and Computng (ICIVC 01) IPCSIT vol. 50 (01) (01) IACSIT Press, Sngapore DOI: 10.776/IPCSIT.01.V50.4 Vectorzaton of Image Outlnes Usng Ratonal Splne and Genetc

More information

Optimal Design of Nonlinear Fuzzy Model by Means of Independent Fuzzy Scatter Partition

Optimal Design of Nonlinear Fuzzy Model by Means of Independent Fuzzy Scatter Partition Optmal Desgn of onlnear Fuzzy Model by Means of Independent Fuzzy Scatter Partton Keon-Jun Park, Hyung-Kl Kang and Yong-Kab Km *, Department of Informaton and Communcaton Engneerng, Wonkwang Unversty,

More information

A fast algorithm for color image segmentation

A fast algorithm for color image segmentation Unersty of Wollongong Research Onlne Faculty of Informatcs - Papers (Arche) Faculty of Engneerng and Informaton Scences 006 A fast algorthm for color mage segmentaton L. Dong Unersty of Wollongong, lju@uow.edu.au

More information

Heterogeneous Parallel Computing: from Clusters of Workstations to Hierarchical Hybrid Platforms

Heterogeneous Parallel Computing: from Clusters of Workstations to Hierarchical Hybrid Platforms Heterogeneous Parallel Computng: from Clusters of Workstatons to Herarchcal Hybrd Platforms A.L. Lastovetsky 1 DOI: 10.14529/jsf140304 c The Author 2014. Ths paper s publshed wth open access at SuperFr.org

More information

Tsinghua University at TAC 2009: Summarizing Multi-documents by Information Distance

Tsinghua University at TAC 2009: Summarizing Multi-documents by Information Distance Tsnghua Unversty at TAC 2009: Summarzng Mult-documents by Informaton Dstance Chong Long, Mnle Huang, Xaoyan Zhu State Key Laboratory of Intellgent Technology and Systems, Tsnghua Natonal Laboratory for

More information

Area Efficient Self Timed Adders For Low Power Applications in VLSI

Area Efficient Self Timed Adders For Low Power Applications in VLSI ISSN(Onlne): 2319-8753 ISSN (Prnt) :2347-6710 Internatonal Journal of Innovatve Research n Scence, Engneerng and Technology (An ISO 3297: 2007 Certfed Organzaton) Area Effcent Self Tmed Adders For Low

More information

Research Article GPU Acceleration of Melody Accurate Matching in Query-by-Humming

Research Article GPU Acceleration of Melody Accurate Matching in Query-by-Humming e Scentfc World Journal, Artcle ID 614193, 7 pages http://dx.do.org/10.1155/2014/614193 Research Artcle GPU Acceleraton of Melody Accurate Matchng n Query-by-Hummng Lmn Xao, 1,2 Yao Zheng, 1,2,3 Wenq Tang,

More information

FPGA-based implementation of circular interpolation

FPGA-based implementation of circular interpolation Avalable onlne www.jocpr.com Journal of Chemcal and Pharmaceutcal Research, 04, 6(7):585-593 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 FPGA-based mplementaton of crcular nterpolaton Mngyu Gao,

More information

THE low-density parity-check (LDPC) code is getting

THE low-density parity-check (LDPC) code is getting Implementng the NASA Deep Space LDPC Codes for Defense Applcatons Wley H. Zhao, Jeffrey P. Long 1 Abstract Selected codes from, and extended from, the NASA s deep space low-densty party-check (LDPC) codes

More information

Enhanced AMBTC for Image Compression using Block Classification and Interpolation

Enhanced AMBTC for Image Compression using Block Classification and Interpolation Internatonal Journal of Computer Applcatons (0975 8887) Volume 5 No.0, August 0 Enhanced AMBTC for Image Compresson usng Block Classfcaton and Interpolaton S. Vmala Dept. of Comp. Scence Mother Teresa

More information

The Greedy Method. Outline and Reading. Change Money Problem. Greedy Algorithms. Applications of the Greedy Strategy. The Greedy Method Technique

The Greedy Method. Outline and Reading. Change Money Problem. Greedy Algorithms. Applications of the Greedy Strategy. The Greedy Method Technique //00 :0 AM Outlne and Readng The Greedy Method The Greedy Method Technque (secton.) Fractonal Knapsack Problem (secton..) Task Schedulng (secton..) Mnmum Spannng Trees (secton.) Change Money Problem Greedy

More information

Harvard University CS 101 Fall 2005, Shimon Schocken. Assembler. Elements of Computing Systems 1 Assembler (Ch. 6)

Harvard University CS 101 Fall 2005, Shimon Schocken. Assembler. Elements of Computing Systems 1 Assembler (Ch. 6) Harvard Unversty CS 101 Fall 2005, Shmon Schocken Assembler Elements of Computng Systems 1 Assembler (Ch. 6) Why care about assemblers? Because Assemblers employ some nfty trcks Assemblers are the frst

More information

Novel Fuzzy logic Based Edge Detection Technique

Novel Fuzzy logic Based Edge Detection Technique Novel Fuzzy logc Based Edge Detecton Technque Aborsade, D.O Department of Electroncs Engneerng, adoke Akntola Unversty of Tech., Ogbomoso. Oyo-state. doaborsade@yahoo.com Abstract Ths paper s based on

More information

Related-Mode Attacks on CTR Encryption Mode

Related-Mode Attacks on CTR Encryption Mode Internatonal Journal of Network Securty, Vol.4, No.3, PP.282 287, May 2007 282 Related-Mode Attacks on CTR Encrypton Mode Dayn Wang, Dongda Ln, and Wenlng Wu (Correspondng author: Dayn Wang) Key Laboratory

More information

Study on Fuzzy Models of Wind Turbine Power Curve

Study on Fuzzy Models of Wind Turbine Power Curve Proceedngs of the 006 IASME/WSEAS Internatonal Conference on Energy & Envronmental Systems, Chalkda, Greece, May 8-0, 006 (pp-7) Study on Fuzzy Models of Wnd Turbne Power Curve SHU-CHEN WANG PEI-HWA HUANG

More information

A Parallelization Design of JavaScript Execution Engine

A Parallelization Design of JavaScript Execution Engine , pp.171-184 http://dx.do.org/10.14257/mue.2014.9.7.15 A Parallelzaton Desgn of JavaScrpt Executon Engne Duan Huca 1,2, N Hong 2, Deng Feng 2 and Hu Lnln 2 1 Natonal Network New eda Engneerng Research

More information

Efficient Distributed File System (EDFS)

Efficient Distributed File System (EDFS) Effcent Dstrbuted Fle System (EDFS) (Sem-Centralzed) Debessay(Debsh) Fesehaye, Rahul Malk & Klara Naherstedt Unversty of Illnos-Urbana Champagn Contents Problem Statement, Related Work, EDFS Desgn Rate

More information

Concurrent Apriori Data Mining Algorithms

Concurrent Apriori Data Mining Algorithms Concurrent Apror Data Mnng Algorthms Vassl Halatchev Department of Electrcal Engneerng and Computer Scence York Unversty, Toronto October 8, 2015 Outlne Why t s mportant Introducton to Assocaton Rule Mnng

More information

Maintaining temporal validity of real-time data on non-continuously executing resources

Maintaining temporal validity of real-time data on non-continuously executing resources Mantanng temporal valdty of real-tme data on non-contnuously executng resources Tan Ba, Hong Lu and Juan Yang Hunan Insttute of Scence and Technology, College of Computer Scence, 44, Yueyang, Chna Wuhan

More information

Solving two-person zero-sum game by Matlab

Solving two-person zero-sum game by Matlab Appled Mechancs and Materals Onlne: 2011-02-02 ISSN: 1662-7482, Vols. 50-51, pp 262-265 do:10.4028/www.scentfc.net/amm.50-51.262 2011 Trans Tech Publcatons, Swtzerland Solvng two-person zero-sum game by

More information

Smoothing Spline ANOVA for variable screening

Smoothing Spline ANOVA for variable screening Smoothng Splne ANOVA for varable screenng a useful tool for metamodels tranng and mult-objectve optmzaton L. Rcco, E. Rgon, A. Turco Outlne RSM Introducton Possble couplng Test case MOO MOO wth Game Theory

More information

Distributed Resource Scheduling in Grid Computing Using Fuzzy Approach

Distributed Resource Scheduling in Grid Computing Using Fuzzy Approach Dstrbuted Resource Schedulng n Grd Computng Usng Fuzzy Approach Shahram Amn, Mohammad Ahmad Computer Engneerng Department Islamc Azad Unversty branch Mahallat, Iran Islamc Azad Unversty branch khomen,

More information

S1 Note. Basis functions.

S1 Note. Basis functions. S1 Note. Bass functons. Contents Types of bass functons...1 The Fourer bass...2 B-splne bass...3 Power and type I error rates wth dfferent numbers of bass functons...4 Table S1. Smulaton results of type

More information

Virtual Machine Migration based on Trust Measurement of Computer Node

Virtual Machine Migration based on Trust Measurement of Computer Node Appled Mechancs and Materals Onlne: 2014-04-04 ISSN: 1662-7482, Vols. 536-537, pp 678-682 do:10.4028/www.scentfc.net/amm.536-537.678 2014 Trans Tech Publcatons, Swtzerland Vrtual Machne Mgraton based on

More information

Learning the Kernel Parameters in Kernel Minimum Distance Classifier

Learning the Kernel Parameters in Kernel Minimum Distance Classifier Learnng the Kernel Parameters n Kernel Mnmum Dstance Classfer Daoqang Zhang 1,, Songcan Chen and Zh-Hua Zhou 1* 1 Natonal Laboratory for Novel Software Technology Nanjng Unversty, Nanjng 193, Chna Department

More information

BRDPHHC: A Balance RDF Data Partitioning Algorithm based on Hybrid Hierarchical Clustering

BRDPHHC: A Balance RDF Data Partitioning Algorithm based on Hybrid Hierarchical Clustering 015 IEEE 17th Internatonal Conference on Hgh Performance Computng and Communcatons (HPCC), 015 IEEE 7th Internatonal Symposum on Cyberspace Safety and Securty (CSS), and 015 IEEE 1th Internatonal Conf

More information

Fuzzy Model Identification Using Support Vector Clustering Method

Fuzzy Model Identification Using Support Vector Clustering Method Fuzzy Model Identfcaton Usng Support Vector Clusterng Method $\úhj OUçar, Yakup Demr, and Cüneyt * ]HOLú Electrcal and Electroncs Engneerng Department, Engneerng Faculty, ÕUDW Unversty, Elazg, Turkey agulucar@eee.org,ydemr@frat.edu.tr

More information

THE FUZZY GROUP METHOD OF DATA HANDLING WITH FUZZY INPUTS. Yuriy Zaychenko

THE FUZZY GROUP METHOD OF DATA HANDLING WITH FUZZY INPUTS. Yuriy Zaychenko 206 5 Knowledge Dalogue - Soluton THE FUZZY GROUP ETHOD OF DATA HANDLING WITH FUZZY INPUTS Yury Zaycheno Abstract: The problem of forecastng models constructng usng expermental data n terms of fuzzness,

More information

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching

A Fast Visual Tracking Algorithm Based on Circle Pixels Matching A Fast Vsual Trackng Algorthm Based on Crcle Pxels Matchng Zhqang Hou hou_zhq@sohu.com Chongzhao Han czhan@mal.xjtu.edu.cn Ln Zheng Abstract: A fast vsual trackng algorthm based on crcle pxels matchng

More information

Outline. Discriminative classifiers for image recognition. Where in the World? A nearest neighbor recognition example 4/14/2011. CS 376 Lecture 22 1

Outline. Discriminative classifiers for image recognition. Where in the World? A nearest neighbor recognition example 4/14/2011. CS 376 Lecture 22 1 4/14/011 Outlne Dscrmnatve classfers for mage recognton Wednesday, Aprl 13 Krsten Grauman UT-Austn Last tme: wndow-based generc obect detecton basc ppelne face detecton wth boostng as case study Today:

More information

Using Fuzzy Logic to Enhance the Large Size Remote Sensing Images

Using Fuzzy Logic to Enhance the Large Size Remote Sensing Images Internatonal Journal of Informaton and Electroncs Engneerng Vol. 5 No. 6 November 015 Usng Fuzzy Logc to Enhance the Large Sze Remote Sensng Images Trung Nguyen Tu Huy Ngo Hoang and Thoa Vu Van Abstract

More information

Local Quaternary Patterns and Feature Local Quaternary Patterns

Local Quaternary Patterns and Feature Local Quaternary Patterns Local Quaternary Patterns and Feature Local Quaternary Patterns Jayu Gu and Chengjun Lu The Department of Computer Scence, New Jersey Insttute of Technology, Newark, NJ 0102, USA Abstract - Ths paper presents

More information

Hybrid Non-Blind Color Image Watermarking

Hybrid Non-Blind Color Image Watermarking Hybrd Non-Blnd Color Image Watermarkng Ms C.N.Sujatha 1, Dr. P. Satyanarayana 2 1 Assocate Professor, Dept. of ECE, SNIST, Yamnampet, Ghatkesar Hyderabad-501301, Telangana 2 Professor, Dept. of ECE, AITS,

More information

CHAPTER 4 PARALLEL PREFIX ADDER

CHAPTER 4 PARALLEL PREFIX ADDER 93 CHAPTER 4 PARALLEL PREFIX ADDER 4.1 INTRODUCTION VLSI Integer adders fnd applcatons n Arthmetc and Logc Unts (ALUs), mcroprocessors and memory addressng unts. Speed of the adder often decdes the mnmum

More information

ELEC 377 Operating Systems. Week 6 Class 3

ELEC 377 Operating Systems. Week 6 Class 3 ELEC 377 Operatng Systems Week 6 Class 3 Last Class Memory Management Memory Pagng Pagng Structure ELEC 377 Operatng Systems Today Pagng Szes Vrtual Memory Concept Demand Pagng ELEC 377 Operatng Systems

More information

For instance, ; the five basic number-sets are increasingly more n A B & B A A = B (1)

For instance, ; the five basic number-sets are increasingly more n A B & B A A = B (1) Secton 1.2 Subsets and the Boolean operatons on sets If every element of the set A s an element of the set B, we say that A s a subset of B, or that A s contaned n B, or that B contans A, and we wrte A

More information

Wavefront Reconstructor

Wavefront Reconstructor A Dstrbuted Smplex B-Splne Based Wavefront Reconstructor Coen de Vsser and Mchel Verhaegen 14-12-201212 2012 Delft Unversty of Technology Contents Introducton Wavefront reconstructon usng Smplex B-Splnes

More information

X- Chart Using ANOM Approach

X- Chart Using ANOM Approach ISSN 1684-8403 Journal of Statstcs Volume 17, 010, pp. 3-3 Abstract X- Chart Usng ANOM Approach Gullapall Chakravarth 1 and Chaluvad Venkateswara Rao Control lmts for ndvdual measurements (X) chart are

More information

MARS: Still an Alien Planet in Soft Computing?

MARS: Still an Alien Planet in Soft Computing? MARS: Stll an Alen Planet n Soft Computng? Ajth Abraham and Dan Stenberg School of Computng and Informaton Technology Monash Unversty (Gppsland Campus), Churchll 3842, Australa Emal: ajth.abraham@nfotech.monash.edu.au

More information

FUZZY NEURAL NETWORK MODEL FOR MARK-UP ESTIMATION. Chao Li-Chung and Liu Min. School of Building and Real Estate, National University of Singapore,

FUZZY NEURAL NETWORK MODEL FOR MARK-UP ESTIMATION. Chao Li-Chung and Liu Min. School of Building and Real Estate, National University of Singapore, FUZZY NEURAL NETWORK ODEL FOR ARK-UP ESTIATION Chao L-Chung and Lu n School of Buldng and Real Estate, Natonal Unversty of Sngapore, Kent Rdge Crescent, Sngapore96 e-mal: brep994@nus.edu.sg) Abstract:

More information

CACHE MEMORY DESIGN FOR INTERNET PROCESSORS

CACHE MEMORY DESIGN FOR INTERNET PROCESSORS CACHE MEMORY DESIGN FOR INTERNET PROCESSORS WE EVALUATE A SERIES OF THREE PROGRESSIVELY MORE AGGRESSIVE ROUTING-TABLE CACHE DESIGNS AND DEMONSTRATE THAT THE INCORPORATION OF HARDWARE CACHES INTO INTERNET

More information

The Research of Support Vector Machine in Agricultural Data Classification

The Research of Support Vector Machine in Agricultural Data Classification The Research of Support Vector Machne n Agrcultural Data Classfcaton Le Sh, Qguo Duan, Xnmng Ma, Me Weng College of Informaton and Management Scence, HeNan Agrcultural Unversty, Zhengzhou 45000 Chna Zhengzhou

More information

Skew Angle Estimation and Correction of Hand Written, Textual and Large areas of Non-Textual Document Images: A Novel Approach

Skew Angle Estimation and Correction of Hand Written, Textual and Large areas of Non-Textual Document Images: A Novel Approach Angle Estmaton and Correcton of Hand Wrtten, Textual and Large areas of Non-Textual Document Images: A Novel Approach D.R.Ramesh Babu Pyush M Kumat Mahesh D Dhannawat PES Insttute of Technology Research

More information

Module Management Tool in Software Development Organizations

Module Management Tool in Software Development Organizations Journal of Computer Scence (5): 8-, 7 ISSN 59-66 7 Scence Publcatons Management Tool n Software Development Organzatons Ahmad A. Al-Rababah and Mohammad A. Al-Rababah Faculty of IT, Al-Ahlyyah Amman Unversty,

More information

The Shortest Path of Touring Lines given in the Plane

The Shortest Path of Touring Lines given in the Plane Send Orders for Reprnts to reprnts@benthamscence.ae 262 The Open Cybernetcs & Systemcs Journal, 2015, 9, 262-267 The Shortest Path of Tourng Lnes gven n the Plane Open Access Ljuan Wang 1,2, Dandan He

More information

Modeling, Manipulating, and Visualizing Continuous Volumetric Data: A Novel Spline-based Approach

Modeling, Manipulating, and Visualizing Continuous Volumetric Data: A Novel Spline-based Approach Modelng, Manpulatng, and Vsualzng Contnuous Volumetrc Data: A Novel Splne-based Approach Jng Hua Center for Vsual Computng, Department of Computer Scence SUNY at Stony Brook Talk Outlne Introducton and

More information

A SYSTOLIC APPROACH TO LOOP PARTITIONING AND MAPPING INTO FIXED SIZE DISTRIBUTED MEMORY ARCHITECTURES

A SYSTOLIC APPROACH TO LOOP PARTITIONING AND MAPPING INTO FIXED SIZE DISTRIBUTED MEMORY ARCHITECTURES A SYSOLIC APPROACH O LOOP PARIIONING AND MAPPING INO FIXED SIZE DISRIBUED MEMORY ARCHIECURES Ioanns Drosts, Nektaros Kozrs, George Papakonstantnou and Panayots sanakas Natonal echncal Unversty of Athens

More information

Accounting for the Use of Different Length Scale Factors in x, y and z Directions

Accounting for the Use of Different Length Scale Factors in x, y and z Directions 1 Accountng for the Use of Dfferent Length Scale Factors n x, y and z Drectons Taha Soch (taha.soch@kcl.ac.uk) Imagng Scences & Bomedcal Engneerng, Kng s College London, The Rayne Insttute, St Thomas Hosptal,

More information

An Application of Fuzzy c-means Clustering to FLC Design for Electric Ceramics Kiln

An Application of Fuzzy c-means Clustering to FLC Design for Electric Ceramics Kiln An Applcaton of cmeans Clusterng to FLC Desgn for lectrc Ceramcs Kln Watcharacha Wryasuttwong, Somphop Rodamporn lectrcal ngneerng Department, Faculty of ngneerng, Srnaharnwrot Unversty, Nahornnayo 6,

More information

Hierarchical clustering for gene expression data analysis

Hierarchical clustering for gene expression data analysis Herarchcal clusterng for gene expresson data analyss Gorgo Valentn e-mal: valentn@ds.unm.t Clusterng of Mcroarray Data. Clusterng of gene expresson profles (rows) => dscovery of co-regulated and functonally

More information

An Iterative Solution Approach to Process Plant Layout using Mixed Integer Optimisation

An Iterative Solution Approach to Process Plant Layout using Mixed Integer Optimisation 17 th European Symposum on Computer Aded Process Engneerng ESCAPE17 V. Plesu and P.S. Agach (Edtors) 2007 Elsever B.V. All rghts reserved. 1 An Iteratve Soluton Approach to Process Plant Layout usng Mxed

More information