A Sparse Shared-Memory Multifrontal Solver in SCAD Software

Size: px
Start display at page:

Download "A Sparse Shared-Memory Multifrontal Solver in SCAD Software"

Transcription

1 Proceeding of the International Multiconference on ISBN Computer Science and Information echnology, pp ISSN A Spare Shared-Memory Multifrontal Solver in SCAD Software Sergiy Fialko Cracow Univerity of echnology, Poland ul. Warzawka, 3-55 Cracow, Poland fialko@poczta.onet.pl Abtract A block-baed pare direct finite element olver for commonly ued multi-core and hared-memory multiproceor computer ha been developed. It i intended to olve linear equation et with pare ymmetrical matrice which appear in problem of tructural and olid mechanic. A tep-by-tep aembling procedure together with imultaneou elimination of fully aembled equation ditinguihe thi method from the well-known multifrontal olver, o thi approach can be interpreted a a generalization of the conventional frontal olver for an arbitrary reordering. hi olver i implemented in the commercial finite element oftware SCAD ( and it uage by numerou uer ha confirmed it efficiency and reliability. I. INRODUCION HE olver i baed on the idea of a tep-by-tep aembling of a given tructure out of eparate finite element and ubtructure obtained at the previou aembling tep, and a imultaneou elimination of the fully aembled equation. It i an evolution of the frontal olver [], and it differ from the claical multifrontal olver [][3] which i a purely algebraic olver and get the aembled global matrix in a compreed format a input data. he key ditinctive feature of the preented method are: Each node i aociated with a group of equation (uually, 6 equation per node for hell and pace frame finite element, and 3 equation per node for volumetric element in uncontrained node). hu, thi approach produce the natural aggregation of equation, in thi way improving the quality of reordering algorithm and peeding up the performance at the factorization tage. We refer to the elimination of a node of a finite element model at each elimination tep. It mean that a group of equation aociated with the given node will be eliminated. An object-oriented approach i applied. A front i a C++ cla object that encapulate eliminated node at the current elimination tep, a lit of node and a lit of equation for the current front, a pointer to the dene matrix which we denote a a frontal matrix, and o on. he whole elimination proce i performed on a equence of frontal matrice of the decreaing dimenionality. hi work wa upported by the oftware company SCAD Soft ( Key point of the method are decribed in []. he paper [5] preent an improved verion of the olver. he Choleky block factorization algorithm wa applied intead of a low-performance U factorization from [], and more efficient reordering algorithm comparing to [] were implemented. he current paper preent an extenion of thi olver onto the cla of multi-core and multiproceor hared-memory computer which are very popular today. he contemporary verion of the olver i implemented in SCAD one of the mot popular finite element oftware application for analyi and deign of building tructure in the Commonwealth of Independent State region. II. ANAYSIS SAGE A. Reordering and Symbolic Factorization Modern reordering algorithm have a heuritic nature and do not provide an exact olution of the nonzero entrie minimization problem. Moreover, we never know in advance what reordering trategy lead to the more optimal reult for a given problem. herefore everal reordering method have been developed. he mot efficient method for problem of tructural mechanic uually are the minimum degree algorithm MMD, the neted diection method ND, and the hybrid approach ND_MMD. he fat ymbolic factorization algorithm calculate the number of nonzero entrie for each method of the one lited above and then chooe the method that produce the leat number of nonzero entrie. he ue of a nodal adjacency graph intead of a graph of equation reduce the amount of data in a natural way and make the reordering algorithm and the ymbolic factorization procedure very fat: it take only a few econd even in very large problem (,000,000,000,000 equation) to check 3 reordering method and do the ymbolic factorization. B. A Proce Decriptor Data Structure he reordering method etablihe an order of the node elimination. he next tep i to define the order of the finite element aembling. he node i conidered fully aembled if all finite element, including thi very node, have been already coupled. Adding any of the remaining finite element doe not make any change in the coefficient of equation aociated with /08/$ IEEE 77

2 78 PROCEEDINGS OF HE IMCSI. VOUME 3, 008 thi node. So, all equation belonging to the fully aembled node hould be eliminated. et u conider a imple example, a quare plate with the meh x (Fig. ). Before tarting the elimination proce, the whole tructure i preented a exploded into eparate finite element. where ij i a 6x6 matrix block becaue we uppoe the deign model to have ix degree of freedom per node. he global node number (global indexe) are hown at the top. he firt block column contain the fully aembled equation. he partial factorization, covering only fully aembled equation, i then performed and the fully decompoed part of matrix i moved to a pecial buffer that contain the fully factorized global matrix. he remaining part of the matrix i an incomplete front; it will wait to be ued at the following factorization tep. ocal indexe are ued during the partial factorization. Matrix () i a frontal matrix. In the ame way the node 3, 7, 9 are eliminated, and their repective incomplete front are created. During the elimination of node all finite element have been already involved, and now we look through the lit of global indexe in the incomplete front. Node i preent in the global indexe of previou (incomplete) front, (able I), o we mut aemble incomplete front, to obtain a frontal matrix containing fully aembled equation for node. hi proce i illutrated by able I which how a proce decriptor data tructure. he number of elimination tep i equal to the number of node of the deign model. Fig. Square plate x he equence of nodal elimination produced by the reordering algorithm i:, 3, 7, 9,, 6, 8,, 5. Node i the firt node to be eliminated. hi node belong only to finite element. So, we take the finite element and node a fully aembled. he repective finite element matrix will be: , () We earch for the node to be eliminated in the lit of node of each remaining finite element and in the lit of global indexe for each of the previou front. he front from the preceding elimination tep, which contain thi eliminated node number, are the previou front. he previou front and their correponding finite element, pointed to by the lat column of able I, hould be aembled to obtain the frontal matrix for the current front. C. Frontal ree he proce decriptor data tructure allow u to create a frontal tree. We take the lat front from the bottom of able I (it i Front 9) and put it at the top of the frontal tree (Fig. ). Front 8 i the previou front for Front 9 we put it under Front 9. For Front 8, Front 7 i it previou one we put Front 7 under Front 8. And o on. We reorder the front to reduce the torage memory required for incomplete front. he new front number are hown in italic under the original front number. ABE I. A PROCESS DESCRIPOR DAA SRUCURE No. of front, elimination tep Node being eliminated it of node in the frontal matrix it of previou front it of FE fed to the aembling,,,5 3 3,6,5, 3 7 7,,5, ,8,5,6 5,,5,6, 6 6 6,8,5, 5, 7 8 8,5, 6,3 8,

3 SERGIY FIAKO: A SPARSE SHARED-MEMORY MUIFRONA SOVER IN SCAD SOFWARE 79 he frontal tree conit of (a) nodal front which have more than one previou front, (b) equential front which have only one previou front, and (c) tart front which do not have any previou front. he core memory i allocated dynamically for object of the nodal and tart front. Each equential front inherit the addre of the frontal buffer from it previou front thi help avoid the time-conuming memory allocation and copying of incomplete front. Moreover, if the equence of equential front doe not have any aembled finite element, it i poible to conolidate uch front to enlarge the block ize of fully aembled equation and improve the performance. he conolidated frontal tree i preented in Fig. 3. III. FACORIZAION OF FRONA MARIX Generally, the tructure of the frontal matrix can be very complex (Fig. ). he matrix i ymmetrical, and only the lower triangle part of it i tored in RAM. he fully aembled equation (grayed) are tored continuouly but in arbitrary part of the matrix (not necearily at the top). hi peculiarity retrict the direct application of the popular apack high-performance package (inpack, BAS) and force u to develop our own high-performance oftware for factorization in frontal matrice. Fig. 3 Conolidated frontal tree hu, a Choleky block method ha been developed, which i a generalization of the frontal elimination approach [], [], where the fully aembled equation are tored in arbitrary part of the matrix, onto the block verion. It allow u to achieve the BAS level 3 performance. Fig. A frontal tree he buffer for toring the incomplete front (BuffFront), allocated in the core memory, i virtualized. When the ize of the model exceed the capacity of the random acce memory (RAM), the buffer for the incomplete front i uploaded to hard dik. If all required previou front are in RAM during the aembling of the current nodal front, they are taken from BuffFront. Otherwie, the previou front are taken from hard dik. he BuffFront i compreed from time to time to get rid of low I/O operation during virtualization. he preented method i a ubtructure-by-ubtructure approach, becaue each front preent a collection of coupled finite element a ubtructure, and the elimination proce conit of a tep-by-tep aembling of thee ubtructure and a imultaneou elimination of fully aembled equation. A W B = A W B I 0 0 B W C W F W S B W = C I I 0 0 W W 0 0 I where W, F, W are block of fully aembled equation, A, B, C are block of partially aembled equation, which make up an incomplete front (Fig. 5) after the partial Choleky factorization, A 0 (3) B C he ign diagonal I, S, I allow one to generalize the claic Choleky factorization method onto a cla of problem with indefinite matrice. he ymbol mean that the ()

4 80 PROCEEDINGS OF HE IMCSI. VOUME 3, 008 correponding matrix block i modified during the partial factorization. he fully aembled block are moved to the buffer for the decompoed part of the matrix, and next the factorization of it i performed in the addre pace of thi buffer. Fig. he general tructure of a frontal matrix. he fully aembled equation are moved to a buffer for the decompoed matrix he incomplete front conit of ector A, B, C. he ymmetrical torage cheme i ued. he coefficient of ector A remain in their poition, ector B move up, and ector C move up and to the left by the width of the grey trip. he final tructure of the incomplete front i preented in Fig. 5. he partial block factorization i performed in everal tep: Factorize block F: F Update block W, W : S W = W S W = W = S () W W (5) Fig. 5 he tructure of the frontal matrix after the partial factorization. An empty trip appear at the bottom of matrix. Update ector A, B, C: A = A W S B = B W S C = C W S W W W Expreion () (6) are derived from () by mean of the block matrix multiplication. Fig., 5 help u to undertand the tructure of the frontal matrix. he main idea of the generalized Choleky block factorization method i imilar to the Gau block elimination approach, reorganized to ue the level 3 BAS [0]. A particular cae where a fully aembled part i at the top of the frontal matrix i preented in [5]. Matrix F ha a mall dimenionality, o there i no problem to tore all matrix multiplier () in the proceor cache and achieve a peak performance at thi tage. Stage (5) i a forward reduction performed on the package of right-hand ide it i poible to achieve a good performance here, too. he procedure that conume mot of the time i Stage (6). Each matrix multiplier W, W i divided into maller block, and the block matrix multiplication enure the level 3 BAS. IV. PARAE IMPEMENAION IN FRONA MARIX he bottleneck in the multi-core and multiproceor hared-memory computing ytem i an inufficient bandwidth of the ytem bu which lead to a weak peedup a the number of proceor grow. A typical dependence for the peedup parameter, S p = / p, where i a computing time on one proceor, p i that on p proceor, for algorithm where the performance factor q (matrixvector multiplication, non-block matrix-matrix multiplication) i preented in Fig. 6. he performance factor i q = f/m where f i the number of arithmetic operation for a given algorithm and m i the number of data tranfer between RAM and the proceor cache. A totally different dependence take place on the ame computer for the block matrix-by-matrix multiplication; here q M where M i the cache ize (fig. 7). So, it i poible to achieve an efficient peedup for computer with an inufficient bandwidth of the ytem bu by increaing the number of proceor for level 3 BAS algorithm, where (6) q M, becaue thee algorithm ue ignificantly fewer RAM cache RAM tranaction per ingle arithmetic operation than the algorithm where q. he reult preented in Fig. 6 through 8 have been obtained by pecial tet prepared by the author. herefore the main attention during the development of the parallel code i paid to the Choleky block factorization in the frontal matrix and the fork-joint parallelization technique, which i ued mainly at the tage 6 during the block matrix-by-matrix multiplication.

5 SERGIY FIAKO: A SPARSE SHARED-MEMORY MUIFRONA SOVER IN SCAD SOFWARE 8 he Microoft Viual Studio 008 environment (the C++ language for mot of the code and the C language for bottleneck fragment of the code in order to achieve a peak efficiency by compiler optimization) with the OpenMP upport i ued. All program code, including the factorization of frontal matrix, wa developed by the author. he local reordering of equation performed in the frontal matrix for the nodal and tart front allow u to reduce the amount of time-conuming operation of moving ector B, C block and thu increae the performance of method (Fig. 8). Fig. 8. Sp = / p v. number of proceor p for factorization of frontal matrice. race perfect peedup, trace local front not reordered, trace 3 reordered front. Fig. 6. Sp = / p v. number of proceor p for algorithm where the performance factor q For intance, in the example of Fig. the order of node proceing for front 7 (tab. I) mut be 5,, 8 rather than 8, 5,, becaue thi numbering enure that at each front elimination tep the fully aembled equation tay at the bottom of the matrix and no moving of incomplete front i required. ypical dependencie S p = / p v. the number of proceor p for factorization of frontal matrice for preented method are hown in Fig. 8. he total time of factorization for all frontal matrice i under conideration. An eential improvement of performance occur when the local reordering of equation in frontal matrice i performed (the dahed curve correpond to local reordering and olid curve to no local reordering). Fig. 7. Sp = / p v. number of proceor p for algorithm where the performance factor q M / We reorder the frontal node according to the equence of global reordering and then take the revere order each eliminated node occur at the end of the node lit. It enure uch a tructure of the frontal matrix that the fully aembled equation are at the bottom and no moving of incomplete front i required (only ector A i hown in the figure, ector B, C are omitted). V. NUMERICA RESUS All reult preented further below have been obtained on the computer Intel Core Quad CPU GHz, cache x: 3 KB (code), x: 3 KB (data), x:096 KB, random-acce memory DDR 800 MHz GB, operating ytem Window XP Profeional. D. et A cube with the meh 0x0x0 coniting of brick volumetric finite element i conidered. Four corner node of the bottom face are retrained. hi model comprie 68 9 node, finite element, equation; the whole model i tored in RAM. he analyi tage, which include reordering, ymbolic factorization, creation of the proce decriptor data tructure, reordering and conolidation of the frontal tree, i performed a a erial computation. he computing time i 3. he olution tage, including forward backward reduction, take. he parallel computing tage cover only the factorization of frontal matrice

6 8 PROCEEDINGS OF HE IMCSI. VOUME 3, 008 and take a predominant part of the whole time required by the numerical factorization tage (able II). he factorized matrix, a well a the buffer for incomplete front, i tored in RAM, and due to thi fact the peedup parameter on four proceor i about 3.0. It i a good reult for multi-core and hared-memory office computer. For problem of tructural mechanic olved by finite element oftware baed on the Intel Math Kernel ibrary (PARDISO olver [5]), the peedup parameter on four proceor i about.9. ABE II. IME OF NUMERICA FACORIZAION FOR CUBE 0X0X0 Number of proceor 3 Numerical factorization p, S p = / p However, the PARDISO olver work only with the core memory, o it capabilitie are retricted to problem of relatively mall dimenion. B. et A quare plate with two mehe 00x00 and 800x800 i conidered. A quadrilateral flat hell finite element i ued. he time of numerical factorization wa compared with that for the pare direct olver from ANSYS v.0. he firt problem (meh 00x00, able III) contain equation and the econd one (meh 800x800, able IV) contain i tored on hard dik, and virtualization i ued for the buffer that contain incomplete front. he calability i weak the peedup parameter on four proceor i about.9. he ize of the factorized matrix i 9 73 MB. C. et 3 he deign model of a multitory building complex i preented in Fig. 9. he number of equation i 53 67, the ize of the factorized global matrix i MB, the numerical factorization time on four proceor i 860 ec. he dik memory i ued for virtualization of the factorized matrix a well a for virtualization of the buffer where the incomplete front are tored. et A demontrate that the calability of the preented method for multi-core and multiproceor office computer i imilar to the calability of the pare direct olver baed on Intel Math Kernel ibrary when the dimenionality of the model permit to ue only the core memory. et B prove that the performance of our olver i imilar to the performance of the conventional multifrontal olver from the wellknown ANSYS oftware. In addition, tet B how that the preented olver work very efficiently with the core memory. et C illutrate that the preented method olve a really large finite element problem of tructural mechanic very efficiently. ABE III. IME OF NUMERICA FACORIZAION FOR PAE 00X00 Number of proceor Numerical factorization for ANSYS v..0, Numerical factorization for preented olver, 6 5 ABE IV. IME OF NUMERICA FACORIZAION FOR PAE 800X800 Number of proceor Numerical factorization with ANSYS v..0, failed failed failed Numerical factorization with the preented olver, For the firt model (meh 00x00), our olver tore the factorized matrix on hard dik, but the buffer for incomplete front i tored in the core memory. Due to virtualization of the factorized matrix, the calability i wore comparing to the previou model the peedup parameter on four proceor i about.9. he performance demontrated by both the pare direct olver from ANSYS v..0 and our olver i about the ame. For the econd model (meh 800x800), the olver from ANSYS v..0 failed due to inufficient RAM. Reult for our olver are preented in able IV. he factorized matrix Fig. 9. Finite element model of a multitory complex Mocow-city, node, finite element, equation

7 SERGIY FIAKO: A SPARSE SHARED-MEMORY MUIFRONA SOVER IN SCAD SOFWARE 83 VI. CONCUSION A block-baed pare direct multifrontal olver for finite element problem of tructural and olid mechanic ha been developed. hi method i oriented mainly at the uage on common hared-memory multiproceor and multi-core computer. he propoed olver ha a clear mechanical interpretation a a ubtructure-by-ubtructure method. It ue the modern reordering algorithm which effectively reduce the fill-in. he Choleky block algorithm with a generalization onto the cla of indefinite matrice i applied here to the factorization of frontal matrix. he complicated tructure of the frontal matrix retrict the direct application of the BAS high-performance package and force u to develop our own high-performance code baed on a ubdiviion of the frontal matrix into block. he OpenMP technique i applied to produce a fork-joint parallelization. he block ubdiviion and an appropriate numbering of equation in the frontal matrix, which reduce the amount of low-performance moving operation, allow u to improve the calability of the method. A comparion with the pare direct olver from ANSYS v.0 demontrate that the performance of the propoed olver i cloe to the performance of ANSYS, but the propoed olver allow u to olve eentially larger problem on the ame computer than the ANSYS olver i capable of proceing. he reliability and efficiency of the propoed olver ha been confirmed by numerou uer of the SCAD commercial oftware. REFERENCES [] B. M. Iron, A frontal olution program for finite-element analyi, International Journal for Numerical Method in Engineering,, pp. 5 3, 970. [] I. S. Duff, J. K. Reid, he multifrontal olution of indefinite pare ymmetric linear ytem, ACM ranaction on Mathematical Software, 9, pp , 983 [3] F. Dobrian, A. Pothen, Oblio: a pare direct olver library for erial and parallel computation, echnical Report decribing the OBIO oftware library, 000. [] S. Yu. Fialko, Stre-Strain Analyi of hin-walled Shell with Maive Rib, Int. App. Mech., 0, N, pp. 3 39, 00. [5] S. Yu. Fialko, A block pare direct multifrontal olver in SCAD oftware, in Proc. of the CMM-005 Computer Method in Mechanic June -, 005, Czetochowa, Poland, pp [6] A. George, J. W.-H. iu, he Evolution of the Minimum Degree Ordering Algorithm, SIAM Rev., 3, March, pp. -9, 989. [7] A. George, J. W.-H. iu, Computer olution of pare poitive definite ytem, New Jerey : Prentice-Hall, Inc. Englewood Cliff, 98, ch. 8. [8] C. Ahcraft, J. W.-H. iu, Robut Ordering of Spare Matrice Uing Multiection, echnical Report CS 96-0, Department of Computer Science, York Univerity, Ontario, Canada, 996. [9] A. George, J. W.-H. iu, Computer olution of pare poitive definite ytem, New Jerey : Prentice-Hall, Inc. Englewood Cliff, 98, ch. 5. [0] J. W. Demmel, Applied Numerical inear Algebra. SIAM, Philadellphia, 997, ch.. [] A. Kumbhar, K. Chakravarthy, R. Kehavamurthy, G. V. Rao, Utilization of Parallel Solver ibrarie to olve Structural and Fluid problem, White paper by Crane Software, oftware/product/amo-na/eng/37366.htm. [] N. I. M. Gould, Y. Hu, J. A. Scott, A numerical evaluation of pare direct olver for the olution of large pare, ymmetric linear ytem of equation, echnical report RA-R , Rutherford Appleton aboratory, 005. [3] O. Schenk, K. Gartner, On fat factorization pivoting method for pare ymmetric indefinite ytem, echnical Report CS-00-00, Department of Computer Science, Univerity of Bael, Switzerland, 00. [] O. Schenk, K. Gartner, Solving unymmetric pare ytem of linear equation with PARDISO, Journal of Future Generation Computer Sytem, 0(3), 75 87, 00. [5] O. Schenk, K. Gartner, W. Fichtner. Efficient pare U factorization with left-right looking trategy on hared memory multiproceor, BI, 0(), 58 76, 000.

Laboratory Exercise 6

Laboratory Exercise 6 Laboratory Exercie 6 Adder, Subtractor, and Multiplier The purpoe of thi exercie i to examine arithmetic circuit that add, ubtract, and multiply number. Each type of circuit will be implemented in two

More information

Hassan Ghaziri AUB, OSB Beirut, Lebanon Key words Competitive self-organizing maps, Meta-heuristics, Vehicle routing problem,

Hassan Ghaziri AUB, OSB Beirut, Lebanon Key words Competitive self-organizing maps, Meta-heuristics, Vehicle routing problem, COMPETITIVE PROBABIISTIC SEF-ORGANIZING MAPS FOR ROUTING PROBEMS Haan Ghaziri AUB, OSB Beirut, ebanon ghaziri@aub.edu.lb Abtract In thi paper, we have applied the concept of the elf-organizing map (SOM)

More information

Operational Semantics Class notes for a lecture given by Mooly Sagiv Tel Aviv University 24/5/2007 By Roy Ganor and Uri Juhasz

Operational Semantics Class notes for a lecture given by Mooly Sagiv Tel Aviv University 24/5/2007 By Roy Ganor and Uri Juhasz Operational emantic Page Operational emantic Cla note for a lecture given by Mooly agiv Tel Aviv Univerity 4/5/7 By Roy Ganor and Uri Juhaz Reference emantic with Application, H. Nielon and F. Nielon,

More information

Universität Augsburg. Institut für Informatik. Approximating Optimal Visual Sensor Placement. E. Hörster, R. Lienhart.

Universität Augsburg. Institut für Informatik. Approximating Optimal Visual Sensor Placement. E. Hörster, R. Lienhart. Univerität Augburg à ÊÇÅÍÆ ËÀǼ Approximating Optimal Viual Senor Placement E. Hörter, R. Lienhart Report 2006-01 Januar 2006 Intitut für Informatik D-86135 Augburg Copyright c E. Hörter, R. Lienhart Intitut

More information

Distributed Packet Processing Architecture with Reconfigurable Hardware Accelerators for 100Gbps Forwarding Performance on Virtualized Edge Router

Distributed Packet Processing Architecture with Reconfigurable Hardware Accelerators for 100Gbps Forwarding Performance on Virtualized Edge Router Ditributed Packet Proceing Architecture with Reconfigurable Hardware Accelerator for 100Gbp Forwarding Performance on Virtualized Edge Router Satohi Nihiyama, Hitohi Kaneko, and Ichiro Kudo Abtract To

More information

(12) Patent Application Publication (10) Pub. No.: US 2003/ A1

(12) Patent Application Publication (10) Pub. No.: US 2003/ A1 US 2003O196031A1 (19) United State (12) Patent Application Publication (10) Pub. No.: US 2003/0196031 A1 Chen (43) Pub. Date: Oct. 16, 2003 (54) STORAGE CONTROLLER WITH THE DISK Related U.S. Application

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES05 Analyi and Deign of Engineering Sytem: Lab : An Introductory Tutorial: Getting Started with SIMULINK What i SIMULINK? SIMULINK i a oftware package for modeling, imulating, and analyzing dynamic ytem.

More information

Keywords Cloud Computing, Service Level Agreements (SLA), CloudSim, Monitoring & Controlling SLA Agent, JADE

Keywords Cloud Computing, Service Level Agreements (SLA), CloudSim, Monitoring & Controlling SLA Agent, JADE Volume 5, Iue 8, Augut 2015 ISSN: 2277 128X International Journal of Advanced Reearch in Computer Science and Software Engineering Reearch Paper Available online at: www.ijarce.com Verification of Agent

More information

Stress-Blended Eddy Simulation (SBES) - A new Paradigm in hybrid RANS-LES Modeling

Stress-Blended Eddy Simulation (SBES) - A new Paradigm in hybrid RANS-LES Modeling Stre-Blended Eddy Simulation (SBES) - A new Paradigm in hybrid RANS-LES Modeling Menter F.R. ANSYS Germany GmbH Introduction It i oberved in many CFD imulation that RANS model how inherent technology limitation

More information

Advanced Encryption Standard and Modes of Operation

Advanced Encryption Standard and Modes of Operation Advanced Encryption Standard and Mode of Operation G. Bertoni L. Breveglieri Foundation of Cryptography - AES pp. 1 / 50 AES Advanced Encryption Standard (AES) i a ymmetric cryptographic algorithm AES

More information

Laboratory Exercise 6

Laboratory Exercise 6 Laboratory Exercie 6 Adder, Subtractor, and Multiplier a a The purpoe of thi exercie i to examine arithmetic circuit that add, ubtract, and multiply number. Each b c circuit will be decribed in Verilog

More information

else end while End References

else end while End References 621-630. [RM89] [SK76] Roenfeld, A. and Melter, R. A., Digital geometry, The Mathematical Intelligencer, vol. 11, No. 3, 1989, pp. 69-72. Sklanky, J. and Kibler, D. F., A theory of nonuniformly digitized

More information

Routing Definition 4.1

Routing Definition 4.1 4 Routing So far, we have only looked at network without dealing with the iue of how to end information in them from one node to another The problem of ending information in a network i known a routing

More information

Planning of scooping position and approach path for loading operation by wheel loader

Planning of scooping position and approach path for loading operation by wheel loader 22 nd International Sympoium on Automation and Robotic in Contruction ISARC 25 - September 11-14, 25, Ferrara (Italy) 1 Planning of cooping poition and approach path for loading operation by wheel loader

More information

AUTOMATIC TEST CASE GENERATION USING UML MODELS

AUTOMATIC TEST CASE GENERATION USING UML MODELS Volume-2, Iue-6, June-2014 AUTOMATIC TEST CASE GENERATION USING UML MODELS 1 SAGARKUMAR P. JAIN, 2 KHUSHBOO S. LALWANI, 3 NIKITA K. MAHAJAN, 4 BHAGYASHREE J. GADEKAR 1,2,3,4 Department of Computer Engineering,

More information

DAROS: Distributed User-Server Assignment And Replication For Online Social Networking Applications

DAROS: Distributed User-Server Assignment And Replication For Online Social Networking Applications DAROS: Ditributed Uer-Server Aignment And Replication For Online Social Networking Application Thuan Duong-Ba School of EECS Oregon State Univerity Corvalli, OR 97330, USA Email: duongba@eec.oregontate.edu

More information

A Fast Association Rule Algorithm Based On Bitmap and Granular Computing

A Fast Association Rule Algorithm Based On Bitmap and Granular Computing A Fat Aociation Rule Algorithm Baed On Bitmap and Granular Computing T.Y.Lin Xiaohua Hu Eric Louie Dept. of Computer Science College of Information Science IBM Almaden Reearch Center San Joe State Univerity

More information

Cutting Stock by Iterated Matching. Andreas Fritsch, Oliver Vornberger. University of Osnabruck. D Osnabruck.

Cutting Stock by Iterated Matching. Andreas Fritsch, Oliver Vornberger. University of Osnabruck. D Osnabruck. Cutting Stock by Iterated Matching Andrea Fritch, Oliver Vornberger Univerity of Onabruck Dept of Math/Computer Science D-4909 Onabruck andy@informatikuni-onabrueckde Abtract The combinatorial optimization

More information

Course Project: Adders, Subtractors, and Multipliers a

Course Project: Adders, Subtractors, and Multipliers a In the name Allah Department of Computer Engineering 215 Spring emeter Computer Architecture Coure Intructor: Dr. Mahdi Abbai Coure Project: Adder, Subtractor, and Multiplier a a The purpoe of thi p roject

More information

Quadrilaterals. Learning Objectives. Pre-Activity

Quadrilaterals. Learning Objectives. Pre-Activity Section 3.4 Pre-Activity Preparation Quadrilateral Intereting geometric hape and pattern are all around u when we tart looking for them. Examine a row of fencing or the tiling deign at the wimming pool.

More information

A SIMPLE IMPERATIVE LANGUAGE THE STORE FUNCTION NON-TERMINATING COMMANDS

A SIMPLE IMPERATIVE LANGUAGE THE STORE FUNCTION NON-TERMINATING COMMANDS A SIMPLE IMPERATIVE LANGUAGE Eventually we will preent the emantic of a full-blown language, with declaration, type and looping. However, there are many complication, o we will build up lowly. Our firt

More information

Key Terms - MinMin, MaxMin, Sufferage, Task Scheduling, Standard Deviation, Load Balancing.

Key Terms - MinMin, MaxMin, Sufferage, Task Scheduling, Standard Deviation, Load Balancing. Volume 3, Iue 11, November 2013 ISSN: 2277 128X International Journal of Advanced Reearch in Computer Science and Software Engineering Reearch Paper Available online at: www.ijarce.com Tak Aignment in

More information

Compressed Sensing Image Processing Based on Stagewise Orthogonal Matching Pursuit

Compressed Sensing Image Processing Based on Stagewise Orthogonal Matching Pursuit Senor & randucer, Vol. 8, Iue 0, October 204, pp. 34-40 Senor & randucer 204 by IFSA Publihing, S. L. http://www.enorportal.com Compreed Sening Image Proceing Baed on Stagewie Orthogonal Matching Puruit

More information

Floating Point CORDIC Based Power Operation

Floating Point CORDIC Based Power Operation Floating Point CORDIC Baed Power Operation Kazumi Malhan, Padmaja AVL Electrical and Computer Engineering Department School of Engineering and Computer Science Oakland Univerity, Rocheter, MI e-mail: kmalhan@oakland.edu,

More information

A METHOD OF REAL-TIME NURBS INTERPOLATION WITH CONFINED CHORD ERROR FOR CNC SYSTEMS

A METHOD OF REAL-TIME NURBS INTERPOLATION WITH CONFINED CHORD ERROR FOR CNC SYSTEMS Vietnam Journal of Science and Technology 55 (5) (017) 650-657 DOI: 10.1565/55-518/55/5/906 A METHOD OF REAL-TIME NURBS INTERPOLATION WITH CONFINED CHORD ERROR FOR CNC SYSTEMS Nguyen Huu Quang *, Banh

More information

The Data Locality of Work Stealing

The Data Locality of Work Stealing The Data Locality of Work Stealing Umut A. Acar School of Computer Science Carnegie Mellon Univerity umut@c.cmu.edu Guy E. Blelloch School of Computer Science Carnegie Mellon Univerity guyb@c.cmu.edu Robert

More information

Increasing Throughput and Reducing Delay in Wireless Sensor Networks Using Interference Alignment

Increasing Throughput and Reducing Delay in Wireless Sensor Networks Using Interference Alignment Int. J. Communication, Network and Sytem Science, 0, 5, 90-97 http://dx.doi.org/0.436/ijcn.0.50 Publihed Online February 0 (http://www.scirp.org/journal/ijcn) Increaing Throughput and Reducing Delay in

More information

The Association of System Performance Professionals

The Association of System Performance Professionals The Aociation of Sytem Performance Profeional The Computer Meaurement Group, commonly called CMG, i a not for profit, worldwide organization of data proceing profeional committed to the meaurement and

More information

Performance Evaluation of an Advanced Local Search Evolutionary Algorithm

Performance Evaluation of an Advanced Local Search Evolutionary Algorithm Anne Auger and Nikolau Hanen Performance Evaluation of an Advanced Local Search Evolutionary Algorithm Proceeding of the IEEE Congre on Evolutionary Computation, CEC 2005 c IEEE Performance Evaluation

More information

Image authentication and tamper detection using fragile watermarking in spatial domain

Image authentication and tamper detection using fragile watermarking in spatial domain International Journal of Advanced Reearch in Computer Engineering & Technology (IJARCET) Volume 6, Iue 7, July 2017, ISSN: 2278 1323 Image authentication and tamper detection uing fragile watermarking

More information

See chapter 8 in the textbook. Dr Muhammad Al Salamah, Industrial Engineering, KFUPM

See chapter 8 in the textbook. Dr Muhammad Al Salamah, Industrial Engineering, KFUPM Goal programming Objective of the topic: Indentify indutrial baed ituation where two or more objective function are required. Write a multi objective function model dla a goal LP Ue weighting um and preemptive

More information

Laboratory Exercise 6

Laboratory Exercise 6 Laboratory Exercie 6 Adder, Subtractor, and Multiplier The purpoe of thi exercie i to examine arithmetic circuit that add, ubtract, and multiply number. Each circuit will be decribed in Verilog and implemented

More information

Performance of a Robust Filter-based Approach for Contour Detection in Wireless Sensor Networks

Performance of a Robust Filter-based Approach for Contour Detection in Wireless Sensor Networks Performance of a Robut Filter-baed Approach for Contour Detection in Wirele Senor Network Hadi Alati, William A. Armtrong, Jr., and Ai Naipuri Department of Electrical and Computer Engineering The Univerity

More information

3D SMAP Algorithm. April 11, 2012

3D SMAP Algorithm. April 11, 2012 3D SMAP Algorithm April 11, 2012 Baed on the original SMAP paper [1]. Thi report extend the tructure of MSRF into 3D. The prior ditribution i modified to atify the MRF property. In addition, an iterative

More information

1 The secretary problem

1 The secretary problem Thi i new material: if you ee error, pleae email jtyu at tanford dot edu 1 The ecretary problem We will tart by analyzing the expected runtime of an algorithm, a you will be expected to do on your homework.

More information

A New Approach to Pipeline FFT Processor

A New Approach to Pipeline FFT Processor A ew Approach to Pipeline FFT Proceor Shouheng He and Mat Torkelon Department of Applied Electronic, Lund Univerity S- Lund, SWEDE email: he@tde.lth.e; torkel@tde.lth.e Abtract A new VLSI architecture

More information

Shortest Paths with Single-Point Visibility Constraint

Shortest Paths with Single-Point Visibility Constraint Shortet Path with Single-Point Viibility Contraint Ramtin Khoravi Mohammad Ghodi Department of Computer Engineering Sharif Univerity of Technology Abtract Thi paper tudie the problem of finding a hortet

More information

Texture-Constrained Active Shape Models

Texture-Constrained Active Shape Models 107 Texture-Contrained Active Shape Model Shuicheng Yan, Ce Liu Stan Z. Li Hongjiang Zhang Heung-Yeung Shum Qianheng Cheng Microoft Reearch Aia, Beijing Sigma Center, Beijing 100080, China Dept. of Info.

More information

Digifort Standard. Architecture

Digifort Standard. Architecture Digifort Standard Intermediate olution for intalling up to 32 camera The Standard verion provide the ideal reource for local and remote monitoring of up to 32 camera per erver and a the intermediate verion

More information

Building a Compact On-line MRF Recognizer for Large Character Set using Structured Dictionary Representation and Vector Quantization Technique

Building a Compact On-line MRF Recognizer for Large Character Set using Structured Dictionary Representation and Vector Quantization Technique 202 International Conference on Frontier in Handwriting Recognition Building a Compact On-line MRF Recognizer for Large Character Set uing Structured Dictionary Repreentation and Vector Quantization Technique

More information

Chapter S:II (continued)

Chapter S:II (continued) Chapter S:II (continued) II. Baic Search Algorithm Sytematic Search Graph Theory Baic State Space Search Depth-Firt Search Backtracking Breadth-Firt Search Uniform-Cot Search AND-OR Graph Baic Depth-Firt

More information

CERIAS Tech Report EFFICIENT PARALLEL ALGORITHMS FOR PLANAR st-graphs. by Mikhail J. Atallah, Danny Z. Chen, and Ovidiu Daescu

CERIAS Tech Report EFFICIENT PARALLEL ALGORITHMS FOR PLANAR st-graphs. by Mikhail J. Atallah, Danny Z. Chen, and Ovidiu Daescu CERIAS Tech Report 2003-15 EFFICIENT PARALLEL ALGORITHMS FOR PLANAR t-graphs by Mikhail J. Atallah, Danny Z. Chen, and Ovidiu Daecu Center for Education and Reearch in Information Aurance and Security,

More information

New Structural Decomposition Techniques for Constraint Satisfaction Problems

New Structural Decomposition Techniques for Constraint Satisfaction Problems New Structural Decompoition Technique for Contraint Satifaction Problem Yaling Zheng and Berthe Y. Choueiry Contraint Sytem Laboratory Univerity of Nebraka-Lincoln Email: yzheng choueiry@ce.unl.edu Abtract.

More information

SIMIT 7. Component Type Editor (CTE) User manual. Siemens Industrial

SIMIT 7. Component Type Editor (CTE) User manual. Siemens Industrial SIMIT 7 Component Type Editor (CTE) Uer manual Siemen Indutrial Edition January 2013 Siemen offer imulation oftware to plan, imulate and optimize plant and machine. The imulation- and optimizationreult

More information

Topics. Lecture 37: Global Optimization. Issues. A Simple Example: Copy Propagation X := 3 B > 0 Y := 0 X := 4 Y := Z + W A := 2 * 3X

Topics. Lecture 37: Global Optimization. Issues. A Simple Example: Copy Propagation X := 3 B > 0 Y := 0 X := 4 Y := Z + W A := 2 * 3X Lecture 37: Global Optimization [Adapted from note by R. Bodik and G. Necula] Topic Global optimization refer to program optimization that encompa multiple baic block in a function. (I have ued the term

More information

Edits in Xylia Validity Preserving Editing of XML Documents

Edits in Xylia Validity Preserving Editing of XML Documents dit in Xylia Validity Preerving diting of XML Document Pouria Shaker, Theodore S. Norvell, and Denni K. Peter Faculty of ngineering and Applied Science, Memorial Univerity of Newfoundland, St. John, NFLD,

More information

Trainable Context Model for Multiscale Segmentation

Trainable Context Model for Multiscale Segmentation Trainable Context Model for Multicale Segmentation Hui Cheng and Charle A. Bouman School of Electrical and Computer Engineering Purdue Univerity Wet Lafayette, IN 47907-1285 {hui, bouman}@ ecn.purdue.edu

More information

MAT 155: Describing, Exploring, and Comparing Data Page 1 of NotesCh2-3.doc

MAT 155: Describing, Exploring, and Comparing Data Page 1 of NotesCh2-3.doc MAT 155: Decribing, Exploring, and Comparing Data Page 1 of 8 001-oteCh-3.doc ote for Chapter Summarizing and Graphing Data Chapter 3 Decribing, Exploring, and Comparing Data Frequency Ditribution, Graphic

More information

Computer Arithmetic Homework Solutions. 1 An adder for graphics. 2 Partitioned adder. 3 HDL implementation of a partitioned adder

Computer Arithmetic Homework Solutions. 1 An adder for graphics. 2 Partitioned adder. 3 HDL implementation of a partitioned adder Computer Arithmetic Homework 3 2016 2017 Solution 1 An adder for graphic In a normal ripple carry addition of two poitive number, the carry i the ignal for a reult exceeding the maximum. We ue thi ignal

More information

On successive packing approach to multidimensional (M-D) interleaving

On successive packing approach to multidimensional (M-D) interleaving On ucceive packing approach to multidimenional (M-D) interleaving Xi Min Zhang Yun Q. hi ankar Bau Abtract We propoe an interleaving cheme for multidimenional (M-D) interleaving. To achieved by uing a

More information

Integration of Digital Test Tools to the Internet-Based Environment MOSCITO

Integration of Digital Test Tools to the Internet-Based Environment MOSCITO Integration of Digital Tet Tool to the Internet-Baed Environment MOSCITO Abtract Current paper decribe a new environment MOSCITO for providing acce to tool over the internet. The environment i built according

More information

Lecture 14: Minimum Spanning Tree I

Lecture 14: Minimum Spanning Tree I COMPSCI 0: Deign and Analyi of Algorithm October 4, 07 Lecture 4: Minimum Spanning Tree I Lecturer: Rong Ge Scribe: Fred Zhang Overview Thi lecture we finih our dicuion of the hortet path problem and introduce

More information

NUMERICAL MODELING ON THE DAMPING CONTROL OF TLD STRUCTURE

NUMERICAL MODELING ON THE DAMPING CONTROL OF TLD STRUCTURE 4th International Conference on Earthquake Engineering Taipei, Taiwan October 12-13, 2006 Paper No. 183 NUMERICAL MODELING ON THE DAMPING CONTROL OF TLD STRUCTURE Han jun 1, Li Yingmin 2, Liu Liping 3,

More information

Comparison of Methods for Horizon Line Detection in Sea Images

Comparison of Methods for Horizon Line Detection in Sea Images Comparion of Method for Horizon Line Detection in Sea Image Tzvika Libe Evgeny Gerhikov and Samuel Koolapov Department of Electrical Engineering Braude Academic College of Engineering Karmiel 2982 Irael

More information

Interface Tracking in Eulerian and MMALE Calculations

Interface Tracking in Eulerian and MMALE Calculations Interface Tracking in Eulerian and MMALE Calculation Gabi Luttwak Rafael P.O.Box 2250, Haifa 31021,Irael Interface Tracking in Eulerian and MMALE Calculation 3D Volume of Fluid (VOF) baed recontruction

More information

Mirror shape recovery from image curves and intrinsic parameters: Rotationally symmetric and conic mirrors. Abstract. 2. Mirror shape recovery

Mirror shape recovery from image curves and intrinsic parameters: Rotationally symmetric and conic mirrors. Abstract. 2. Mirror shape recovery Mirror hape recovery from image curve and intrinic parameter: Rotationally ymmetric and conic mirror Nuno Gonçalve and Helder Araújo Λ Intitute of Sytem and Robotic Univerity of Coimbra Pinhal de Marroco

More information

AN ALGORITHM FOR RESTRICTED NORMAL FORM TO SOLVE DUAL TYPE NON-CANONICAL LINEAR FRACTIONAL PROGRAMMING PROBLEM

AN ALGORITHM FOR RESTRICTED NORMAL FORM TO SOLVE DUAL TYPE NON-CANONICAL LINEAR FRACTIONAL PROGRAMMING PROBLEM RAC Univerity Journal, Vol IV, No, 7, pp 87-9 AN ALGORITHM FOR RESTRICTED NORMAL FORM TO SOLVE DUAL TYPE NON-CANONICAL LINEAR FRACTIONAL PROGRAMMING PROLEM Mozzem Hoain Department of Mathematic Ghior Govt

More information

Maneuverable Relays to Improve Energy Efficiency in Sensor Networks

Maneuverable Relays to Improve Energy Efficiency in Sensor Networks Maneuverable Relay to Improve Energy Efficiency in Senor Network Stephan Eidenbenz, Luka Kroc, Jame P. Smith CCS-5, MS M997; Lo Alamo National Laboratory; Lo Alamo, NM 87545. Email: {eidenben, kroc, jpmith}@lanl.gov

More information

/06/$ IEEE 364

/06/$ IEEE 364 006 IEEE International ympoium on ignal Proceing and Information Technology oie Variance Etimation In ignal Proceing David Makovoz IPAC, California Intitute of Technology, MC-0, Paadena, CA, 95 davidm@ipac.caltech.edu;

More information

SLA Adaptation for Service Overlay Networks

SLA Adaptation for Service Overlay Networks SLA Adaptation for Service Overlay Network Con Tran 1, Zbigniew Dziong 1, and Michal Pióro 2 1 Department of Electrical Engineering, École de Technologie Supérieure, Univerity of Quebec, Montréal, Canada

More information

A PROBABILISTIC NOTION OF CAMERA GEOMETRY: CALIBRATED VS. UNCALIBRATED

A PROBABILISTIC NOTION OF CAMERA GEOMETRY: CALIBRATED VS. UNCALIBRATED A PROBABILISTIC NOTION OF CAMERA GEOMETRY: CALIBRATED VS. UNCALIBRATED Jutin Domke and Yianni Aloimono Computational Viion Laboratory, Center for Automation Reearch Univerity of Maryland College Park,

More information

Shortest Paths Problem. CS 362, Lecture 20. Today s Outline. Negative Weights

Shortest Paths Problem. CS 362, Lecture 20. Today s Outline. Negative Weights Shortet Path Problem CS 6, Lecture Jared Saia Univerity of New Mexico Another intereting problem for graph i that of finding hortet path Aume we are given a weighted directed graph G = (V, E) with two

More information

Representations and Transformations. Objectives

Representations and Transformations. Objectives Repreentation and Tranformation Objective Derive homogeneou coordinate tranformation matrice Introduce tandard tranformation - Rotation - Tranlation - Scaling - Shear Scalar, Point, Vector Three baic element

More information

Integrated Single-arm Assembly and Manipulation Planning using Dynamic Regrasp Graphs

Integrated Single-arm Assembly and Manipulation Planning using Dynamic Regrasp Graphs Proceeding of The 2016 IEEE International Conference on Real-time Computing and Robotic June 6-9, 2016, Angkor Wat, Cambodia Integrated Single-arm Aembly and Manipulation Planning uing Dynamic Regrap Graph

More information

SIMIT 7. Profinet IO Gateway. User Manual

SIMIT 7. Profinet IO Gateway. User Manual SIMIT 7 Profinet IO Gateway Uer Manual Edition January 2013 Siemen offer imulation oftware to plan, imulate and optimize plant and machine. The imulation- and optimizationreult are only non-binding uggetion

More information

Parallel Approaches for Intervals Analysis of Variable Statistics in Large and Sparse Linear Equations with RHS Ranges

Parallel Approaches for Intervals Analysis of Variable Statistics in Large and Sparse Linear Equations with RHS Ranges American Journal of Applied Science 4 (5): 300-306, 2007 ISSN 1546-9239 2007 Science Publication Correponding Author: Parallel Approache for Interval Analyi of Variable Statitic in Large and Spare Linear

More information

Dynamically Reconfigurable Neuron Architecture for the Implementation of Self- Organizing Learning Array

Dynamically Reconfigurable Neuron Architecture for the Implementation of Self- Organizing Learning Array Dynamically Reconfigurable Neuron Architecture for the Implementation of Self- Organizing Learning Array Januz A. Starzyk,Yongtao Guo, and Zhineng Zhu School of Electrical Engineering & Computer Science

More information

mapping reult. Our experiment have revealed that for many popular tream application, uch a networking and multimedia application, the number of VC nee

mapping reult. Our experiment have revealed that for many popular tream application, uch a networking and multimedia application, the number of VC nee Reolving Deadlock for Pipelined Stream Application on Network-on-Chip Xiaohang Wang 1,2, Peng Liu 1 1 Department of Information Science and Electronic Engineering, Zheiang Univerity Hangzhou, Zheiang,

More information

3D MODELLING WITH LINEAR APPROACHES USING GEOMETRIC PRIMITIVES

3D MODELLING WITH LINEAR APPROACHES USING GEOMETRIC PRIMITIVES MAKARA, TEKNOLOGI, VOL. 9, NO., APRIL 5: 3-35 3D MODELLING WITH LINEAR APPROACHES USING GEOMETRIC PRIMITIVES Mochammad Zulianyah Informatic Engineering, Faculty of Engineering, ARS International Univerity,

More information

The underigned hereby recommend to the Faculty of Graduate Studie and Reearch aceeptance of the thei, Two Topic in Applied Algorithmic ubmitted by Pat

The underigned hereby recommend to the Faculty of Graduate Studie and Reearch aceeptance of the thei, Two Topic in Applied Algorithmic ubmitted by Pat Two Topic in Applied Algorithmic By Patrick R. Morin A thei ubmitted to the Faculty of Graduate Studie and Reearch in partial fullment of the requirement for the degree of Mater of Computer Science Ottawa-Carleton

More information

Multi-Target Tracking In Clutter

Multi-Target Tracking In Clutter Multi-Target Tracking In Clutter John N. Sander-Reed, Mary Jo Duncan, W.B. Boucher, W. Michael Dimmler, Shawn O Keefe ABSTRACT A high frame rate (0 Hz), multi-target, video tracker ha been developed and

More information

Refining SIRAP with a Dedicated Resource Ceiling for Self-Blocking

Refining SIRAP with a Dedicated Resource Ceiling for Self-Blocking Refining SIRAP with a Dedicated Reource Ceiling for Self-Blocking Mori Behnam, Thoma Nolte Mälardalen Real-Time Reearch Centre P.O. Box 883, SE-721 23 Väterå, Sweden {mori.behnam,thoma.nolte}@mdh.e ABSTRACT

More information

Today s Outline. CS 561, Lecture 23. Negative Weights. Shortest Paths Problem. The presence of a negative cycle might mean that there is

Today s Outline. CS 561, Lecture 23. Negative Weights. Shortest Paths Problem. The presence of a negative cycle might mean that there is Today Outline CS 56, Lecture Jared Saia Univerity of New Mexico The path that can be trodden i not the enduring and unchanging Path. The name that can be named i not the enduring and unchanging Name. -

More information

Frequency Table Computation on Dataflow Architecture

Frequency Table Computation on Dataflow Architecture Frequency Table Computation on Dataflow Architecture P. Škoda *, V. Sruk **, and B. Medved Rogina * * Ruđer Bošković Intitute, Zagreb, Croatia ** Faculty of Electrical Engineering and Computing, Univerity

More information

xy-monotone path existence queries in a rectilinear environment

xy-monotone path existence queries in a rectilinear environment CCCG 2012, Charlottetown, P.E.I., Augut 8 10, 2012 xy-monotone path exitence querie in a rectilinear environment Gregory Bint Anil Mahehwari Michiel Smid Abtract Given a planar environment coniting of

More information

CENTER-POINT MODEL OF DEFORMABLE SURFACE

CENTER-POINT MODEL OF DEFORMABLE SURFACE CENTER-POINT MODEL OF DEFORMABLE SURFACE Piotr M. Szczypinki Iintitute of Electronic, Technical Univerity of Lodz, Poland Abtract: Key word: Center-point model of deformable urface for egmentation of 3D

More information

Shortest Path Routing in Arbitrary Networks

Shortest Path Routing in Arbitrary Networks Journal of Algorithm, Vol 31(1), 1999 Shortet Path Routing in Arbitrary Network Friedhelm Meyer auf der Heide and Berthold Vöcking Department of Mathematic and Computer Science and Heinz Nixdorf Intitute,

More information

CS201: Data Structures and Algorithms. Assignment 2. Version 1d

CS201: Data Structures and Algorithms. Assignment 2. Version 1d CS201: Data Structure and Algorithm Aignment 2 Introduction Verion 1d You will compare the performance of green binary earch tree veru red-black tree by reading in a corpu of text, toring the word and

More information

Modeling of underwater vehicle s dynamics

Modeling of underwater vehicle s dynamics Proceeding of the 11th WEA International Conference on YTEM, Agio Nikolao, Crete Iland, Greece, July 23-25, 2007 44 Modeling of underwater vehicle dynamic ANDRZEJ ZAK Department of Radiolocation and Hydrolocation

More information

Aspects of Formal and Graphical Design of a Bus System

Aspects of Formal and Graphical Design of a Bus System Apect of Formal and Graphical Deign of a Bu Sytem Tiberiu Seceleanu Univerity of Turku, Dpt. of Information Technology Turku, Finland tiberiu.eceleanu@utu.fi Tomi Weterlund Turku Centre for Computer Science

More information

Analyzing Hydra Historical Statistics Part 2

Analyzing Hydra Historical Statistics Part 2 Analyzing Hydra Hitorical Statitic Part Fabio Maimo Ottaviani EPV Technologie White paper 5 hnode HSM Hitorical Record The hnode i the hierarchical data torage management node and ha to perform all the

More information

Numerical Modeling of Material Discontinuity Using Mixed MLPG Collocation Method

Numerical Modeling of Material Discontinuity Using Mixed MLPG Collocation Method umerical odeling of aterial Dicontinuit Uing ied LPG Collocation ethod B. alušić 1,. Sorić 1 and T. arak 1 Abtract A mied LPG collocation method i applied for the modeling of material dicontinuit in heterogeneou

More information

Engineering Parallel Software with

Engineering Parallel Software with Engineering Parallel Software with Our Pattern Language Profeor Kurt Keutzer and Tim Matton and (Jike Chong), Ekaterina Gonina, Bor-Yiing Su and Michael Anderon, Bryan Catanzaro, Chao-Yue Lai, Mark Murphy,

More information

Delaunay Triangulation: Incremental Construction

Delaunay Triangulation: Incremental Construction Chapter 6 Delaunay Triangulation: Incremental Contruction In the lat lecture, we have learned about the Lawon ip algorithm that compute a Delaunay triangulation of a given n-point et P R 2 with O(n 2 )

More information

Aalborg Universitet. Published in: Proceedings of the Working Conference on Advanced Visual Interfaces

Aalborg Universitet. Published in: Proceedings of the Working Conference on Advanced Visual Interfaces Aalborg Univeritet Software-Baed Adjutment of Mobile Autotereocopic Graphic Uing Static Parallax Barrier Paprocki, Martin Marko; Krog, Kim Srirat; Kritofferen, Morten Bak; Krau, Martin Publihed in: Proceeding

More information

An Approach to Buffer Management in Java HPC Messaging

An Approach to Buffer Management in Java HPC Messaging An Approach to Buer Management in Java HPC Meaging Mark Baker, Bryan Carpenter, and Aamir Shai Ditributed Sytem Group, Univerity o Portmouth Abtract. One o the mot challenging apect to deigning a Java

More information

International Journal of Engineering Research & Technology (IJERT) ISSN: Vol. 2 Issue 5, May

International Journal of Engineering Research & Technology (IJERT) ISSN: Vol. 2 Issue 5, May Intertage Pipeline VLI Architecture for 2-D DWT Ajinkya. Bankar 1,Bhavika. haha 2, P.K. Kadbe 3 E&TC Department, Pune Univerity 1,2,3 VPCOE Baramati Abtract In thi paper, a cheme for the deign of a high-pd

More information

Optimal Multi-Robot Path Planning on Graphs: Complete Algorithms and Effective Heuristics

Optimal Multi-Robot Path Planning on Graphs: Complete Algorithms and Effective Heuristics Optimal Multi-Robot Path Planning on Graph: Complete Algorithm and Effective Heuritic Jingjin Yu Steven M. LaValle Abtract arxiv:507.0390v [c.ro] Jul 05 We tudy the problem of optimal multi-robot path

More information

LinkGuide: Towards a Better Collection of Hyperlinks in a Website Homepage

LinkGuide: Towards a Better Collection of Hyperlinks in a Website Homepage Proceeding of the World Congre on Engineering 2007 Vol I LinkGuide: Toward a Better Collection of Hyperlink in a Webite Homepage A. Ammari and V. Zharkova chool of Informatic, Univerity of Bradford anammari@bradford.ac.uk,

More information

Keywords: Defect detection, linear phased array transducer, parameter optimization, phased array ultrasonic B-mode imaging testing.

Keywords: Defect detection, linear phased array transducer, parameter optimization, phased array ultrasonic B-mode imaging testing. Send Order for Reprint to reprint@benthamcience.ae 488 The Open Automation and Control Sytem Journal, 2014, 6, 488-492 Open Acce Parameter Optimization of Linear Phaed Array Tranducer for Defect Detection

More information

Contents. shortest paths. Notation. Shortest path problem. Applications. Algorithms and Networks 2010/2011. In the entire course:

Contents. shortest paths. Notation. Shortest path problem. Applications. Algorithms and Networks 2010/2011. In the entire course: Content Shortet path Algorithm and Network 21/211 The hortet path problem: Statement Verion Application Algorithm (for ingle ource p problem) Reminder: relaxation, Dijktra, Variant of Dijktra, Bellman-Ford,

More information

Kinematics Programming for Cooperating Robotic Systems

Kinematics Programming for Cooperating Robotic Systems Kinematic Programming for Cooperating Robotic Sytem Critiane P. Tonetto, Carlo R. Rocha, Henrique Sima, Altamir Dia Federal Univerity of Santa Catarina, Mechanical Engineering Department, P.O. Box 476,

More information

Parallel MATLAB at FSU: Task Computing

Parallel MATLAB at FSU: Task Computing Parallel MATLAB at FSU: Tak John Burkardt Department of Scientific Florida State Univerity... 1:30-2:30 Thurday, 07 April 2011 499 Dirac Science Library... http://people.c.fu.edu/ jburkardt/preentation/...

More information

SIMIT 7. What's New In SIMIT V7.1? Manual

SIMIT 7. What's New In SIMIT V7.1? Manual SIMIT 7 What' New In SIMIT V7.1? Manual Edition January 2013 Siemen offer imulation oftware to plan, imulate and optimize plant and machine. The imulation- and optimization-reult are only non-binding uggetion

More information

An Active Stereo Vision System Based on Neural Pathways of Human Binocular Motor System

An Active Stereo Vision System Based on Neural Pathways of Human Binocular Motor System Journal of Bionic Engineering 4 (2007) 185 192 An Active Stereo Viion Sytem Baed on Neural Pathway of Human Binocular Motor Sytem Yu-zhang Gu 1, Makoto Sato 2, Xiao-lin Zhang 2 1. Department of Advanced

More information

Laboratory Exercise 6

Laboratory Exercise 6 Laboratory Exercie 6 Adder, Subtractor, and Multiplier The purpoe of thi exercie i to examine arithmetic circuit that add, ubtract, and multiply number. Each circuit will be decribed in VHL and implemented

More information

The norm Package. November 15, Title Analysis of multivariate normal datasets with missing values

The norm Package. November 15, Title Analysis of multivariate normal datasets with missing values The norm Package November 15, 2003 Verion 1.0-9 Date 2002/05/06 Title Analyi of multivariate normal dataet with miing value Author Ported to R by Alvaro A. Novo . Original by Joeph

More information

IMPROVED JPEG DECOMPRESSION OF DOCUMENT IMAGES BASED ON IMAGE SEGMENTATION. Tak-Shing Wong, Charles A. Bouman, and Ilya Pollak

IMPROVED JPEG DECOMPRESSION OF DOCUMENT IMAGES BASED ON IMAGE SEGMENTATION. Tak-Shing Wong, Charles A. Bouman, and Ilya Pollak IMPROVED DECOMPRESSION OF DOCUMENT IMAGES BASED ON IMAGE SEGMENTATION Tak-Shing Wong, Charle A. Bouman, and Ilya Pollak School of Electrical and Computer Engineering Purdue Univerity ABSTRACT We propoe

More information

Service and Network Management Interworking in Future Wireless Systems

Service and Network Management Interworking in Future Wireless Systems Service and Network Management Interworking in Future Wirele Sytem V. Tountopoulo V. Stavroulaki P. Demeticha N. Mitrou and M. Theologou National Technical Univerity of Athen Department of Electrical Engineering

More information

An Intro to LP and the Simplex Algorithm. Primal Simplex

An Intro to LP and the Simplex Algorithm. Primal Simplex An Intro to LP and the Simplex Algorithm Primal Simplex Linear programming i contrained minimization of a linear objective over a olution pace defined by linear contraint: min cx Ax b l x u A i an m n

More information