ELI: Programming with Arrays

Total Page:16

File Type:pdf, Size:1020Kb

ELI: Programming with Arrays ELI: Programming with Arrays Hanfeng Chen1 and Wai-Mee Ching2 1 [email protected] 2 [email protected] https://fastarray.appspot.com In this talk: ELI • What is ELI? • An array programming language^1 • Based on APL and influenced by KDB^2 • Support classic APL1 (flat arrays) and database components • Why is ELI? • No variable declarations • Fast programming, simple syntax, and parallel semantics • Easy to learn and easy to communicate! ^1 ELI homepage: https://fastarray.appspot.com ^2 KX company: https://www.kx.com Page 1 Programming with ELI 2 Introduction • ELI language • An ASCII version of APL • Monadic (unary) and dyadic (binary) primitive functions • Equal precedence of all primitive functions • Right-to-left execution order Page 3 ELI Types • Array types (Homogeneous, multi-dimensional) • Boolean (0 or 1), integer, floating-point number • Complex number (e.g. 2j3 for 2+3i) • Character (e.g. “tea”) • Symbol (e.g. `bubble) • List (Non-homogeneous data) • Database-related types • Date and time • Dictionary and tables Page 4 ELI Examples - I • Generating a vector ELI functions !10 // APL: �10 ! : iota 1 2 3 4 5 6 7 8 9 10 * : multiplication • Multiplying the vector by 100 # : reshape 100 * !10 // APL: 100 × �10 100 200 300 400 500 600 700 800 900 1000 • Generating a 3-by-4 matrix 3 4#!10 // APL: 3 4 � �10 1 2 3 4 5 6 7 8 9 10 1 2 Page 5 ELI Examples - II • Complex number ELI functions @1 // � ! : iota 3.141592654 * : multiplication 0j1*@1 // 0 + �� *.: f(x)= �) 0j3.141592654 @ : pi *.0j1*@1 // �-. _1 • Date and time 2020.11.24 + !7 // Next 7 days 2020.11.25 2020.11.26 2020.11.27 2020.11.28 2020.11.29 2020.11.30 2020.12.01 15:46 + 15 // Next 15 minutes 16:01 Page 6 ELI Examples - III • A table of temperature conversion (C to F) ELI functions • T = T × 9/5 + 32 (°F) (°C) ! : iota c,[1.5]32+1.8*c<-$_10+5*!10 * : multiplication 40 104 $ : rotate 35 95 <-: assign 30 86 ,[1.5]: laminate 25 77 20 68 15 59 10 50 5 41 0 32 _5 23 (C) (F) Page 7 ELI Examples - IV • List of numbers, symbols, and chars ELI functions (2 3#!6;`ny `ma `md;'ABCDE’) ! : iota <1 2 3 # : reshape 4 5 6 <`ny `ma `md <ABCDE • Dictionary and table D<-(`sym `price `hq:(`appl `ibm `hp `goog;449.1 108.2 24.5 890.3;4 2#'CANYCACA’)) D sym | appl ibm hp goog price| 449.1 108.2 24.5 890.3 hq | 'CANYCACA' Page 8 ELI Examples - V • Dictionary to table ELI functions []<-T<-&.D &.: flip sym price hq ------------- do: written in ELI appl 449.1 CA ibm 108.2 NY hp 24.5 CA goog 890.3 CA • Database query do 'SELECT sym,hq FROM T WHERE price>100’ sym hq ------- appl CA Ibm NY goog CA SELECT successful. Page 9 ELI Symbols • ELI use one or two characters to represent one APL symbol (Unicode) • E.g., using ? to represent the member function (∈ in APL) • The second character usually is dot (.) • E.g., using ?. to represent the random function (? in APL) • In other cases, the second character is intuitive • E.g., using <- to represent the assign function (← in APL) Page 10 APL ELI ELI Symbols (Overview) Source: ELI Homepage https://fastarray.appspot.com Page 11 ELI Tutorials • ELI Primer • A detailed document for learning ELI programming • ELI for kids • A novel way to learn math and coding • Introduction to Programming with Arrays using ELI • Paperback available on Amazon.com Source: https://fastarray.appspot.com/documents.html Page 12 ELI Studio IDE for ELI programming 13 ELI Studio • ELI Studio provides a GUI interface for programming ELI • Interactive programming environment • Write and load ELI scripts conveniently • Manage variables and libraries easily • Cross-platform support • Windows • Linux • Mac OS Source: https://fastarray.appspot.com/download.html Page 14 ELI Studio (v0.3) Page 15 Programming in ELI Studio • Standard input []<-’Please enter your name:’ Please enter your name: []<-’Welcome ‘,[] Welcome hanfeng • File handle h<-[]open ‘file1.txt’ @1 3.141592654 h<<@1 h<<3 5#!15 // 3-by-5 matrix []close h 0 Page 16 ELI Compiler Compile ELI programs 17 ECC: ELI-to-C Compiler • A compiler executable • Modeled on an APL-to-C compiler written in APL (operates under an APL interpreter) • Written in ELI and self-compiled into a binary executable^1 • Support ELI built-in functions derived from APL1 • Homogeneous array types Source Code Target Code Binary (ELI) ECC (C) GCC Library ^1 Hanfeng Chen, Wai-Mee Ching, and Laurie Hendren, An ELI-to-C Compiler: Design, Implementation, and Performance, Proceedings of the 4th ACM SIGPLAN International Workshop of Libraries, Languages and Compilers for Array Programming (ARRAY'17), pp. 9-16, June 2017. Page 18 Benchmark: morgan (I) Main function morgan (n is a scalar and a is a 2-M-N array) [0] @.r<-n morgan a;x;y;sx;sx2;sy;sy2;sxy // function: morgan(n,a) [1] x<-a[1;;] [2] y<-a[2;;] [3] sx<-n msum x // sx = msum(n, x) [4] sy<-n msum y // sy = msum(n, y) [5] sx2<-n msum x *. 2 // sx2 = msum(n, x^2) [6] sy2<-n msum y *. 2 // sy2 = msum(n, y^2) [7] sxy<-n msum x * y // sxy = msum(n, x*y) [8] r<-((sxy%n)-(sx*sy)%n*.2)%(|((sx2%n)+(sx%n)*.2)*.0.5)* (|(sy2%n)-(sy%n)*.2)*.0.5 [9] @. Page 19 Benchmark: morgan (II) Function msum (n is a scalar and a is a two-dim. array) [0] @.r<-n msum a // function: msum(n,a) [1] r<-((0,n-1)!.t)-0,(0,-n)!.t <- +\a // | Part3 | Part2 | Part1| [2] @. In steps, • Let the matrix a have P rows and Q columns 7 • Part 1: +\a computes � � � = ∑6 � � [�], given � ∈ [0, �) and � ∈ 0, � • Part 2: 0,(0,-n)!.t cuts n tailing columns, adds a leading column (all 0s) and returns the matrix M0 • Part 3: (0,n-1)!.t cuts the first n-1 columns and returns the matrix M1 • Finally, the return value r gets M1-M0 Page 20 Compilation • Parameter information for compiling the function morgan • Left parameter: morgan(integer, float) &LPARM C 1 9 ‘morgan IE’ & • Right parameter: starting from 0, morgan(salar, 3-dim) &RPARM I 1 6 0 0 3 _1 _1 _1 & • Save functions and parameters to an ELI script file, called cmain.esf • Run ./ecc cmain to generate a C file, morgan.c Page 21 Conclusions & Future Work 22 Conclusions • ELI is a succinct modern array language derived from APL • ELI inherits the classic APL1 and borrows database features from KDB • ELI provides an interpreter with a GUI-based IDE (ELI Studio) and an compiler executable for flat array programs Page 23 Future Plans Performance enhancement • Build GPU-based library functions for the ELI interpreter • Add optimizations to the ELI compiler • Generate parallel code for both CPUs and GPUs Feature improvement • Extend the current compiler to support database-related features • Add more features into ELI Studio to help ELI programming • Code highlighting / automatic completion / etc. Page 24 Publications • Hanfeng Chen, Wai-Mee Ching, and Laurie Hendren, An ELI-to-C Compiler: Design, Implementation, and Performance, Proceedings of the 4th ACM SIGPLAN International Workshop of Libraries, Languages and Compilers for Array Programming (ARRAY’17), pp. 9-16, June 2017. • Hanfeng Chen and Wai-Mee Ching, A Succinct Programming Language with a Native Database Component, Int'l Jour. of Prog. Lang. and Appl.(IJPLA) vol.7, No.1, Jan.2017. • Hanfeng Chen, Wai-Mee Ching and Da Zheng, A comparison study on execution performance of MATLAB and APL, accepted to Vector J. Br. APL Assoc. • Hanfeng Chen and Wai-Mee Ching, ELI: a simple system for array programming, Vector J. Br. APL Assoc. Vol.26, No.1, p94-102, 2013. • Wai-Mee Ching, The design and implementation of an APL dialect, ELI, Proceedings of the APL-Berlin-2000 Conference, p69-76, July 2000. Source: https://fastarray.appspot.com/documents.html Page 25 Thank you ELI: Programming with Arrays Hanfeng Chen and Wai-Mee Ching https://fastarray.appspot.com.
Recommended publications
  • An Array-Oriented Language with Static Rank Polymorphism
    An array-oriented language with static rank polymorphism Justin Slepak, Olin Shivers, and Panagiotis Manolios Northeastern University fjrslepak,shivers,[email protected] Abstract. The array-computational model pioneered by Iverson's lan- guages APL and J offers a simple and expressive solution to the \von Neumann bottleneck." It includes a form of rank, or dimensional, poly- morphism, which renders much of a program's control structure im- plicit by lifting base operators to higher-dimensional array structures. We present the first formal semantics for this model, along with the first static type system that captures the full power of the core language. The formal dynamic semantics of our core language, Remora, illuminates several of the murkier corners of the model. This allows us to resolve some of the model's ad hoc elements in more general, regular ways. Among these, we can generalise the model from SIMD to MIMD computations, by extending the semantics to permit functions to be lifted to higher- dimensional arrays in the same way as their arguments. Our static semantics, a dependent type system of carefully restricted power, is capable of describing array computations whose dimensions cannot be determined statically. The type-checking problem is decidable and the type system is accompanied by the usual soundness theorems. Our type system's principal contribution is that it serves to extract the implicit control structure that provides so much of the language's expres- sive power, making this structure explicitly apparent at compile time. 1 The Promise of Rank Polymorphism Behind every interesting programming language is an interesting model of com- putation.
    [Show full text]
  • Compendium of Technical White Papers
    COMPENDIUM OF TECHNICAL WHITE PAPERS Compendium of Technical White Papers from Kx Technical Whitepaper Contents Machine Learning 1. Machine Learning in kdb+: kNN classification and pattern recognition with q ................................ 2 2. An Introduction to Neural Networks with kdb+ .......................................................................... 16 Development Insight 3. Compression in kdb+ ................................................................................................................. 36 4. Kdb+ and Websockets ............................................................................................................... 52 5. C API for kdb+ ............................................................................................................................ 76 6. Efficient Use of Adverbs ........................................................................................................... 112 Optimization Techniques 7. Multi-threading in kdb+: Performance Optimizations and Use Cases ......................................... 134 8. Kdb+ tick Profiling for Throughput Optimization ....................................................................... 152 9. Columnar Database and Query Optimization ............................................................................ 166 Solutions 10. Multi-Partitioned kdb+ Databases: An Equity Options Case Study ............................................. 192 11. Surveillance Technologies to Effectively Monitor Algo and High Frequency Trading ..................
    [Show full text]
  • Application and Interpretation
    Programming Languages: Application and Interpretation Shriram Krishnamurthi Brown University Copyright c 2003, Shriram Krishnamurthi This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License. If you create a derivative work, please include the version information below in your attribution. This book is available free-of-cost from the author’s Web site. This version was generated on 2007-04-26. ii Preface The book is the textbook for the programming languages course at Brown University, which is taken pri- marily by third and fourth year undergraduates and beginning graduate (both MS and PhD) students. It seems very accessible to smart second year students too, and indeed those are some of my most successful students. The book has been used at over a dozen other universities as a primary or secondary text. The book’s material is worth one undergraduate course worth of credit. This book is the fruit of a vision for teaching programming languages by integrating the “two cultures” that have evolved in its pedagogy. One culture is based on interpreters, while the other emphasizes a survey of languages. Each approach has significant advantages but also huge drawbacks. The interpreter method writes programs to learn concepts, and has its heart the fundamental belief that by teaching the computer to execute a concept we more thoroughly learn it ourselves. While this reasoning is internally consistent, it fails to recognize that understanding definitions does not imply we understand consequences of those definitions. For instance, the difference between strict and lazy evaluation, or between static and dynamic scope, is only a few lines of interpreter code, but the consequences of these choices is enormous.
    [Show full text]
  • Chapter 1 Basic Principles of Programming Languages
    Chapter 1 Basic Principles of Programming Languages Although there exist many programming languages, the differences among them are insignificant compared to the differences among natural languages. In this chapter, we discuss the common aspects shared among different programming languages. These aspects include: programming paradigms that define how computation is expressed; the main features of programming languages and their impact on the performance of programs written in the languages; a brief review of the history and development of programming languages; the lexical, syntactic, and semantic structures of programming languages, data and data types, program processing and preprocessing, and the life cycles of program development. At the end of the chapter, you should have learned: what programming paradigms are; an overview of different programming languages and the background knowledge of these languages; the structures of programming languages and how programming languages are defined at the syntactic level; data types, strong versus weak checking; the relationship between language features and their performances; the processing and preprocessing of programming languages, compilation versus interpretation, and different execution models of macros, procedures, and inline procedures; the steps used for program development: requirement, specification, design, implementation, testing, and the correctness proof of programs. The chapter is organized as follows. Section 1.1 introduces the programming paradigms, performance, features, and the development of programming languages. Section 1.2 outlines the structures and design issues of programming languages. Section 1.3 discusses the typing systems, including types of variables, type equivalence, type conversion, and type checking during the compilation. Section 1.4 presents the preprocessing and processing of programming languages, including macro processing, interpretation, and compilation.
    [Show full text]
  • A Modern Reversible Programming Language April 10, 2015
    Arrow: A Modern Reversible Programming Language Author: Advisor: Eli Rose Bob Geitz Abstract Reversible programming languages are those whose programs can be run backwards as well as forwards. This condition impacts even the most basic constructs, such as =, if and while. I discuss Janus, the first im- perative reversible programming language, and its limitations. I then introduce Arrow, a reversible language with modern features, including functions. Example programs are provided. April 10, 2015 Introduction: Many processes in the world have the property of reversibility. To start washing your hands, you turn the knob to the right, and the water starts to flow; the process can be undone, and the water turned off, by turning the knob to the left. To turn your computer on, you press the power button; this too can be undone, by again pressing the power button. In each situation, we had a process (turning the knob, pressing the power button) and a rule that told us how to \undo" that process (turning the knob the other way, and pressing the power button again). Call the second two the inverses of the first two. By a reversible process, I mean a process that has an inverse. Consider two billiard balls, with certain positions and velocities such that they are about to collide. The collision is produced by moving the balls accord- ing to the laws of physics for a few seconds. Take that as our process. It turns out that we can find an inverse for this process { a set of rules to follow which will undo the collision and restore the balls to their original states1.
    [Show full text]
  • APL-The Language Debugging Capabilities, Entirely in APL Terms (No Core Symbol Denotes an APL Function Named' 'Compress," Dumps Or Other Machine-Related Details)
    DANIEL BROCKLEBANK APL - THE LANGUAGE Computer programming languages, once the specialized tools of a few technically trained peo­ p.le, are now fundamental to the education and activities of millions of people in many profes­ SIons, trades, and arts. The most widely known programming languages (Basic, Fortran, Pascal, etc.) have a strong commonality of concepts and symbols; as a collection, they determine our soci­ ety's general understanding of what programming languages are like. There are, however, several ~anguages of g~eat interest and quality that are strikingly different. One such language, which shares ItS acronym WIth the Applied Physics Laboratory, is APL (A Programming Language). A SHORT HISTORY OF APL it struggled through the 1970s. Its international con­ Over 20 years ago, Kenneth E. Iverson published tingent of enthusiasts was continuously hampered by a text with the rather unprepossessing title, A inefficient machine use, poor availability of suitable terminal hardware, and, as always, strong resistance Programming Language. I Dr. Iverson was of the opinion that neither conventional mathematical nota­ to a highly unconventional language. tions nor the emerging Fortran-like programming lan­ At the Applied Physics Laboratory, the APL lan­ guages were conducive to the fluent expression, guage and its practical use have been ongoing concerns publication, and discussion of algorithms-the many of the F. T. McClure Computing Center, whose staff alternative ideas and techniques for carrying out com­ has long been convinced of its value. Addressing the putation. His text presented a solution to this nota­ inefficiency problems, the Computing Center devel­ tion dilemma: a new formal language for writing clear, oped special APL systems software for the IBM concise computer programs.
    [Show full text]
  • Subsistence-Based Socioeconomic Systems in Alaska: an Introduction
    Special Publication No. SP1984-001 Subsistence-Based Socioeconomic Systems in Alaska: An Introduction by Robert J. Wolfe 1984 Alaska Department of Fish and Game Division of Subsistence Symbols and Abbreviations The following symbols and abbreviations, and others approved for the Système International d'Unités (SI), are used without definition in the reports by the Division of Subsistence. All others, including deviations from definitions listed below, are noted in the text at first mention, as well as in the titles or footnotes of tables, and in figure or figure captions. Weights and measures (metric) General Mathematics, statistics centimeter cm Alaska Administrative Code AAC all standard mathematical signs, symbols deciliter dL all commonly-accepted and abbreviations gram g abbreviations e.g., alternate hypothesis HA hectare ha Mr., Mrs., base of natural logarithm e kilogram kg AM, PM, etc. catch per unit effort CPUE kilometer km all commonly-accepted coefficient of variation CV liter L professional titles e.g., Dr., Ph.D., common test statistics (F, t, χ2, etc.) meter m R.N., etc. confidence interval CI milliliter mL at @ correlation coefficient (multiple) R millimeter mm compass directions: correlation coefficient (simple) r east E covariance cov Weights and measures (English) north N degree (angular ) ° cubic feet per second ft3/s south S degrees of freedom df foot ft west W expected value E gallon gal copyright greater than > inch in corporate suffixes: greater than or equal to ≥ mile mi Company Co. harvest per unit effort HPUE nautical mile nmi Corporation Corp. less than < ounce oz Incorporated Inc. less than or equal to ≤ pound lb Limited Ltd.
    [Show full text]
  • APL / J by Seung­Jin Kim and Qing Ju
    APL / J by Seung-jin Kim and Qing Ju What is APL and Array Programming Language? APL stands for ªA Programming Languageº and it is an array programming language based on a notation invented in 1957 by Kenneth E. Iverson while he was at Harvard University[Bakker 2007, Wikipedia ± APL]. Array programming language, also known as vector or multidimensional language, is generalizing operations on scalars to apply transparently to vectors, matrices, and higher dimensional arrays[Wikipedia - J programming language]. The fundamental idea behind the array based programming is its operations apply at once to an entire array set(its values)[Wikipedia - J programming language]. This makes possible that higher-level programming model and the programmer think and operate on whole aggregates of data(arrary), without having to resort to explicit loops of individual scalar operations[Wikipedia - J programming language]. Array programming primitives concisely express broad ideas about data manipulation[Wikipedia ± Array Programming]. In many cases, array programming provides much easier methods and better prospectives to programmers[Wikipedia ± Array Programming]. For example, comparing duplicated factors in array costs 1 line in array programming language J and 10 lines with JAVA. From the given array [13, 45, 99, 23, 99], to find out the duplicated factors 99 in this array, Array programing language J©s source code is + / 99 = 23 45 99 23 99 and JAVA©s source code is class count{ public static void main(String args[]){ int[] arr = {13,45,99,23,99}; int count = 0; for (int i = 0; i < arr.length; i++) { if ( arr[i] == 99 ) count++; } System.out.println(count); } } Both programs return 2.
    [Show full text]
  • Visual Programming Language for Tacit Subset of J Programming Language
    Visual Programming Language for Tacit Subset of J Programming Language Nouman Tariq Dissertation 2013 Erasmus Mundus MSc in Dependable Software Systems Department of Computer Science National University of Ireland, Maynooth Co. Kildare, Ireland A dissertation submitted in partial fulfilment of the requirements for the Erasmus Mundus MSc Dependable Software Systems Head of Department : Dr Adam Winstanley Supervisor : Professor Ronan Reilly June 30, 2013 Declaration I hereby certify that this material, which I now submit for assessment on the program of study leading to the award of Master of Science in Dependable Software Systems, is entirely my own work and has not been taken from the work of others save and to the extent that such work has been cited and acknowledged within the text of my work. Signed:___________________________ Date:___________________________ Abstract Visual programming is the idea of using graphical icons to create programs. I take a look at available solutions and challenges facing visual languages. Keeping these challenges in mind, I measure the suitability of Blockly and highlight the advantages of using Blockly for creating a visual programming environment for the J programming language. Blockly is an open source general purpose visual programming language designed by Google which provides a wide range of features and is meant to be customized to the user’s needs. I also discuss features of the J programming language that make it suitable for use in visual programming language. The result is a visual programming environment for the tacit subset of the J programming language. Table of Contents Introduction ............................................................................................................................................ 7 Problem Statement ............................................................................................................................. 7 Motivation..........................................................................................................................................
    [Show full text]
  • Frederick Phillips Brooks, Jr
    Frederick Phillips Brooks, Jr. Biography Frederick P. Brooks, Jr., was born in 1931 in Durham NC, and grew up in Greenville NC. He received an A.B. summa cum laude in physics from Duke and a Ph.D. in computer science from Harvard, under Howard Aiken, the inventor of the early Harvard computers. He joined IBM, working in Poughkeepsie and Yorktown, NY, 1956-1965. He was an architect of the Stretch and Harvest computers and then was the project manager for the development of IBM's System/360 family of computers and then of the Operating System/360 software. For this work he received a National Medal of Technology jointly with Bob O. Evans and Erich Bloch Brooks and Dura Sweeney in 1957 patented an interrupt system for the IBM Stretch computer that introduced most features of today's interrupt systems. He coined the term computer architecture. His System/360 team first achieved strict compatibility, upward and downward, in a computer family. His early concern for word processing led to his selection of the 8-bit byte and the lowercase alphabet for the System/360, engineering of many new 8-bit input/output devices, and introduction of a character-string datatype in the PL/I programming language. In 1964 he founded the Computer Science Department at the University of North Carolina at Chapel Hill and chaired it for 20 years. Currently, he is Kenan Professor of Computer Science. His principal research is in real-time, three-dimensional, computer graphics—“virtual reality.” His research has helped biochemists solve the structure of complex molecules and enabled architects to “walk through” structures still being designed.
    [Show full text]
  • KDB+ Quick Guide
    KKDDBB++ -- QQUUIICCKK GGUUIIDDEE http://www.tutorialspoint.com/kdbplus/kdbplus_quick_guide.htm Copyright © tutorialspoint.com KKDDBB++ -- OOVVEERRVVIIEEWW This is a complete quide to kdb+ from kx systems, aimed primarily at those learning independently. kdb+, introduced in 2003, is the new generation of the kdb database which is designed to capture, analyze, compare, and store data. A kdb+ system contains the following two components − KDB+ − the database kdatabaseplus Q − the programming language for working with kdb+ Both kdb+ and q are written in k programming language (same as q but less readable). Background Kdb+/q originated as an obscure academic language but over the years, it has gradually improved its user friendliness. APL 1964, AProgrammingLanguage A+ 1988, modifiedAPLbyArthurWhitney K 1993, crispversionofA + , developedbyA. Whitney Kdb 1998, in − memorycolumn − baseddb Kdb+/q 2003, q language – more readable version of k Why and Where to Use KDB+ Why? − If you need a single solution for real-time data with analytics, then you should consider kdb+. Kdb+ stores database as ordinary native files, so it does not have any special needs regarding hardware and storage architecture. It is worth pointing out that the database is just a set of files, so your administrative work won’t be difficult. Where to use KDB+? − It’s easy to count which investment banks are NOT using kdb+ as most of them are using currently or planning to switch from conventional databases to kdb+. As the volume of data is increasing day by day, we need a system that can handle huge volumes of data. KDB+ fulfills this requirement. KDB+ not only stores an enormous amount of data but also analyzes it in real time.
    [Show full text]
  • The Making of the MCM/70 Microcomputer
    The Making of the MCM/70 Microcomputer Zbigniew Stachniak York University, Canada MCM/70, manufactured by Micro Computer Machines (MCM), was a small desktop microcomputer designed to provide the APL programming language environment for business, scientific, and educational use. MCM was among the first companies to fully recognize and act upon microprocessor technology’s immense potential for developing a new generation of cost-effective computing systems. This article discusses the pioneering work on personal microcomputers conducted at MCM in the early 1970s and, in particular, the making of the MCM/70 microcomputer. Personal computing might have started as early forces met in the middle, they would bring as the 1940s, when Edmund Berkeley, a great about a revolution in personal computing.”1 enthusiast of computing and computer educa- Much has already been written about the tion, conceived his first small computing device timing of this convergence and about the peo- and named it Simon. Simon was a relay-based ple and events that were the catalysts for it. One device, and Berkeley published its design interpretation that has long ago filtered into the between 1950 and 1951 in a series of articles in folklore of the modern history of computing Radio Electronics. Alternatively, one might con- and into popular culture depicts the two forces sider personal computing’s time line to have rushing past each other in the period between begun with the Digital Equipment PDP-8 com- the introduction of the first 8-bit microproces- puter, the machine that brought about the era of sor and the announcement of the Altair 8800.
    [Show full text]