Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education

Size: px
Start display at page:

Download "Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education"

Transcription

1 The First European Workshop on Parallel and Distributed Computing Education for Undergraduate Students Euro-EDUPAR 2015 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education August 24 th, 2015, Vienna

2 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education

3 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education Why Parallel Computing?

4 Supercomputers Servers PCs, Laptops Tablets, Smartphones

5 Degree of parallelism Supercomputers Servers PCs, Laptops Tablets, Smartphones

6 Degree of parallelism Parallel/Serial Amdahl s law Synchronization Scheduling Load imbalance Parallel complexity Critical path Race condition Critical resource Critical section Overheads Communications Waiting Scalability Locality Large problems Supercomputers Servers PCs, Laptops Tablets, Smartphones

7 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education Why Supercomputing?

8

9

10

11 If we want to out compete, we have to out compute

12

13

14

15 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education Why Supercomputing Education?

16 Supercomputers Servers PCs, Laptops Tablets, Smartphones

17 Supercomputing Education What is information structure of algorithms and programs? How many students know this notion and can use it?

18 Supercomputing Education What is scalability/efficiency of applications/computers? How many students know root causes of scalability and efficiency degradation? How many students are able to analyze algorithms / codes / architecture for scalability and efficiency?

19 Supercomputing Education How many students know what data locality is and why it is important to keep data locality at a high level in applications for any computing platform? Random Access FFT Linpack

20 Supercomputing Education How many qualified parallel computing university teachers are there in your university / country?

21 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education Why Systematic Approach?

22 Do we need parallel computing education? Exascale (at ) Supercomputers billions cores, Laptops thousands cores, Mobile devices dozens/hundreds cores. Parallelism will be everywhere And what does it mean? All software engineers need to be fluent in the concept of parallelism.

23 It is Time to Act! (Exascale is NOT far away ) Bachelor degree 3(4) years, Master degree 2 years, (6) years at universities = 2020 (2021) If we start this activity now then we get first graduate students at the Exa -point ( ). All our students will live in a Extremely parallel Computer World. It is really time to think seriously about Parallel Computing and Supercomputing education

24 Simple questions? (ask students from your faculties ) What is complexity of a parallel algorithm? Why do we need to know a critical path of an informational graph (data dependency graph)? Is it possible to construct a communication free algorithm for a particular method? How to detect and describe potential parallelism of an algorithm? How to extract potential parallelism from codes or algorithms? What is co-design? What is data locality? How to estimate data locality in my application? How to estimate scalability of an algorithm and/or application? How to improve scalability of an application? How to express my problem in terms of MapReduce model? What is efficiency of a particular application? What parallel programming technology should I use for SMP/GPU/FPGA/vector/cluster/heterogeneous computers? How many software developers will be able to use easily these notions?

25 Simple questions? (ask students from your faculties ) What is complexity of a parallel algorithm? Why do we need to know a critical path of an informational graph (data dependency graph)? Is it possible to construct a communication free algorithm for a particular method? How to detect and describe potential parallelism of an algorithm? How to extract potential parallelism from codes or algorithms? What is co-design? What is data locality? How to estimate data locality in my application? How to estimate scalability of an algorithm and/or application? How to improve scalability of an application? How to express my problem in terms of MapReduce model? What is efficiency of a particular application? What parallel programming technology should I use for SMP/GPU/FPGA/vector/cluster/heterogeneous computers? How many software developers will be able to use easily these notions?

26 i j k Informational Structure is a Key Notion (matrix multiplication as an example) Do i = 1, n Do j = 1, n A(i,j) = 0 Do k = 1, n A(i,j) = A(i,j) + B(i,k)*C(k,j) (1) из i i j j k n i n j (2) из k k j j i i n k n i n j

27 GAUSS elimination method (informational structure) s = s + A(i,j)*x(j) s = s + A(i,j)*x(j) x(i) = (b(i) - s)/a(i,i) Serial only x(i) = (b(i) - s)/a(i,i) Parallel execution do i = n, 1, -1 s = 0 do j = i+1, n s = s + A(i,j)*x(j) end do x(i) = (b(i) - s)/a(i,i) end do Order of iterations is the only difference! do i = n, 1, -1 s = 0 do j = n, i+1, -1 s = s + A(i,j)*x(j) end do x(i) = (b(i) - s)/a(i,i) end do

28 Simple questions? (ask students from your faculties ) What is complexity of a parallel algorithm? Why do we need to know a critical path of an informational graph (data dependency graph)? Is it possible to construct a communication free algorithm for a particular method? How to detect and describe potential parallelism of an algorithm? How to extract potential parallelism from codes or algorithms? What is co-design? What is data locality? How to estimate data locality in my application? How to estimate scalability of an algorithm and/or application? How to improve scalability of an application? How to express my problem in terms of MapReduce model? What is efficiency of a particular application? What parallel programming technology should I use for SMP/GPU/FPGA/vector/cluster/heterogeneous computers? How many software developers will be able to use easily these notions?

29 Efficiency, % Efficiency of Applications (variants of TRIAD operation) Триада 1) A[i] = B[i]*X + C 2) A[i] = B[i]*X[i] + C 3) A[i] = B[i]*X + C[i] 4) A[i] = B[i]*X[i] + C[i] 5) A[ind1[i]] = B[ind1[i]]*X + C 6) A[ind1[i]] = B[ind1[i]]*X[ind1[i]] + C 7) A[ind1[i]] = B[ind1[i]]*X + C[ind1[i]] 8) A[ind1[i]] = B[ind1[i]]*X[ind1[i]] + C[ind1[i]] ind1[i] = i ) A[ind2[i]] = B[ind2[i]]*X + C 10) A[ind2[i]] = B[ind2[i]]*X[ind2[i]] + C 11) A[ind2[i]] = B[ind2[i]]*X + C[ind2[i]] 12) A[ind2[i]] = B[ind2[i]]*X[ind2[i]] + C[ind2[i]] ind2[i] = random_access Courtesy of Vad.Voevodin, MSU

30 Simple questions? (ask students of your faculties ) What is complexity of a parallel algorithm? Why do we need to know a critical path of an informational graph (data dependency graph)? Is it possible to construct a communication free algorithm for a particular method? How to detect and describe potential parallelism of an algorithm? How to extract potential parallelism from codes or algorithms? What is co-design? What is data locality? How to estimate data locality in my application? How to estimate scalability of an algorithm and/or application? How to improve scalability of an application? How to express my problem in terms of MapReduce model? What is efficiency of a particular application? What parallel programming technology should I use for SMP/GPU/FPGA/vector/cluster/heterogeneous computers? How many software developers will be able to use easily these notions?

31 What could be a solution? Trainings or student schools?!

32 Trainings and Schools Trainings on Intel programming tools. Optimization and tuning of user s applications. Student summer schools on parallel programming technologies Trainings on Accelrys Material Studio

33 GPU Technology Schools Major topics at schools: Massively Parallel Processing GPGPU Evolution Architecture of NVIDIA GPUs CUDA Programming Model CPU-GPU Interaction CUDA Memory Types Standard Algorithms on GPU: Matrix Multiplication, Reduction CUDA application libraries: CURAND, CUBLAS, CUSPARSE, CUFFT, MAGMA, Thrust Program Profiling, Performance Analysis, Debugging and Optimization Asynchronous Execution and CUDA Streams Multi-GPU Systems: Programming and Debugging nvcc Compiler Driver, cuda-gdb Debugger Kernel Configuration and Paralleling of Loops OpenACC Directives In collaboration with NVIDIA and Applied Parallel Computing

34 What could be a solution? Not only trainings or student schools We must think about education! No Supercomputing and Parallel Computing Education No Exascale Future

35 Is Parallel Computing & Supercomputing a strategically important area? Informatics Europe: a survey on needs for Supercomputing education Respondents 64, from 22 countries: Austria Denmark Estonia France 3 Germany 5 Greece India 3 Iran Italy Latvia Norway Pakistan Portugal Romania Russia 12 Serbia Spain 15 Sweden Switzerland Turkey 8 Ukraine United Kingdom 3

36 Challenges of a Systematic Approach to Parallel Computing and Supercomputing Education Why Challenges?

37 HPC Educational Infrastructure Interaction with government, ministries, funding agencies. Close contacts with leading IT companies and research institutes. Strong interuniversity collaboration. Body of knowledge on HPC & Parallel Computing. All target groups: researchers, students, teachers, schoolchildren.. All forms: Bachelors, Masters, PhDs, schools, universities, online.. Courses, textbooks, intensive practice, trainings on HPC. Individual research projects of students. Bank of exercises and tests on HPC & Parallel Computing. National scientific conferences and student schools. Research on advanced computing techniques, HW, SW, apps HPC and Industry. Supercomputing and HPC resources. International collaboration. PR, mass-media, Internet resources on HPC.

38 HPC Educational Infrastructure Interaction with government, ministries, funding agencies. Close contacts with leading IT companies and research institutes. Strong interuniversity collaboration. Body of knowledge on HPC & Parallel Computing. All target groups: researchers, students, teachers, schoolchildren.. All forms: Bachelors, Masters, PhDs, schools, universities, online.. Courses, textbooks, intensive practice, trainings on HPC. Individual research projects of students. Bank of exercises and tests on HPC & Parallel Computing. National scientific conferences and student schools. Research on advanced computing techniques, HW, SW, apps HPC and Industry. Supercomputing and HPC resources. International collaboration. PR, mass-media, Internet resources on HPC.

39 Supercomputing Consortium of Russian Universities (

40

41 HPC Educational Infrastructure Interaction with government, ministries, funding agencies. Close contacts with leading IT companies and research institutes. Strong interuniversity collaboration. Body of knowledge on HPC & Parallel Computing. All target groups: researchers, students, teachers, schoolchildren.. All forms: Bachelors, Masters, PhDs, schools, universities, online.. Courses, textbooks, intensive practice, trainings on HPC. Individual research projects of students. Bank of exercises and tests on HPC & Parallel Computing. National scientific conferences and student schools. Research on advanced computing techniques, HW, SW, apps HPC and Industry. Supercomputing and HPC resources. International collaboration. PR, mass-media, Internet resources on HPC.

42 Project Supercomputing Education Presidential Commission for Modernization and Technological Development of Russia s Economy Duration: Coordinator of the project: M.V.Lomonosov Moscow State University Wide collaboration of universities: Nizhny Novgorod State University Tomsk State University South Ural State University St. Petersburg State University of IT, Mechanics and Optics Southern Federal University Far Eastern Federal University Moscow Institute of Physics and Technology (State University) members of Supercomputing Consortium of Russian Universities More than 600 people from 75 universities were involved in the project. Budget: 236,42 million rubles (about $8M)

43 National System of Research and Education Centers on Supercomputing Technologies in Federal Districts of Russia 8 centers were established in 7 federal districts of Russia during

44 Entry-Level Training on Supercomputing Technologies 3269 people passed trainings, 60+ universities from 35 cities of Russia All Federal Districts of Russia

45 Series of Books Supercomputing Education National Book Contest-2013: Nomination Textbooks of the 21 th century 1 st Prize There are 21 books in the Supercomputing Education series books of the series were delivered to 43 Russian universities.

46 Retraining Programs for Faculty Staff 453 faculty staff passed trainings, 50 organisations, 29 cities, 10 education programs. All Federal districts of Russia.

47 Education Courses on Supercomputing Technologies Development of new courses and extension of existing ones 50 courses covering all major parts of the Body of Knowledge in SC "Parallel Computing", "High Performance Computing for Multiprocessing Multi-Core Systems", "Parallel Database Systems", "Practical Training on MPI and OpenMP", "Parallel Programming Tools for Shared Memory Systems", "Distributed Object Technologies", "Scientific Data Visualization on Supercomputers", "Natural Models of Parallel Computing", "Solution of Aero- and Hydrodynamic problems by Flow Vision", "Algorithms and Complexity Analysis", "History and Methodology of Parallel Programming", "Parallel Numerical Methods", "Parallel Computations in Tomography", "Final-Element Modeling with Distributed Computations", "Parallel Computing on CUDA and OpenCL Technologies", "Biological System Modeling on GPU, "High Performance Computing System: Architecture and Software",

48 Intensive Trainings in Special Groups 40 special groups of trainees were formed, 790 trainees successfully passed advanced training, 15 educational programs, All Federal districts of Russia.

49 IT-Companies + Research Institutes & Universities (special group of students on Parallel Software Development) 55 students of MSU (Math, Physics, Chemistry, Biology, ) Moscow State University in collaboration with: Intel T-Platforms NVIDIA TESIS IBM Center on Oil & Gas Research Keldysh Institute of Applied Mathematics, RAS Institute of Numerical Mathematics, RAS

50 Supercomputing Education Project (key results for ) National system of research and education centers on supercomputing technologies: 8 centers in 7 Federal districts of Russia, Body of Knowledge on parallel computing and supercomputing, Russian universities involved in supercomputing education 75, Entry-level trainings: 3269 people, 60+ universities, 34 Russian cities, Intensive training in special groups 790 people, 40 special groups, Retrained faculty staff on HPC technologies 453 people, 50 organizations, New and modified curriculum and courses of lectures 50, Using distant learning technology 731 people, 100 cities, Partners from science, education and industry 120 Russian and 65 foreign organizations, Series of books and textbooks Supercomputing Education 21 books, books were delivered to 43 Russian universities, National system of scientific conferences and students schools on HPC,

51 HPC Educational Infrastructure Interaction with government, ministries, funding agencies. Close contacts with leading IT companies and research institutes. Strong interuniversity collaboration. Body of knowledge on HPC & Parallel Computing. All target groups: researchers, students, teachers, schoolchildren.. All forms: Bachelors, Masters, PhDs, schools, universities, online.. Courses, textbooks, intensive practice, trainings on HPC. Individual research projects of students. Bank of exercises and tests on HPC & Parallel Computing. National scientific conferences and student schools. Research on advanced computing techniques, HW, SW, apps HPC and Industry. Supercomputing and HPC resources. International collaboration. PR, mass-media, Internet resources on HPC.

52 Moscow State University (established in 1755) 41 faculties 350+ departments 5 major research institutes students, 2500 full doctors (Dr.Sci.), 6000 PhDs, full professors, 5000 researchers.

53 Computing Center, MSU, 1955

54 MSU Computing Center, 1956 Strela is the first Russian massproduction computer Peak performance: 2000 instr/sec Total area: 300 m 2 Power consumption: 150 kwatt

55 MSU Computing Center, 1959 Setun computer The first computer in the world based on ternary (-1/0/1) logic.

56 HPC Stages at MSU

57 Computing Facilities of Moscow State University (from 1956 up to now) Strela Setun BESM BlueGene/P Lomonosov Chebyshev

58 Computing Facilities of Moscow State University (from 1956 up to now) Brief Stats on MSU Supercomputer Center Users: 2511 Projects: 1607 Organizations: 302 MSU Faculties / Institutes: 20+ Computational science is everywhere 1 rack = 256 nodes: Intel + NVIDIA = 515 Tflop/s Lomonosov-2 supercomputer (5 racks) = 2.5 Pflop/s

59 Computing Facilities of Moscow State University (brief statistics) OpenMP Parallel methods and algorithms Debugging of parallel applications Optimization and fine tuning of applications GPU programming MPI Requests for trainings

60 Computing Facilities of Moscow State University (brief statistics) Diversity of software in use

61 Computing Facilities of Moscow State University (brief statistics) Diversity of parallel programming technologies in use

62 Supercomputer Centers and Applications Challenge of the Day Extremely Low Efficiency (for free)

63 Efficiency of Supercomputing Centers (straightforward approach) Peak performance of a core = 12 Gflops 400 Mflops = 3,33% Average performance (one core) of Chebyshev supercomputer for 3 days

64 Efficiency of Supercomputing Centers 1 Pflop/s system What do we expect? useful 1Pflop * 60sec * 60min * 24hours * 365days = 31,5 ZettaFlop (10 21 ) per year What is in reality? A small, small, small fraction Supercomputers and Steam Locomotives Who are more efficient? Current trend: peculiarities of hardware, complicated job flows, poor data locality, huge degree of parallelism in hardware, etc decrease efficiency of supercomputers dramatically.

65 One-semester course for Bachelors: Supercomputers and Parallel Data Processing at CMC MSU Solving problems: main stages Problem Method Programming Technology Supercomputer (millions, billions ) Compiler Algorithm Code Problem-specific side Computer-specific side

66 One-semester course for Bachelors: Supercomputers and Parallel Data Processing at CMC MSU Solving problems: main stages Problem Supercomputer (millions, billions ) Method Programming Technology Structure of Algorithms and Programs Computer Architectures Compiler Algorithm Parallel Programming Technologies Code Problem-specific side Computer-specific side

67 Supercomputers and Parallel Data Processing (one-semester course for Bachelors at CMC MSU) Lectures Introduction. Computers/supercomputers, parallel computing, large problems, history of parallelism in computer architecture, supercomputing in our life, Amdahl s law Architecture of parallel computing systems. Shared/distributed memory computers, SMP/NUMA/ccNUMA, multicore processors, clusters, distributed computing, vector-parallel computers, vector instructions, VLIW, superscalar architectures, GPU, exascale challenges Performance of parallel computing systems. R peak and R max, MIPS/Mflops, Linpack, STREAM, NPB, HPCC, APEX, general-purpose and special-purpose processors, root causes for performance degradation Parallel programming technologies. Parallel programs, SPMD, Masters/Workers; parallel programming technologies: efficiency, productivity, portability; MPI, OpenMP, Linda, Send/Recv/Put/Get, efficiency, scalability Introduction to information structure of algorithms and programs. Graph-based models of programs, control/information graphs, graphs/histories, information (dependency) graph, information dependency, information independency, parallel processing, resource of parallelism, equivalent transformations of codes, critical path

68 What is at the end?

69 What models can be used for development of parallel codes? SPMD NUMA Master / Workers VLIW Send / Receive Put / Get Correct YES YES YES YES Key words: models, parallel program, computer architectures, parallel processes, message passing, shared and distributed memory computers

70 What is at the end?

71 A computer multiplies two square dense matrices (type real) by the classical method for 5 seconds at a performance of 50 Gflops. What is the matrix size? Correct 500 * * * * * 5000 YES There is no correct answer Key words: complexity of algorithms, structure of algorithms, sustained performance, peak performance, serial and parallel computing

72 Algorithms + Software + Architectures Is a Key Point of Supercomputing Education

73 HPC Educational Infrastructure Interaction with government, ministries, funding agencies. Close contacts with leading IT companies and research institutes. Strong interuniversity collaboration. Body of knowledge on HPC & Parallel Computing. All target groups: researchers, students, teachers, schoolchildren.. All forms: Bachelors, Masters, PhDs, schools, universities, online.. Courses, textbooks, intensive practice, trainings on HPC. Individual research projects of students. Bank of exercises and tests on HPC & Parallel Computing. National scientific conferences and student schools. Research on advanced computing techniques, HW, SW, apps HPC and Industry. Supercomputing and HPC resources. International collaboration. PR, mass-media, Internet resources on HPC.

74 National system of student schools February, Arkhangelsk April, Saint-Petersburg June, Moscow October, Nizhny Novgorod December, Tomsk

75 Summer Supercomputing Academy at Moscow State University June,22 July,3, 2015 Plenary lectures by prominent scientists, academicians, CEO/CTO s from Russia and abroad, 6 parallel educational tracks, Trainings on a variety of topics, Attendees: from students up to professors (about 120 attendees). Supported by: Intel, IBM, NVIDIA, T-Platforms, HP, NICEVT

76 Scientific workshop "Extreme Scale Scientific Computing"

77 Summer Supercomputing Academy at Moscow State University June,22 July,3, 2015 Educational tracks: MPI / OpenMP programming technologies NVIDIA GPU programming technologies Intel new architectures and software tools Industrial mathematics and computational hydrodynamics OpenFOAM/Salome/Paraview open software Parallel computing for school teachers of informatics Supported by: Intel, IBM, NVIDIA, T-Platforms, HP, NICEVT

78

79 Schoolchildren at MSU Supercomputing Center (600+ visitors per year)

80

81 Schoolchildren at MSU Supercomputing Center (600+ visitors per year)

82 Parallel Computing and Primary School? Easily! Can you do it faster? How to work in a team? Parallel execution Synchronization Synchronization Load balancing Scheduling Critical resource Courtesy of M.A.Plaksin, Perm, Russia

83 Parallel Computing and Primary School? Easily! Can you do it faster? Parallel execution Load balancing Parallel/Serial Amdahl s law Synchronization Scheduling Load imbalance Parallel complexity Critical path Race condition Critical resource Critical section Overheads Communications Waiting Scalability Locality Large problems Synchronization Scheduling How to work in a team? Synchronization Critical resource Courtesy of M.A.Plaksin, Perm, Russia

84 Who will live/work beyond Exascale? Supercomputers Servers PCs, Laptops Tablets, Smartphones

85 Who will live/work beyond Exascale? Supercomputers Servers PCs, Laptops Tablets, Smartphones

86 My deep gratitude to: Victor Gergel, NNSU Nina Popova, MSU Our Colleagues from Supercomputing Consortium of Russian Universities

87 The First European Workshop on Parallel and Distributed Computing Education for Undergraduate Students Euro-EDUPAR 2015 Thank You! August 24 th, 2015, Vienna

international PROJECTS MOSCOW

international PROJECTS MOSCOW international PROJECTS MOSCOW Lomonosov Moscow State University, Faculty of Journalism INTERNATIONAL EXCHANGES Journalism & Communication Partners IHECS Lomonosov Moscow State University, Faculty of Journalism

More information

May To print or download your own copies of this document visit Name Date Eurovision Numeracy Assignment

May To print or download your own copies of this document visit  Name Date Eurovision Numeracy Assignment 1. An estimated one hundred and twenty five million people across the world watch the Eurovision Song Contest every year. Write this number in figures. 2. Complete the table below. 2004 2005 2006 2007

More information

Introduction Research Teaching Cooperation Faculties. University of Oulu

Introduction Research Teaching Cooperation Faculties. University of Oulu University of Oulu Founded in 1958 faculties 1 000 students 2900 employees Total funding EUR 22 million Among the largest universities in Finland with an exceptionally wide scientific base Three universities

More information

HIGHER EDUCATION IN POLAND

HIGHER EDUCATION IN POLAND http://en.uw.edu.pl HIGHER EDUCATION IN POLAND 132 public Higher Education Institutions (HEIs) 1.4 million students every year receive their education in Poland 65 800 long-term international students

More information

Welcome to. ECML/PKDD 2004 Community meeting

Welcome to. ECML/PKDD 2004 Community meeting Welcome to ECML/PKDD 2004 Community meeting A brief report from the program chairs Jean-Francois Boulicaut, INSA-Lyon, France Floriana Esposito, University of Bari, Italy Fosca Giannotti, ISTI-CNR, Pisa,

More information

Education: Integrating Parallel and Distributed Computing in Computer Science Curricula

Education: Integrating Parallel and Distributed Computing in Computer Science Curricula IEEE DISTRIBUTED SYSTEMS ONLINE 1541-4922 2006 Published by the IEEE Computer Society Vol. 7, No. 2; February 2006 Education: Integrating Parallel and Distributed Computing in Computer Science Curricula

More information

National Academies STEM Workforce Summit

National Academies STEM Workforce Summit National Academies STEM Workforce Summit September 21-22, 2015 Irwin Kirsch Director, Center for Global Assessment PIAAC and Policy Research ETS Policy Research using PIAAC data America s Skills Challenge:

More information

Software Maintenance

Software Maintenance 1 What is Software Maintenance? Software Maintenance is a very broad activity that includes error corrections, enhancements of capabilities, deletion of obsolete capabilities, and optimization. 2 Categories

More information

SOCRATES PROGRAMME GUIDELINES FOR APPLICANTS

SOCRATES PROGRAMME GUIDELINES FOR APPLICANTS SOCRATES PROGRAMME GUIDELINES FOR APPLICANTS The present document contains a description of the financial support available under all parts of the Community action programme in the field of education,

More information

Challenges for Higher Education in Europe: Socio-economic and Political Transformations

Challenges for Higher Education in Europe: Socio-economic and Political Transformations Challenges for Higher Education in Europe: Socio-economic and Political Transformations Steinhardt Institute NYU 15 June, 2017 Peter Maassen US governance of higher education EU governance of higher

More information

ATENEA UPC AND THE NEW "Activity Stream" or "WALL" FEATURE Jesus Alcober 1, Oriol Sánchez 2, Javier Otero 3, Ramon Martí 4

ATENEA UPC AND THE NEW Activity Stream or WALL FEATURE Jesus Alcober 1, Oriol Sánchez 2, Javier Otero 3, Ramon Martí 4 ATENEA UPC AND THE NEW "Activity Stream" or "WALL" FEATURE Jesus Alcober 1, Oriol Sánchez 2, Javier Otero 3, Ramon Martí 4 1 Universitat Politècnica de Catalunya (Spain) 2 UPCnet (Spain) 3 UPCnet (Spain)

More information

Overall student visa trends June 2017

Overall student visa trends June 2017 Overall student visa trends June 2017 Acronyms Acronyms FSV First-time student visas The number of visas issued to students for the first time. Visas for dependants and Section 61 applicants are excluded

More information

Python Machine Learning

Python Machine Learning Python Machine Learning Unlock deeper insights into machine learning with this vital guide to cuttingedge predictive analytics Sebastian Raschka [ PUBLISHING 1 open source I community experience distilled

More information

The Rise of Populism. December 8-10, 2017

The Rise of Populism. December 8-10, 2017 The Rise of Populism December 8-10, 2017 The Rise of Populism LIST OF PARTICIPATING SCHOOL Byron College B Arsakeio Tositseio Lykeio Ekalis A Tositseio Arsakeio Lykeio Ekalis QSI Tbilisi Ionios School

More information

New Models for Norwegian - Russian Education and Research Cooperation in the Field of Energy

New Models for Norwegian - Russian Education and Research Cooperation in the Field of Energy New Models for Norwegian - Russian Education and Research Cooperation in the Field of Energy Frode Mellemvik High North Center for Business and Governance, Bodø Brussels, April 15th, 2010 1 The High North

More information

Tailoring i EW-MFA (Economy-Wide Material Flow Accounting/Analysis) information and indicators

Tailoring i EW-MFA (Economy-Wide Material Flow Accounting/Analysis) information and indicators Tailoring i EW-MFA (Economy-Wide Material Flow Accounting/Analysis) information and indicators to developing Asia: increasing research capacity and stimulating policy demand for resource productivity Chika

More information

2017 Florence, Italty Conference Abstract

2017 Florence, Italty Conference Abstract 2017 Florence, Italty Conference Abstract Florence, Italy October 23-25, 2017 Venue: NILHOTEL ADD: via Eugenio Barsanti 27 a/b - 50127 Florence, Italy PHONE: (+39) 055 795540 FAX: (+39) 055 79554801 EMAIL:

More information

BMBF Project ROBUKOM: Robust Communication Networks

BMBF Project ROBUKOM: Robust Communication Networks BMBF Project ROBUKOM: Robust Communication Networks Arie M.C.A. Koster Christoph Helmberg Andreas Bley Martin Grötschel Thomas Bauschert supported by BMBF grant 03MS616A: ROBUKOM Robust Communication Networks,

More information

OCW Global Conference 2009 MONTERREY, MEXICO BY GARY W. MATKIN DEAN, CONTINUING EDUCATION LARRY COOPERMAN DIRECTOR, UC IRVINE OCW

OCW Global Conference 2009 MONTERREY, MEXICO BY GARY W. MATKIN DEAN, CONTINUING EDUCATION LARRY COOPERMAN DIRECTOR, UC IRVINE OCW OCW Global Conference 2009 MONTERREY, MEXICO BY GARY W. MATKIN DEAN, CONTINUING EDUCATION LARRY COOPERMAN DIRECTOR, UC IRVINE OCW 200 institutional members in the OCWC Over 8,200 courses posted Over 130

More information

Science and Technology Indicators. R&D statistics

Science and Technology Indicators. R&D statistics 2014 Science and Technology Indicators R&D statistics Science and Technology Indicators R&D statistics 2014 Published by NIFU Nordic Institute for Studies in Innovation, Research and Education Address

More information

California Digital Libraries Discussion Group. Trends in digital libraries and scholarly communication among European Academic Research Libraries

California Digital Libraries Discussion Group. Trends in digital libraries and scholarly communication among European Academic Research Libraries California Digital Libraries Discussion Group Trends in digital libraries and scholarly communication among European Academic Research Libraries Valentina Comba InterLibrary Center (CIB) University of

More information

ENGINEERING What is it all about?

ENGINEERING What is it all about? ENGINEERING What is it all about? George S. Dulikravich, Ph.D., FASME, FAAM, FRAeS Professor, Founder and Director of Multidisciplinary Analysis, Inverse Design, Robust Optimization and Control - MAIDROC

More information

RUFINA GAFEEVA Curriculum Vitae

RUFINA GAFEEVA Curriculum Vitae RUFINA GAFEEVA Curriculum Vitae University of Cologne, Chair of Economic and Social Psychology Herbert-Lewin-Straße 2, Room: 3.40, 50931 Cologne, Germany gafeeva@wiso.uni-koeln.de Research Interests Consumer

More information

Department of Education and Skills. Memorandum

Department of Education and Skills. Memorandum Department of Education and Skills Memorandum Irish Students Performance in PISA 2012 1. Background 1.1. What is PISA? The Programme for International Student Assessment (PISA) is a project of the Organisation

More information

ОТЕЧЕСТВЕННАЯ И ЗАРУБЕЖНАЯ ПЕДАГОГИКА

ОТЕЧЕСТВЕННАЯ И ЗАРУБЕЖНАЯ ПЕДАГОГИКА ОТЕЧЕСТВЕННАЯ И ЗАРУБЕЖНАЯ ПЕДАГОГИКА 2 2107 Olga S. Andreeva, PhD (Philology), Associate Professor, Consultant, "Fund of Enterprise Restructuring and Financial Institutions Development" E-mail: osandreeva@yandex.ru

More information

Strategy and Design of ICT Services

Strategy and Design of ICT Services Strategy and Design of IT Services T eaching P lan Telecommunications Engineering Strategy and Design of ICT Services Teaching guide Activity Plan Academic year: 2011/12 Term: 3 Project Name: Strategy

More information

HIGHLIGHTS OF FINDINGS FROM MAJOR INTERNATIONAL STUDY ON PEDAGOGY AND ICT USE IN SCHOOLS

HIGHLIGHTS OF FINDINGS FROM MAJOR INTERNATIONAL STUDY ON PEDAGOGY AND ICT USE IN SCHOOLS HIGHLIGHTS OF FINDINGS FROM MAJOR INTERNATIONAL STUDY ON PEDAGOGY AND ICT USE IN SCHOOLS Hans Wagemaker Executive Director, IEA Nancy Law Director, CITE, University of Hong Kong SITES 2006 International

More information

The Survey of Adult Skills (PIAAC) provides a picture of adults proficiency in three key information-processing skills:

The Survey of Adult Skills (PIAAC) provides a picture of adults proficiency in three key information-processing skills: SPAIN Key issues The gap between the skills proficiency of the youngest and oldest adults in Spain is the second largest in the survey. About one in four adults in Spain scores at the lowest levels in

More information

Competition in Information Technology: an Informal Learning

Competition in Information Technology: an Informal Learning 228 Eurologo 2005, Warsaw Competition in Information Technology: an Informal Learning Valentina Dagiene Vilnius University, Faculty of Mathematics and Informatics Naugarduko str.24, Vilnius, LT-03225,

More information

Universities as Laboratories for Societal Multilingualism: Insights from Implementation

Universities as Laboratories for Societal Multilingualism: Insights from Implementation Universities as Laboratories for Societal Multilingualism: Insights from Implementation Dr. Thomas Vogel Europa-Universität Viadrina vogel@europa-uni.de The Agenda 1. Language policy issues 2. The global

More information

Introduction to Mobile Learning Systems and Usability Factors

Introduction to Mobile Learning Systems and Usability Factors Introduction to Mobile Learning Systems and Usability Factors K.B.Lee Computer Science University of Northern Virginia Annandale, VA Kwang.lee@unva.edu Abstract - Number of people using mobile phones has

More information

PROGRESS TOWARDS THE LISBON OBJECTIVES IN EDUCATION AND TRAINING

PROGRESS TOWARDS THE LISBON OBJECTIVES IN EDUCATION AND TRAINING COMMISSION OF THE EUROPEAN COMMUNITIES Commission staff working document PROGRESS TOWARDS THE LISBON OBJECTIVES IN EDUCATION AND TRAINING Indicators and benchmarks 2008 This publication is based on document

More information

Circuit Simulators: A Revolutionary E-Learning Platform

Circuit Simulators: A Revolutionary E-Learning Platform Circuit Simulators: A Revolutionary E-Learning Platform Mahi Itagi Padre Conceicao College of Engineering, Verna, Goa, India. itagimahi@gmail.com Akhil Deshpande Gogte Institute of Technology, Udyambag,

More information

06-07 th September 2012, Constanta Romania th Sept 2012

06-07 th September 2012, Constanta Romania th Sept 2012 Cerintele actuale pentru pregatirea specialistilor din industria alimentara din Europa si strategii pentru viitorul acestei cariere - rezultate ale proiectului european fp7 Track Fast Training Requirements

More information

FUZZY EXPERT. Dr. Kasim M. Al-Aubidy. Philadelphia University. Computer Eng. Dept February 2002 University of Damascus-Syria

FUZZY EXPERT. Dr. Kasim M. Al-Aubidy. Philadelphia University. Computer Eng. Dept February 2002 University of Damascus-Syria FUZZY EXPERT SYSTEMS 16-18 18 February 2002 University of Damascus-Syria Dr. Kasim M. Al-Aubidy Computer Eng. Dept. Philadelphia University What is Expert Systems? ES are computer programs that emulate

More information

University of Groningen. Systemen, planning, netwerken Bosman, Aart

University of Groningen. Systemen, planning, netwerken Bosman, Aart University of Groningen Systemen, planning, netwerken Bosman, Aart IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to cite from it. Please check the document

More information

The International Coach Federation (ICF) Global Consumer Awareness Study

The International Coach Federation (ICF) Global Consumer Awareness Study www.pwc.com The International Coach Federation (ICF) Global Consumer Awareness Study Summary of the Main Regional Results and Variations Fort Worth, Texas Presentation Structure 2 Research Overview 3 Research

More information

Modeling user preferences and norms in context-aware systems

Modeling user preferences and norms in context-aware systems Modeling user preferences and norms in context-aware systems Jonas Nilsson, Cecilia Lindmark Jonas Nilsson, Cecilia Lindmark VT 2016 Bachelor's thesis for Computer Science, 15 hp Supervisor: Juan Carlos

More information

From Virtual University to Mobile Learning on the Digital Campus: Experiences from Implementing a Notebook-University

From Virtual University to Mobile Learning on the Digital Campus: Experiences from Implementing a Notebook-University rom Virtual University to Mobile Learning on the Digital Campus: Experiences from Implementing a Notebook-University Jörg STRATMANN Chair for media didactics and knowledge management, University Duisburg-Essen

More information

Universität Innsbruck Facts and Figures

Universität Innsbruck Facts and Figures Universität Innsbruck Facts and Figures 2017 Foreword by the Rector With this leaflet we would like to provide you with an overview of last year s exciting developments at the University of Innsbruck.

More information

Impact of Educational Reforms to International Cooperation CASE: Finland

Impact of Educational Reforms to International Cooperation CASE: Finland Impact of Educational Reforms to International Cooperation CASE: Finland February 11, 2016 10 th Seminar on Cooperation between Russian and Finnish Institutions of Higher Education Tiina Vihma-Purovaara

More information

The European Higher Education Area in 2012:

The European Higher Education Area in 2012: PRESS BRIEFING The European Higher Education Area in 2012: Bologna Process Implementation Report EURYDI CE CONTEXT The Bologna Process Implementation Report is the result of a joint effort by Eurostat,

More information

On the Combined Behavior of Autonomous Resource Management Agents

On the Combined Behavior of Autonomous Resource Management Agents On the Combined Behavior of Autonomous Resource Management Agents Siri Fagernes 1 and Alva L. Couch 2 1 Faculty of Engineering Oslo University College Oslo, Norway siri.fagernes@iu.hio.no 2 Computer Science

More information

The recognition, evaluation and accreditation of European Postgraduate Programmes.

The recognition, evaluation and accreditation of European Postgraduate Programmes. 1 The recognition, evaluation and accreditation of European Postgraduate Programmes. Sue Lawrence and Nol Reverda Introduction The validation of awards and courses within higher education has traditionally,

More information

EQE Candidate Support Project (CSP) Frequently Asked Questions - National Offices

EQE Candidate Support Project (CSP) Frequently Asked Questions - National Offices EQE Candidate Support Project (CSP) Frequently Asked Questions - National Offices What is the EQE Candidate Support Project (CSP)? What is the distribution of Professional Representatives within EPC member

More information

IAB INTERNATIONAL AUTHORISATION BOARD Doc. IAB-WGA

IAB INTERNATIONAL AUTHORISATION BOARD Doc. IAB-WGA GROUP A EDUCATION, TRAINING AND QUALIFICATION MINUTES OF THE MEETING HELD ON 28 AUGUST 2006 IN QUÉBEC CANADA 1. Welcome and Apologies Christian AHRENS opened the meeting welcoming everyone. Apologies had

More information

LANGUAGES, LITERATURES AND CULTURES

LANGUAGES, LITERATURES AND CULTURES FACULTY OF ARTS, HUMANITIES AND SOCIAL SCIENCES LANGUAGES, LITERATURES AND CULTURES 1 2 3 4 5 6 7 8 FRENCH STUDIES CONCURRENT FRENCH/EDUCATION GREEK AND ROMAN STUDIES MODERN LANGUAGES MODERN LANGUAGES

More information

PROCEEDINGS OF SPIE. Double degree master program: Optical Design

PROCEEDINGS OF SPIE. Double degree master program: Optical Design PROCEEDINGS OF SPIE SPIEDigitalLibrary.org/conference-proceedings-of-spie Double degree master program: Optical Design Alexey Bakholdin, Malgorzata Kujawinska, Irina Livshits, Adam Styk, Anna Voznesenskaya,

More information

MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE

MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE Master of Science (M.S.) Major in Computer Science 1 MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE Major Program The programs in computer science are designed to prepare students for doctoral research,

More information

"On-board training tools for long term missions" Experiment Overview. 1. Abstract:

On-board training tools for long term missions Experiment Overview. 1. Abstract: "On-board training tools for long term missions" Experiment Overview 1. Abstract 2. Keywords 3. Introduction 4. Technical Equipment 5. Experimental Procedure 6. References Principal Investigators: BTE:

More information

An Introduction to Simio for Beginners

An Introduction to Simio for Beginners An Introduction to Simio for Beginners C. Dennis Pegden, Ph.D. This white paper is intended to introduce Simio to a user new to simulation. It is intended for the manufacturing engineer, hospital quality

More information

EUROPEAN UNIVERSITIES LOOKING FORWARD WITH CONFIDENCE PRAGUE DECLARATION 2009

EUROPEAN UNIVERSITIES LOOKING FORWARD WITH CONFIDENCE PRAGUE DECLARATION 2009 EUROPEAN UNIVERSITIES LOOKING FORWARD WITH CONFIDENCE PRAGUE DECLARATION 2009 Copyright 2009 by the European University Association All rights reserved. This information may be freely used and copied for

More information

2001 MPhil in Information Science Teaching, from Department of Primary Education, University of Crete.

2001 MPhil in Information Science Teaching, from Department of Primary Education, University of Crete. Athanasia K. Margetousaki Nikolaou Plastira 100, Vassilika Vouton GR 700 13 Heraklion, Crete Greece Phone. +302810391828 Fax: +30 2810 391583 e-mail amarge@iacm.forht.gr, amarge@edc.uoc.gr STUDIES 1995

More information

DEVELOPMENT AID AT A GLANCE

DEVELOPMENT AID AT A GLANCE DEVELOPMENT AID AT A GLANCE STATISTICS BY REGION 2. AFRICA 217 edition 2.1. ODA TO AFRICA - SUMMARY 2.1.1. Top 1 ODA receipts by recipient USD million, net disbursements in 21 2.1.3. Trends in ODA 1 Ethiopia

More information

Question 1 Does the concept of "part-time study" exist in your University and, if yes, how is it put into practice, is it possible in every Faculty?

Question 1 Does the concept of part-time study exist in your University and, if yes, how is it put into practice, is it possible in every Faculty? Name of the University Country Univerza v Ljubljani Slovenia Tallin University of Technology (TUT) Estonia Question 1 Does the concept of "part-time study" exist in your University and, if yes, how is

More information

TIMSS Highlights from the Primary Grades

TIMSS Highlights from the Primary Grades TIMSS International Study Center June 1997 BOSTON COLLEGE TIMSS Highlights from the Primary Grades THIRD INTERNATIONAL MATHEMATICS AND SCIENCE STUDY Most Recent Publications International comparative results

More information

Problems of the Arabic OCR: New Attitudes

Problems of the Arabic OCR: New Attitudes Problems of the Arabic OCR: New Attitudes Prof. O.Redkin, Dr. O.Bernikova Department of Asian and African Studies, St. Petersburg State University, St Petersburg, Russia Abstract - This paper reviews existing

More information

Computer Organization I (Tietokoneen toiminta)

Computer Organization I (Tietokoneen toiminta) 581305-6 Computer Organization I (Tietokoneen toiminta) Teemu Kerola University of Helsinki Department of Computer Science Spring 2010 1 Computer Organization I Course area and goals Course learning methods

More information

Seminar - Organic Computing

Seminar - Organic Computing Seminar - Organic Computing Self-Organisation of OC-Systems Markus Franke 25.01.2006 Typeset by FoilTEX Timetable 1. Overview 2. Characteristics of SO-Systems 3. Concern with Nature 4. Design-Concepts

More information

Introduction to Causal Inference. Problem Set 1. Required Problems

Introduction to Causal Inference. Problem Set 1. Required Problems Introduction to Causal Inference Problem Set 1 Professor: Teppei Yamamoto Due Friday, July 15 (at beginning of class) Only the required problems are due on the above date. The optional problems will not

More information

Mathematics 112 Phone: (580) Southeastern Oklahoma State University Web: Durant, OK USA

Mathematics 112 Phone: (580) Southeastern Oklahoma State University Web:  Durant, OK USA Karl H. Frinkle Contact Information Research Interests Education Mathematics 112 Phone: (580) 745-2028 Department of Mathematics E-mail: kfrinkle@se.edu Southeastern Oklahoma State University Web: http://homepages.se.edu/kfrinkle/

More information

Rethinking Library and Information Studies in Spain: Crossing the boundaries

Rethinking Library and Information Studies in Spain: Crossing the boundaries Rethinking Library and Information Studies in Spain: Crossing the boundaries V IRGINIA O RTIZ- R EPISO U NIVERSIDAD C ARLOS III DE M ADRID D EPARTAMENTO DE B IBLIOTECONOMIA Y D OCUMENTACIÓN Barcelona,

More information

EUROPEAN STUDY & CAREER FAIR

EUROPEAN STUDY & CAREER FAIR 3 rd of April 2013 MANNHEIM, GERMANY EUROPEAN STUDY & CAREER FAIR EUROPEAN STUDENTS FORUM Partners: The EUROPEAN STUDY AND CAREER FAIR, which takes place in Mannheim, Germany on 3rd of April 2012, brings

More information

DIGITAL GAMING & INTERACTIVE MEDIA BACHELOR S DEGREE. Junior Year. Summer (Bridge Quarter) Fall Winter Spring GAME Credits.

DIGITAL GAMING & INTERACTIVE MEDIA BACHELOR S DEGREE. Junior Year. Summer (Bridge Quarter) Fall Winter Spring GAME Credits. DIGITAL GAMING & INTERACTIVE MEDIA BACHELOR S DEGREE Sample 2-Year Academic Plan DRAFT Junior Year Summer (Bridge Quarter) Fall Winter Spring MMDP/GAME 124 GAME 310 GAME 318 GAME 330 Introduction to Maya

More information

Ericsson Wallet Platform (EWP) 3.0 Training Programs. Catalog of Course Descriptions

Ericsson Wallet Platform (EWP) 3.0 Training Programs. Catalog of Course Descriptions Ericsson Wallet Platform (EWP) 3.0 Training Programs Catalog of Course Descriptions Catalog of Course Descriptions INTRODUCTION... 3 ERICSSON CONVERGED WALLET (ECW) 3.0 RATING MANAGEMENT... 4 ERICSSON

More information

PIRLS. International Achievement in the Processes of Reading Comprehension Results from PIRLS 2001 in 35 Countries

PIRLS. International Achievement in the Processes of Reading Comprehension Results from PIRLS 2001 in 35 Countries Ina V.S. Mullis Michael O. Martin Eugenio J. Gonzalez PIRLS International Achievement in the Processes of Reading Comprehension Results from PIRLS 2001 in 35 Countries International Study Center International

More information

IT Students Workshop within Strategic Partnership of Leibniz University and Peter the Great St. Petersburg Polytechnic University

IT Students Workshop within Strategic Partnership of Leibniz University and Peter the Great St. Petersburg Polytechnic University IT Students Workshop within Strategic Partnership of Leibniz University and Peter the Great St. Petersburg Polytechnic University 06.11.16 13.11.16 Hannover Our group from Peter the Great St. Petersburg

More information

UNIVERSITY AUTONOMY IN EUROPE II

UNIVERSITY AUTONOMY IN EUROPE II UNIVERSITY AUTONOMY IN EUROPE II THE SCORECARD By Thomas Estermann, Terhi Nokkala & Monika Steinel Copyright 2011 European University Association All rights reserved. This information may be freely used

More information

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence COURSE DESCRIPTION This course presents computing tools and concepts for all stages

More information

University of Illinois

University of Illinois Overview At The Frederick Seitz Materials Research Laboratory NSF-supported FRG P.I. R. Martin (Physics) and D.D. Johnson(MatSE, Physics) Develop infrastructure to support and foster advances in multidisciplinary

More information

REGISTRATION OF THE EXPRESSIONS OF INTEREST

REGISTRATION OF THE EXPRESSIONS OF INTEREST Republic of Moldova Ministry of Transport and Road Infrastructure STATE ROAD ADMINISTRATION ROAD SECTOR PROGRAM TECHNICAL SUPERVISION OF THE EXECUTION OF REHABILITATION WORKS ON R9 SOROCA-ARIONESTI REGISTRATION

More information

Integration of ICT in Teaching and Learning

Integration of ICT in Teaching and Learning Integration of ICT in Teaching and Learning Dr. Pooja Malhotra Assistant Professor, Dept of Commerce, Dyal Singh College, Karnal, India Email: pkwatra@gmail.com. INTRODUCTION 2 st century is an era of

More information

NISPAcee (www.nispa.sk) Calendar of Events in the Region Summer 2005

NISPAcee (www.nispa.sk) Calendar of Events in the Region Summer 2005 NISPAcee (www.nispa.sk) Calendar of Events in the Region Summer 2005 July 1 2005, egovernment Economics Project (egep) Workshop Toward a European egovernment Measurement Framework and Economic Model Cristiano

More information

ehealth Governance Initiative: Joint Action JA-EHGov & Thematic Network SEHGovIA DELIVERABLE Version: 2.4 Date:

ehealth Governance Initiative: Joint Action JA-EHGov & Thematic Network SEHGovIA DELIVERABLE Version: 2.4 Date: ehealth Governance Initiative: Joint Action JA-EHGov & Thematic Network SEHGovIA DELIVERABLE JA D4.1.1 Strategy & Policy Alignment Documents I WP4 (JA) - Policy Development and Strategy Alignment Version:

More information

International Branches

International Branches Indian Branches Chandigarh Punjab Haryana Odisha Kolkata Bihar International Branches Bhutan Nepal Philippines Russia South Korea Australia Kyrgyzstan Singapore US Ireland Kazakastan Georgia Czech Republic

More information

RELATIONS. I. Facts and Trends INTERNATIONAL. II. Profile of Graduates. Placement Report. IV. Recruiting Companies

RELATIONS. I. Facts and Trends INTERNATIONAL. II. Profile of Graduates. Placement Report. IV. Recruiting Companies I. Facts and Trends II. Profile of Graduates III. International Placement Statistics IV. Recruiting Companies mir.ie.edu After the graduation of our 4th intake of the Master in International Relations

More information

Computer Science. Embedded systems today. Microcontroller MCR

Computer Science. Embedded systems today. Microcontroller MCR Computer Science Microcontroller Embedded systems today Prof. Dr. Siepmann Fachhochschule Aachen - Aachen University of Applied Sciences 24. März 2009-2 Minuteman missile 1962 Prof. Dr. Siepmann Fachhochschule

More information

New Paths to Learning with Chromebooks

New Paths to Learning with Chromebooks Thought Leadership Paper Samsung New Paths to Learning with Chromebooks Economical, cloud-connected computer alternatives open new opportunities for every student Research provided by As Computers Play

More information

Development of an IT Curriculum. Dr. Jochen Koubek Humboldt-Universität zu Berlin Technische Universität Berlin 2008

Development of an IT Curriculum. Dr. Jochen Koubek Humboldt-Universität zu Berlin Technische Universität Berlin 2008 Development of an IT Curriculum Dr. Jochen Koubek Humboldt-Universität zu Berlin Technische Universität Berlin 2008 Curriculum A curriculum consists of everything that promotes learners intellectual, personal,

More information

National Pre Analysis Report. Republic of MACEDONIA. Goce Delcev University Stip

National Pre Analysis Report. Republic of MACEDONIA. Goce Delcev University Stip National Pre Analysis Report Republic of MACEDONIA Goce Delcev University Stip The European Commission support for the production of this publication does not constitute an endorsement of the contents

More information

Courses in English. Application Development Technology. Artificial Intelligence. 2017/18 Spring Semester. Database access

Courses in English. Application Development Technology. Artificial Intelligence. 2017/18 Spring Semester. Database access The courses availability depends on the minimum number of registered students (5). If the course couldn t start, students can still complete it in the form of project work and regular consultations with

More information

Conversions among Fractions, Decimals, and Percents

Conversions among Fractions, Decimals, and Percents Conversions among Fractions, Decimals, and Percents Objectives To reinforce the use of a data table; and to reinforce renaming fractions as percents using a calculator and renaming decimals as percents.

More information

Summary and policy recommendations

Summary and policy recommendations Skills Beyond School Synthesis Report OECD 2014 Summary and policy recommendations The hidden world of professional education and training Post-secondary vocational education and training plays an under-recognised

More information

Using Deep Convolutional Neural Networks in Monte Carlo Tree Search

Using Deep Convolutional Neural Networks in Monte Carlo Tree Search Using Deep Convolutional Neural Networks in Monte Carlo Tree Search Tobias Graf (B) and Marco Platzner University of Paderborn, Paderborn, Germany tobiasg@mail.upb.de, platzner@upb.de Abstract. Deep Convolutional

More information

Abstract. Janaka Jayalath Director / Information Systems, Tertiary and Vocational Education Commission, Sri Lanka.

Abstract. Janaka Jayalath Director / Information Systems, Tertiary and Vocational Education Commission, Sri Lanka. FEASIBILITY OF USING ELEARNING IN CAPACITY BUILDING OF ICT TRAINERS AND DELIVERY OF TECHNICAL, VOCATIONAL EDUCATION AND TRAINING (TVET) COURSES IN SRI LANKA Janaka Jayalath Director / Information Systems,

More information

USER ADAPTATION IN E-LEARNING ENVIRONMENTS

USER ADAPTATION IN E-LEARNING ENVIRONMENTS USER ADAPTATION IN E-LEARNING ENVIRONMENTS Paraskevi Tzouveli Image, Video and Multimedia Systems Laboratory School of Electrical and Computer Engineering National Technical University of Athens tpar@image.

More information

2013 Annual HEITS Survey (2011/2012 data)

2013 Annual HEITS Survey (2011/2012 data) 2013 Annual HEITS Survey (2011/2012 data) I would like to invite you to take part in this year s Higher Education Information Technology Statistics (HEITS) Survey. Institutions who participate in the HEITS

More information

THE ECONOMIC IMPACT OF THE UNIVERSITY OF EXETER

THE ECONOMIC IMPACT OF THE UNIVERSITY OF EXETER THE ECONOMIC IMPACT OF THE UNIVERSITY OF EXETER Report prepared by Viewforth Consulting Ltd www.viewforthconsulting.co.uk Table of Contents Executive Summary... 2 Background to the Study... 6 Data Sources

More information

Bluetooth mlearning Applications for the Classroom of the Future

Bluetooth mlearning Applications for the Classroom of the Future Bluetooth mlearning Applications for the Classroom of the Future Tracey J. Mehigan, Daniel C. Doolan, Sabin Tabirca Department of Computer Science, University College Cork, College Road, Cork, Ireland

More information

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas Exploiting Distance Learning Methods and Multimediaenhanced instructional content to support IT Curricula in Greek Technological Educational Institutes P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou,

More information

Note: Principal version Modification Amendment Modification Amendment Modification Complete version from 1 October 2014

Note: Principal version Modification Amendment Modification Amendment Modification Complete version from 1 October 2014 Note: The following curriculum is a consolidated version. It is legally non-binding and for informational purposes only. The legally binding versions are found in the University of Innsbruck Bulletins

More information

Speak Up 2012 Grades 9 12

Speak Up 2012 Grades 9 12 2012 Speak Up Survey District: WAYLAND PUBLIC SCHOOLS Speak Up 2012 Grades 9 12 Results based on 130 survey(s). Note: Survey responses are based upon the number of individuals that responded to the specific

More information

Value Creation Through! Integration Workshop! Value Stream Analysis and Mapping for PD! January 31, 2002!

Value Creation Through! Integration Workshop! Value Stream Analysis and Mapping for PD! January 31, 2002! Presented by:! Hugh McManus for Rich Millard! MIT! Value Creation Through! Integration Workshop! Value Stream Analysis and Mapping for PD!!!! January 31, 2002! Steps in Lean Thinking (Womack and Jones)!

More information

Undergraduate Program Guide. Bachelor of Science. Computer Science DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING

Undergraduate Program Guide. Bachelor of Science. Computer Science DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING Undergraduate Program Guide Bachelor of Science in Computer Science 2011-2012 DEPARTMENT OF COMPUTER SCIENCE and ENGINEERING The University of Texas at Arlington 500 UTA Blvd. Engineering Research Building,

More information

Citrine Informatics. The Latest from Citrine. Citrine Informatics. The data analytics platform for the physical world

Citrine Informatics. The Latest from Citrine. Citrine Informatics. The data analytics platform for the physical world Citrine Informatics The data analytics platform for the physical world The Latest from Citrine Summit on Data and Analytics for Materials Research 31 October 2016 Our Mission is Simple Add as much value

More information

One Hour of Code 10 million students, A foundation for success

One Hour of Code 10 million students, A foundation for success One Hour of Code 10 million students, A foundation for success Everybody in this country should learn how to program a computer... because it teaches you how to think. Steve Jobs Code.org is organizing

More information

AUTHORING E-LEARNING CONTENT TRENDS AND SOLUTIONS

AUTHORING E-LEARNING CONTENT TRENDS AND SOLUTIONS AUTHORING E-LEARNING CONTENT TRENDS AND SOLUTIONS Danail Dochev 1, Radoslav Pavlov 2 1 Institute of Information Technologies Bulgarian Academy of Sciences Bulgaria, Sofia 1113, Acad. Bonchev str., Bl.

More information

Educational system gaps in Romania. Roberta Mihaela Stanef *, Alina Magdalena Manole

Educational system gaps in Romania. Roberta Mihaela Stanef *, Alina Magdalena Manole Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Scien ce s 93 ( 2013 ) 794 798 3rd World Conference on Learning, Teaching and Educational Leadership (WCLTA-2012)

More information

LIFELONG LEARNING PROGRAMME ERASMUS Academic Network

LIFELONG LEARNING PROGRAMME ERASMUS Academic Network SOCRATES THEMATIC NETWORK AQUACULTURE, FISHERIES AND AQUATIC RESOURCE MANAGEMENT 2008-11 LIFELONG LEARNING PROGRAMME ERASMUS Academic Network Minutes of the WP 1 Core Group Meeting (year 2) May 31 st June

More information

DOUBLE DEGREE PROGRAM AT EURECOM. June 2017 Caroline HANRAS International Relations Manager

DOUBLE DEGREE PROGRAM AT EURECOM. June 2017 Caroline HANRAS International Relations Manager DOUBLE DEGREE PROGRAM AT EURECOM June 2017 Caroline HANRAS International Relations Manager KEY FACTS 1991 Creation by EPFL and Telecom ParisTech 3 Main Fields of Expertise 300 23 Master Students Professors

More information