New Sparse Matrix Ordering Techniques for Computer Simulation of Electronics Circuits

Total Page:16

File Type:pdf, Size:1020Kb

New Sparse Matrix Ordering Techniques for Computer Simulation of Electronics Circuits Recent Advances in Communications, Circuits and Technological Innovation New Sparse Matrix Ordering Techniques for Computer Simulation Of Electronics Circuits DAVID CERNY JOSEF DOBES Czech Technical University in Prague Czech Technical University in Prague Department of Radio Engineering Department of Radio Engineering Technicka 2, 166 27 Praha 6 Technicka 2, 166 27 Praha 6 Czech Republic Czech Republic [email protected] [email protected] Abstract: Engineers and technicians rely on many computer tools, which help them in the development of new devices. Especially in the electronic circuit design, there is required advantageous and complex equipment. This paper makes a brief introduction to the basic problematic of electronic circuit’s simulation. It proposes the key principles for developing modern simulators and possible further steps in computer simulation and circuit design. Main part of the article presents a novel sparse matrix ordering techniques specially developed for solving LU factorization. LU factorization is critical part of any electronic circuit simulation. This paper also presents complete description of backward and forward conversion of the new sparse matrix ordering techniques. The comparison of performance of standard matrix storages and novel sparse matrix ordering techniques is summarized at the end of this article. Key–Words: Computer simulation, SPICE, Sparse Matrix Ordering Techniques, LU factorization 1 Introduction nally come? To better understanding the problematic we must a little investigate SPICE core algorithms. Simulation program SPICE (Simulation Program with The entire program and especially its simulation core Integrated Circuit Emphasis) [1, 2] has dominated in algorithms were written in Fortran, program core al- the field of electronics simulation for several decades. gorithms were lately converted to C language [3]. De- An enormous impact of significance of SPICE simu- spite its age Fortran (and especially its modern ver- lator can be easily seen on division of simulation pro- sion) allows extremely precise memory allocation and grams for electronic circuit into two groups: Spice- produces very efficient machine code. It is a very dif- like simulators which use for simulation same princi- ficult task (even impossible) to make a program with ples as SPICE and others based on a different pro- competitive computation core in recent programming gramming paradigm. The first version of the pro- languages as C++,Java, C#. gram was introduced to public in 70’s in the Uni- versity of California in Berkeley. Although count- In the paper [4], a new program architecture is less number of other programs for computer-aided proposed for simulators of electronics circuits, which design (CAD) and analyzing have been developed, will possibly overcome SPICE. The idea is based on SPICE is the most-used program for circuit simula- a use of functional programming language LISP [5]. tion. SPICE computation core can be found in many Selection of functional language is not a coincidence. professional programs as PSPICE (Cadence), Spec- Functional languages are getting more on their sig- tre (Cadence), HSPICE (Synopsys), ELDO (Men- nificance nowadays. As an example we can mention tor Graphics), SmartSPICE(Simucad), NgSpice and that new version of C++11 (approved by ISO in Au- many others. gust 2011) comes with the ability of creation of un- named function so-called lambda function principle. This is absolutely fundamental principle to functional 2 Future of Electronics Simulation languages. The efficiency and modularity of written code Nearly 40 years have passed since SPICE simulator have started to be taken very seriously recently. A was developed, but still we are facing very difficult huge drawback of SPICE simulator (and practically decision. Will it be the most-used computer simulator every simulator based on same architecture) is its for the next 40 years or the time for a change has fi- models. It is very difficult and requires high level pro- ISBN: 978-1-61804-138-8 247 Recent Advances in Communications, Circuits and Technological Innovation gramming skills of the users to create own models. It for real magic which comes with mapping function. is possible to modify various parameters of existing Following (very self explanatory) LISP code is com- models, but it is time-consuming and difficult to cre- plete mapping function for previously defined Zener ate own one from scratch. Electronics engineers are diode. forced to deal with memory management, complex algorithms and many redundant optimization param- (defmethod map−d e v i c e − eters if they need to do so. Moreover, this is possible ( ( d c l a s s d io d e ) (m c l a s s −matrix −system ) ) only in a case when the users can recompile simulator source codes. Otherwise it is very difficult to change (let((v+ (make−var−node ’v (node+ d))) anything or check, whether computation algorithms ( v− ( make−var−node ’v (node− d ) ) ) are correct. ( i ( make−var−name ’i (name d)))) ( s e t −g−value mv+ i #’+ 1) 3 Power of Fuctionals ( s e t −g−v a l u e m v− i # ’+ −1) Turning simulation program to functional style gives ( s e t −g−value m i i #’+ −1) an opportunity to create environment, which could change itself during its run [6]. Functions could be ( s e t −e q u a t i o n s −v a l u e m i created and mapped to variables at any time of the ( diode −current d v+ v −)) program run. This gives us very powerful tool to cre- ate special input syntax, which turns, for example, ( s e t −d−v a l u e m i v+ − − − mathematical equations to functions. It is not parsing. ( diode c u r r e n t dva d v+ v )) ( s e t −d−v a l u e m i v− Specific property of functional languages is a possibil- ( diode −c u r r e n t −dvc d v+ v − )))) ity of language syntax redefinition to special one [7]. This allows, for example, in electronics simulation to One of the main advantages of functionals is that specify arbitrary complex device model just by defi- they can be handled in a same way as values. They nition by its mathematical circuit equations. To clear can be dynamically created with different parameters, this statement, the implementation of a diode model stored in variable or array. This allows to them to be in the functional language Common LISP (CL) will used as circuit device templates and so significantly be illustrated. enhance device redefinition speed. There is no more We are going to rewrite well known Shockley’s need to incorporate device definition into simulation equation of a diode to LISP code: algorithms. Simulation program should be able to au- tomatically assign defined device functionals to cor- VD=(nVT) ID = IS e − 1 ; (1) rect positions in simulation chain and invoke them in the right order and time when they are needed. where ID is diode current, IS is saturation current, VD = Vp − Vn is voltage across the diode, VT is ther- mal voltage, and n is emission coefficient. Definition 4 Performance of Computer Simula- of this mathematical equation in functional language Common LISP will look as tions (DEFUN DIODE−CURRENT (VP VN) One important fact must be pointed out about func- # ’(LAMBDA ( ) tional languages. And actually about any other pro- (∗ 10e−12 gramming language higher than C. No matter, how (− (EXP many optimization algorithms given compiler will (/(− (EVAL VP) (EVAL VN) ) use, resulting binary will be in any case slower than − 26e 3)) C or Fortran compilation. The result can differ only 1 ) ) ) ) in several instructions, but this will get on significance −12 −3 where IS = 10 A, VT = 26x10 V and n = 1, when it is performed thousand times over. To compete e.g. in performance with other simulators, all its computa- This function (DIODE-CURRENT) with param- tion demanding tasks must delegated to C language, eters (VP VN) returns another function (it is actually Fortran or even lower language. functional), defined by LAMBDA operator, which In CL, it is possible though so-called Foreign Ar- computes current ID through the diode. It could be ray Interface mechanism. It allows to CL to use, create mentioned that it is only trivial redefinition of mathe- and call functions and variables from other program- matical equation in LISP code. It is only introduction ming languages, for example C. All demanding tasks ISBN: 978-1-61804-138-8 248 Recent Advances in Communications, Circuits and Technological Innovation can be passed and evaluated by code written in C lan- dex vectors. Vectors u and l are both value vectors, guage. It proved to be good approach to use GNU which are accompanied by two indexes vector iu, il. Scientific Library (GSL) [8]. It offers many mathe- Index vectors iu and il combine the best of the row matical functions and is very fast. Disadvantage of and column sparse matrix techniques. The index vec- this solution is that GSL does not support sparse ma- tor in iu uses up to down, left to right organization trix storage. This fact could be very problematic in scheme, vector il works with a left to right, up to down electronic circuit simulation because high sparsity is scheme. Vector d holds diagonal matrix values and characteristic property of circuit equations. therefore, non-zero values. After successful pivoting there should be no zero values in vector d. Therefore, 5 Sparse Matrix Storage it will have full length in any case, and does not need to be accompanied by any index vector. Visual exam- In the classical electronic network application, we can ple of the transformation of the matrix M to MPSLS be sure that system equations of the simulated circuit sparse matrix ordering technique follows: will produce a highly sparse matrix.
Recommended publications
  • The Machine That Builds Itself: How the Strengths of Lisp Family
    Khomtchouk et al. OPINION NOTE The Machine that Builds Itself: How the Strengths of Lisp Family Languages Facilitate Building Complex and Flexible Bioinformatic Models Bohdan B. Khomtchouk1*, Edmund Weitz2 and Claes Wahlestedt1 *Correspondence: [email protected] Abstract 1Center for Therapeutic Innovation and Department of We address the need for expanding the presence of the Lisp family of Psychiatry and Behavioral programming languages in bioinformatics and computational biology research. Sciences, University of Miami Languages of this family, like Common Lisp, Scheme, or Clojure, facilitate the Miller School of Medicine, 1120 NW 14th ST, Miami, FL, USA creation of powerful and flexible software models that are required for complex 33136 and rapidly evolving domains like biology. We will point out several important key Full list of author information is features that distinguish languages of the Lisp family from other programming available at the end of the article languages and we will explain how these features can aid researchers in becoming more productive and creating better code. We will also show how these features make these languages ideal tools for artificial intelligence and machine learning applications. We will specifically stress the advantages of domain-specific languages (DSL): languages which are specialized to a particular area and thus not only facilitate easier research problem formulation, but also aid in the establishment of standards and best programming practices as applied to the specific research field at hand. DSLs are particularly easy to build in Common Lisp, the most comprehensive Lisp dialect, which is commonly referred to as the “programmable programming language.” We are convinced that Lisp grants programmers unprecedented power to build increasingly sophisticated artificial intelligence systems that may ultimately transform machine learning and AI research in bioinformatics and computational biology.
    [Show full text]
  • Praise for Practical Common Lisp
    Praise for Practical Common Lisp “Finally, a Lisp book for the rest of us. If you want to learn how to write a factorial function, this is not your book. Seibel writes for the practical programmer, emphasizing the engineer/artist over the scientist and subtly and gracefully implying the power of the language while solving understandable real-world problems. “In most chapters, the reading of the chapter feels just like the experience of writing a program, starting with a little understanding and then having that understanding grow, like building the shoulders upon which you can then stand. When Seibel introduced macros as an aside while building a test frame- work, I was shocked at how such a simple example made me really ‘get’ them. Narrative context is extremely powerful, and the technical books that use it are a cut above. Congrats!” —Keith Irwin, Lisp programmer “While learning Lisp, one is often referred to the CL HyperSpec if they do not know what a particular function does; however, I found that I often did not ‘get it’ just by reading the HyperSpec. When I had a problem of this manner, I turned to Practical Common Lisp every single time—it is by far the most readable source on the subject that shows you how to program, not just tells you.” —Philip Haddad, Lisp programmer “With the IT world evolving at an ever-increasing pace, professionals need the most powerful tools available. This is why Common Lisp—the most powerful, flexible, and stable programming language ever—is seeing such a rise in popu- larity.
    [Show full text]
  • Common Lisp - Viel Mehr Als Nur D¨Amliche Klammern
    Einf¨uhrung Geschichtliches Die Programmiersprache Abschluß Common Lisp - viel mehr als nur d¨amliche Klammern Alexander Schreiber <[email protected]> http://www.thangorodrim.de Chemnitzer Linux-Tage 2005 Greenspun’s Tenth Rule of Programming: “Any sufficiently-complicated C or Fortran program contains an ad-hoc, informally-specified bug-ridden slow implementation of half of Common Lisp.” Alexander Schreiber <[email protected]> Common Lisp - viel mehr als nur d¨amliche Klammern 1 / 30 Einf¨uhrung Geschichtliches Die Programmiersprache Abschluß Ubersicht¨ 1 Einf¨uhrung 2 Geschichtliches 3 Die Programmiersprache 4 Abschluß Alexander Schreiber <[email protected]> Common Lisp - viel mehr als nur d¨amliche Klammern 2 / 30 Einf¨uhrung Geschichtliches Die Programmiersprache Abschluß Lisp? Wof¨ur? NASA: Remote Agent (Deep Space 1), Planner (Mars Pathfinder), Viaweb, gekauft von Yahoo f¨ur50 Millionen $, ITA Software: Orbitz engine (Flugticket Planung), Square USA: Production tracking f¨ur“Final Fantasy”, Naughty Dog Software: Crash Bandicoot auf Sony Playstation, AMD & AMI: Chip-Design & Verifizierung, typischerweise komplexe Probleme: Wissensverarbeitung, Expertensysteme, Planungssysteme Alexander Schreiber <[email protected]> Common Lisp - viel mehr als nur d¨amliche Klammern 3 / 30 Einf¨uhrung Geschichtliches Die Programmiersprache Abschluß Lisp? Wof¨ur? NASA: Remote Agent (Deep Space 1), Planner (Mars Pathfinder), Viaweb, gekauft von Yahoo f¨ur50 Millionen $, ITA Software: Orbitz engine (Flugticket Planung), Square USA: Production tracking
    [Show full text]
  • Knowledge Based Engineering: Between AI and CAD
    Advanced Engineering Informatics 26 (2012) 159–179 Contents lists available at SciVerse ScienceDirect Advanced Engineering Informatics journal homepage: www.elsevier.com/locate/aei Knowledge based engineering: Between AI and CAD. Review of a language based technology to support engineering design ⇑ Gianfranco La Rocca Faculty of Aerospace Engineering, Delft University of Technology, Chair of Flight Performance and Propulsion, Kluyverweg 1, 2629HS Delft, The Netherlands article info abstract Article history: Knowledge based engineering (KBE) is a relatively young technology with an enormous potential for Available online 16 March 2012 engineering design applications. Unfortunately the amount of dedicated literature available to date is quite low and dispersed. This has not promoted the diffusion of KBE in the world of industry and acade- Keywords: mia, neither has it contributed to enhancing the level of understanding of its technological fundamentals. Knowledge based engineering The scope of this paper is to offer a broad technological review of KBE in the attempt to fill the current Knowledge engineering information gap. The artificial intelligence roots of KBE are briefly discussed and the main differences and Engineering design similarities with respect to classical knowledge based systems and modern general purpose CAD systems Generative design highlighted. The programming approach, which is a distinctive aspect of state-of-the-art KBE systems, is Knowledge based design Rule based design discussed in detail, to illustrate its effectiveness in capturing and re-using engineering knowledge to automate large portions of the design process. The evolution and trends of KBE systems are investigated and, to conclude, a list of recommendations and expectations for the KBE systems of the future is provided.
    [Show full text]
  • Lisp: Final Thoughts
    20 Lisp: Final Thoughts Both Lisp and Prolog are based on formal mathematical models of computation: Prolog on logic and theorem proving, Lisp on the theory of recursive functions. This sets these languages apart from more traditional languages whose architecture is just an abstraction across the architecture of the underlying computing (von Neumann) hardware. By deriving their syntax and semantics from mathematical notations, Lisp and Prolog inherit both expressive power and clarity. Although Prolog, the newer of the two languages, has remained close to its theoretical roots, Lisp has been extended until it is no longer a purely functional programming language. The primary culprit for this diaspora was the Lisp community itself. The pure lisp core of the language is primarily an assembly language for building more complex data structures and search algorithms. Thus it was natural that each group of researchers or developers would “assemble” the Lisp environment that best suited their needs. After several decades of this the various dialects of Lisp were basically incompatible. The 1980s saw the desire to replace these multiple dialects with a core Common Lisp, which also included an object system, CLOS. Common Lisp is the Lisp language used in Part III. But the primary power of Lisp is the fact, as pointed out many times in Part III, that the data and commands of this language have a uniform structure. This supports the building of what we call meta-interpreters, or similarly, the use of meta-linguistic abstraction. This, simply put, is the ability of the program designer to build interpreters within Lisp (or Prolog) to interpret other suitably designed structures in the language.
    [Show full text]
  • Th`Ese Est Une Tˆache Ardue
    No d’ordre : 3373 THESE` PRESENT´ EE´ A` L’UNIVERSITE´ BORDEAUX I ECOLE´ DOCTORALE DE MATHEMATIQUES´ ET D’INFORMATIQUE Par Martin Raspaud POUR OBTENIR LE GRADE DE DOCTEUR SPECIALIT´ E´ : INFORMATIQUE Mod`eles spectraux hi´erarchiques pour les sons et applications Soutenue le : 24 Mai 2007 Apr`es avis des rapporteurs : Daniel Arfib ....................... Directeur de Recherche Philippe Depalle .................. Professeur Devant la commission d’examen compos´ee de : Christophe Schlick ............... Professeur .................... Pr´esident et Rapporteur Daniel Arfib ....................... Directeur de Recherche Examinateur Philippe Depalle .................. Professeur .................... Examinateur Myriam Desainte–Catherine Professeur .................... Examinateur Laurent Girin ...................... Maˆıtre de Conf´erences . Examinateur Sylvain Marchand ................ Maˆıtre de Conf´erences . Examinateur 2007 Contents English Introduction 1 Introduction en Fran¸cais 7 1 Temporal Modelling 13 1.1 Temporal model ................................................... ....................................... 13 1.2 Time-scaling in the temporal model ................................................... .......... 16 Varying the playing speed ................................................... ........................... 16 Overlap-Add (OLA) ................................................... .................................. 17 SOLA and TD-PSOLA ................................................... ............................... 17
    [Show full text]
  • 9 European Lisp Symposium
    Proceedings of the 9th European Lisp Symposium AGH University of Science and Technology, Kraków, Poland May 9 – 10, 2016 Irène Durand (ed.) ISBN-13: 978-2-9557474-0-7 Contents Preface v Message from the Programme Chair . vii Message from the Organizing Chair . viii Organization ix Programme Chair . xi Local Chair . xi Programme Committee . xi Organizing Committee . xi Sponsors . xii Invited Contributions xiii Program Proving with Coq – Pierre Castéran .........................1 Julia: to Lisp or Not to Lisp? – Stefan Karpinski .......................1 Lexical Closures and Complexity – Francis Sergeraert ...................2 Session I: Language design3 Refactoring Dynamic Languages Rafael Reia and António Menezes Leitão ..........................5 Type-Checking of Heterogeneous Sequences in Common Lisp Jim E. Newton, Akim Demaille and Didier Verna ..................... 13 A CLOS Protocol for Editor Buffers Robert Strandh ....................................... 21 Session II: Domain Specific Languages 29 Using Lisp Macro-Facilities for Transferable Statistical Tests Kay Hamacher ....................................... 31 A High-Performance Image Processing DSL for Heterogeneous Architectures Kai Selgrad, Alexander Lier, Jan Dörntlein, Oliver Reiche and Marc Stamminger .... 39 Session III: Implementation 47 A modern implementation of the LOOP macro Robert Strandh ....................................... 49 Source-to-Source Compilation via Submodules Tero Hasu and Matthew Flatt ............................... 57 Extending Software Transactional
    [Show full text]
  • Algorithms for Analysis of Nonlinear High-Frequency Circuits
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Digital Library of the Czech Technical University in Prague Ph.D. Thesis Czech Technical University in Prague Faculty of Electrical Engineering F3 13137 Department of Radioelectronics Algorithms for Analysis of Nonlinear High-Frequency Circuits Ing. David Černý Supervisor: Doc. Ing. Josef Dobeš. CSc. Field of study: P2612 Electrical Engineering and Information Technology Subfield: Radioelectronics August 2016 Acknowledgements I would like to thank my supervisor doc. Ing. Josef Dobeš, CSc. for his active, methodical and technical support in my study. I very appreciate his help and his very useful advice and recommendation. I would like to thank my parents Jan and Galina Černá for their infinite love and support. Many thanks belong to Lucia Bugajová for her patience, motivation, and understanding during my study. ii Declaration I declare that my doctoral dissertation thesis was prepared personally and bibliography used duly cited. This thesis and the results presented were created without any violation of copyright of third parties. Prohlašuji, že jsem předloženou práci vypracoval samostatně a že jsem uvedl veškeré použité informační zdroje v souladu s Metodickým pokynem o dodržování etických principů při přípravě vysokoškolských závěrečných prací. V Praze, 30. 8. 2016 ................................................................. iii Abstract The most efficient simulation solvers use composite procedures that adaptively rearrange computation algorithms to maximize simulation performance. Fast and stable processing optimized for given simulation problem is essential for any modern simulator. It is characteristic for electronic circuit analysis that complexity of simulation is affected by circuit size and used device models.
    [Show full text]
  • A Web-Based, Pac-Man-Complete Hybrid Text and Visual Programming Language
    Politechnika Łódzka Wydział Fizyki Technicznej, Informatyki i Matematyki Stosowanej Instytut Informatyki Dariusz Jędrzejczak, 201208 Dual: a web-based, Pac-Man-complete hybrid text and visual programming language Praca magisterska napisana pod kierunkiem dr inż. Jana Stolarka Łódź 2016 ii Contents Contents iii 0 Introduction 1 0.1 Scope . .1 0.2 Choice of subject . .1 0.3 Related work . .2 0.4 Goals . .3 0.5 Structure . .3 1 Background 5 1.1 Web technologies . .5 1.1.1 Document Object Model . .5 1.1.2 JavaScript . .6 1.2 Design and implementation of Lisp . .8 1.2.1 Abstract syntax tree and program representation . 10 1.2.2 Text-based code editors . 10 1.2.3 Visual programming languages . 11 1.2.4 A note on history of VPLs . 13 1.2.5 Common criticisms of VPLs . 14 1.2.6 The problem with structure . 14 1.3 Screenshots . 16 2 Dual programming language 21 2.1 Introduction . 21 2.2 Syntax and grammar . 21 2.2.1 Basic syntax . 22 2.3 Comments . 23 2.4 Numbers . 24 2.5 Escape character . 25 2.6 Strings . 25 2.7 Basic primitives and built-ins . 25 2.7.1 Functions . 26 2.7.2 Language primitives . 27 2.7.3 Values . 30 2.8 Enhanced Syntax Tree . 31 iii CONTENTS CONTENTS 2.8.1 Structural representation of strings . 32 2.9 Syntax sugar for function invocations . 33 2.10 Pattern matching . 34 2.10.1 Destructuring . 36 2.10.2 match primitive . 36 2.11 Rest parameters and spread operator .
    [Show full text]
  • Projet De Programmation 3
    Projet de Programmation 3 Cours : Ir`ene Durand TD : Ir`ene Durand, Richard Moussa, Kaninda Musumbu (2 groupes) Semaines Cours mercredi 9h30-10h50, 2-7 9-10 Amphi A29 TD 12 s´eances de 1h20 5-7 9 10 12 1 Devoir surveill´emercredi 9h30-11h 11 Amphi A29 1 Projet surveill´e 9 `a13 Le devoir surveill´eET le projet surveill´esont obligatoires. Support de cours : transparents et exemples disponibles sur page Web http://dept-info.labri.u-bordeaux.fr/~idurand/enseignement/PP3/ 1 Bibliographie Peter Seibel Practical Common Lisp Apress Paul Graham : ANSI Common Lisp Prentice Hall Paul Graham : On Lisp Advanced Techniques for Common Lisp Prentice Hall Robert Strandh et Ir`ene Durand Trait´ede programmation en Common Lisp M´etaModulaire Sonya Keene : Object-Oriented Programming in Common Lisp A programmer’s guide to CLOS Addison Wesley Peter Norvig : Paradigms of Artificial Intelligence Programming Case Studies in Common Lisp Morgan Kaufmann 2 Autres documents The HyperSpec (la norme ANSI compl`ete de Common Lisp, en HTML) http://www.lispworks.com/documentation/HyperSpec/Front/index.htm SBCL User Manual CLX reference manual (Common Lisp X Interface) Common Lisp Interface Manager (CLIM) http://bauhh.dyndns.org:8000/clim-spec/index.html Guy Steele : Common Lisp, the Language, second edition Digital Press, (disponible sur WWW en HTML) David Lamkins : Successful Lisp (Tutorial en-ligne) 3 Objectifs et contenu Passage `al’´echelle – Appr´ehender les probl`emes relatifs `ala r´ealisation d’un vrai projet – Installation et utilisation de biblioth`eques existantes – Biblioth`eque graphique (mcclim) – Cr´eation de biblioth`eques r´eutilisables – Modularit´e, API (Application Programming Interface) ou Interface de Programmation – Utilisation de la Programmation Objet – Entr´ees/Sorties (flots, acc`es au syst`eme de fichiers) – Gestion des exceptions 4 Paquetages (Packages) Supposons qu’on veuille utiliser un syst`eme (une biblioth`eque) (la biblioth`eque graphique McCLIM par exemple).
    [Show full text]
  • The Road to Perspective Are Often Badly Covered, If at All
    Coding with Lisp Coding with Lisp Developing Lisp code on a free software platform is no mean feat, and documentation, though available, is dispersed and comparison to solid, hefty common tools such as gcc, often too concise for users new to Lisp. In the second part of gdb and associated autobuild suite. There’s a lot to get used to here, and the implementation should be an accessible guide to this fl exible language, self-confessed well bonded with an IDE such as GNU Emacs. SLIME is a contemporary solution which really does this job, Lisp newbie Martin Howse assesses practical issues and and we’ll check out some integration issues, and outline further sources of Emacs enlightenment. It’s all implementations under GNU/Linux about identifying best of breed components, outlining solutions to common problems and setting the new user on the right course, so as to promote further growth. And as users do develop, further questions inevitably crop up, questions which online documentation is poorly equipped to handle. Packages and packaging from both a user and developer The Road To perspective are often badly covered, if at all. And whereas, in the world of C, everyday libraries are easy to identify, under Common Lisp this is far from the case. Efforts such as key SBCL (Steel Bank Common Lisp) developer and all round good Lisp guy, Dan Barlow’s cirCLe project, which aimed to neatly package implementation, IDE, documentation, libraries and packagingpackaging ttools,ools, wouldwould ccertainlyertainly mmakeake llifeife eeasierasier forfor tthehe nnewbie,ewbie, bbutut Graphical Common OpenMCL all play well here, with work in Lisp IDEs are a rare unfortunatelyunfortunately progressprogress doesdoes sseemeem ttoo hhaveave slowedslowed onon thisthis ffront.ront.
    [Show full text]
  • Common Lisp Ecosystem and Software Distribution
    Introduction to Common Lisp Compilation and system images System definition and building Software distribution Summary Common Lisp ecosystem and the software distribution model Daniel Kochma´nski TurtleWare July 3, 2016 Daniel Kochma´nski Common Lisp software distribution Introduction to Common Lisp Compilation and system images Historical note System definition and building Distinctive features Software distribution Current state Summary 1936 { Alozno Church invents Lambda Calculus 1960 { John McCarthy presents paper about LISP 1973 { MIT Lisp Machine Project 1984 { AI winter (and the unfortunate marriage with Lisp) 1994 { Various dialects unification with Common Lisp 2000 { Renaissance of the community Daniel Kochma´nski Common Lisp software distribution Introduction to Common Lisp Compilation and system images Historical note System definition and building Distinctive features Software distribution Current state Summary Figure: \John McCarthy presents Recursive Functions of Symbolic Expressions and Their Computation by Machine, Part I" { Painting by Ferdinand Bol, 1662 Daniel Kochma´nski Common Lisp software distribution Introduction to Common Lisp Compilation and system images Historical note System definition and building Distinctive features Software distribution Current state Summary Figure: John McCarthy (1927-2011) Daniel Kochma´nski Common Lisp software distribution Introduction to Common Lisp Compilation and system images Historical note System definition and building Distinctive features Software distribution Current state Summary
    [Show full text]