Microsoft PowerPoint - CEM-07-Parallel.pptx

Size: px
Start display at page:

Download "Microsoft PowerPoint - CEM-07-Parallel.pptx"

Transcription

1 Parallel Scientific Computing by Computer Cluster Jiun-Hwa Lin Department of Electrical Engineering National Taiwan Ocean University

2 Outline Introduction Simple Cluster Setup Real Examples at NTOU Conclusions 2

3 What is Parallel Computing? Solve problems collaboratively and simultaneously by a bunch of processors. Processors are interconnected. While doing their own work, they need to talk to each other. from Dept. of Comput.Science & Information Management Providence Univ. 3

4 Why Parallel Computing? Solve larger and more complex problems Grand Challenge Problems 4

5 Large-scale First-Principles Simulations of Shocks in Deuterium 5

6 ASCI White The simulation involved 1320 atoms and ran for several days on 2640 processors of ASCI White. 512 node SMP (16 CPUs/node) Peak speed 12+ TeraOP/s 6

7 High-Resolution Simulations of Global Climate (~300 km resolu.) (~75 km resolu.) (~50 km resolu.) 7

8 High-Resolution Simulations of Global Climate performing a series of global climate simulations using the NCAR CCM3 atmospheric model 8

9 More Applications from Dept. of Comput.Science & Information Management Providence Univ. 9

10 Why Parallel Computing? Researches that demand high-performance computing Nano-scale Electronics Computational Chemistry Aerospace Molecular Modeling Computational Electromagnetics Computational Acoustics Computational Fluid Dynamics Seismic Wave Propagation Plasma Physics And other 10

11 What is Computer Cluster? Poor men s supercomputer commodity-based cluster system designed as a cost-effective alternative to large supercomputers 11

12 PC Cluster M 2 COTS (Mass-Market Commodity-Off-The-Shelf) based systems hook up PCs or workstations from KAOS Univ. Kentucky 12

13 Beowulf-Class Systems Beowulf was the legendary sixth-century hero from a distant realm who freed the Danes of Heorot by destroying the oppressive monster. from Eric Fraser 13

14 Beowulf PC Clusters As a metaphor, Beowulf has been applied to a new strategy in high performance computing that exploits mass-market technologies to overcome the oppressive costs in time and money of supercomputing, thus freeing scientists, engineers, and others to devote themselves to their respective disciplines. from from Störtebeker Cluster Project 14

15 Beowulf PC Clusters Beowulf, both in myth and reality, challenges and conquers a dominant obstacles, in their respective domains, thus opening the way to future development. rank3 rank2 rank1 rank0 server hub or switch 15

16 Why Computer Cluster Low cost High performance Configurability Scalability High Availability from Störtebeker Cluster Project 16

17 How to Parallel Compute Processors PC, workstations, multi-cpu, SMP, DMP, Athlon bit Itanlium 64-bit PowerPC G5 Dual CPU M.B. from ASUS 17

18 SMP Shared-Memory Multiprocessor System from Dept. of Comput.Science & Information Eng. Tunghai Univ. 18

19 DMP Distributed Memory Multiprocessor System from Dept. of Comput.Science & Information Eng. Tunghai Univ. 19

20 How to Parallel Compute Interconnecting networking, switch, Ethernet (10M bps) Fast Ethernet (100M bps) Gigabit Ethernet (1G bps) Myrinet (2G bps) 20

21 How to Parallel Compute Softwares O.S., languages, library, algorithms, compilers, from Dept. of Comput.Scienc e & Information Eng. Tunghai Univ.

22 How to Parallel Compute Logical view of cluster systems from Dept. of Comput.Science & Information Eng. Tunghai Univ. 22

23 Linux Free & Stable Software is like sex, it's better when it's free Linus Torvalds. Tux 23

24 Simple Cluster Set Up Recipe Hardware Configuration - Intel Pentium 3 500MHz - 512MB SDRAM - IDE Hard Disk - Fast Ethernet Interface Cards 100Mbps - Category 5 cables - Hub or Switch(100Mbps) - Monitor, Keyboard & Mouse PC Cluster in EMLAB at NTOU-EE 24

25 Simple Cluster Set Up Recipe Software Configuration - Operating System RedHat Linux 7.2 (kernel ) - Compilers gcc-g Parallel Interface MPICHP

26 5.3 Directions First Step - install Linux on each of the PCs - edit the file /etc/hosts on each of the 4 PCs octopus0.ee.ntou.edu.tw octopus octopus1.ee.ntou.edu.tw octopus octopus2.ee.ntou.edu.tw octopus octopus3.ee.ntou.edu.tw octopus3 EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

27 5.3.2 Second Step - edit the file /etc/hosts.equiv on each of the 4 PCs octopus0 octopus1 octopus2 octopus3 - This is to configure the computers so that MPICH s P4 device may be used to execute a distributed parallel application. EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

28 5.3.3 Third Step - on the server node, make a directory /home/mpi_mirror. Configure the server to be an NFS server, and in /etc/exports add this line: /home/mirror ocotpus0(rw) octopus1(rw) ocotpus2(rw) octopus3(rw) EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

29 5.3.4 Forth Step - on the other(non-server ) nodes, make a directory /home/mirror. Add this line to /etc/fstab: octopus0:/home/mirror /home/mirror nfs rw.bg.soft This exports the directory /home/mirror from the server and mounts it on each of the clients for easy distribution of software between the nodes. -On the server node, install MPICH EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

30 5.3.5 Fifth Step - For each user that you create on the clusters, it is advised that you create a subdirectory owned by that user in the /home/mirror directory, such as /home/mirror/ryjou, where the user can put MPI programs and shared data files. EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

31 5.4 Installing Mpich First Step - Downloading MPICH & ftp.mcs.anl.gov in directory pub/mpi. Get mpich.tar.gz. - Unpack mpich.tar.gz % cd /tmp % tar zxovf mpich.tar.gz - If tar does not accept z option, use % cd /tmp % gunzip c mpich.tar.gz tar zxovf - EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

32 5.4.2 Second Step - Configuration directory: /usr/local/mpich-1.2.4/ %./configure prefix=/usr/local/mpich & tee c.log -Making % make & tee make.log - Running examples % cd examples/basic % make cpi %../../bin/mpirun np 4 cpi EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

33 5.4.3 Third Step - Installing (root) % make install - Setting path edit /home/ryjou/.cshrc setenv PATH /usr/sbin:/sbin:${path} set path = ($path /usr/local/mpich-1.2.4/bin) EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

34 5.4.4 Forth Step - check the installation % source.cshrc % rehash % which mpirun /usr/local/mpich-1.2.4/bin/mpirun - setting machines used: edit /usr/local/mpich-1.2.4/share/machines.linux octopus0.ee.ntou.edu.tw octopus1.ee.ntou.edu.tw octopus2.ee.ntou.edu.tw octopus3.ee.ntou.edu.tw EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

35 5.5 Compiling, Linking, & running program At directory: /home/ryjou/pmlfma - Compiling % mpicc c mmtps.cpp - Linking % mpicc o mmtps mmtps.o - Compiling & Linking in a single command % mpicc o mmtps mmtps.cpp At directory: /home/mirror/ryjou/pmlfma - Running % mpirun np 4 mmtps mmtps have to be copied to this directory first EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

36 5.6 Some Mpi Statements - #include mpi.h Basic - #include <mpi++.h > - int main(int argc, char *argv[]) - void MPI::Init(int& argc, char**& argv) - void MPI::Finalize() - MPI::Intracomm::Bcast(void* buffer, int count, const Datatype& datatype, int root) const - MPI::Intracomm::Reduce(const void* sendbuf, void* recvbuf, int count, const Datatype& datatype, const Op& op, int root) const EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

37 5.6.2 Some Statements Used for communication in NTOU PMLFMA - void Intracomm::Allgatherv(const void* sendbuf, int sendcount, const Datatype& sendtype, void* recvbuf, const int recvcounts[], const int displs[], const Datatype& recvtype) const) Gathers data from all tasks and deliver it to all - void Intracomm::Barrier() const Blocks until all process have reached this routine - Request Comm::Irecv(void* buf, int count, const Datatype& datatype, int source, int tag) const Begins a nonblocking receive - Request Comm::Isend(const void* buf, int count, const Datatype& datatype, int dest, int tag) const Starts a nonblocking send EM-LAB 國立臺灣海洋大學電機工程學系暨研究所 Department of Electrical Engineering National Taiwan Ocean University

38 Real Examples in EM Filed NTOU s PMLFMA EM wave inducted current Scattered EM wave conductor conductor 38

39 Multilevel Fast Multipole Method (MLFMA) Enclose the object in a cube. Each subcube is recursively divided into smaller subcubes until the subcube length is 0.5. Divide the cube into 8subcubes. Retain the nonempty cubes in the whole oct-tree structure.

40 Triangular Patches Modeling Objects Unknowns= Incident frequency=0.9ghz

41 Current Distribution

42 RCS

43 Real Examples in EM Filed CPU time for EM-LAB PC Cluster on Linux CPU time(s) Unknowns 60, ,182 Pre-Iteration(sec) 4,249 52,486 Iteration(sec) 30,762 12,686 Each Iteration(sec) Total(sec) 35,011 65,172 43

44 Real Examples in EM Filed Memory Requirement for EM-LAB PC Cluster on Linux Estimated Unknowns 60, , ,706 Required Memory(KB)/node 91, ,884 1,000,000 44

45 Real Examples in EM Filed NTOU s PFDTD 三維 FDTD 空間的配置圖包含 PML 各台 PC 所負責處理的區塊 45

46 Real Examples in EM Filed 邊緣上的資料分送方法 (1) 邊緣上的資料分送方法 (2) 46

47 Conclusions What are required of users MPI Parallel algorithms Knowledge in parallel computing Cluster computing system are rapidly becoming the standard platforms for high-performance computing. Message-passing programming is the most obvious approach to take advantage of clustering performance. New trends in hardware and software technologies are likely to make clusters more promising. 47

48 GPGPU Generous-Purpose Graphics Processing Unit 現代的顯示晶片已經具有高度的可程式化能力, 由於顯示晶片通常具有相當高的記憶體頻寬, 以及大量的執行單元, 因此開始有利用顯示晶片來幫助進行一些計算工作的想法, 即 GPGPU CUDA (Compute Unified Device Architecture) 即是 NVIDIA 的 GPGPU 模型 NVIDIA 的新一代顯示晶片, 包括 GeForce 8 系列及更新的顯示晶片都支援 CUDA NVIDIA 免費提供 CUDA 的開發工具 ( 包括 Windows 版本和 Linux 版本 ) 程式範例 文件等等, 可以在 CUDA Zone 下載 48

49 GPGPU 的優缺點 使用顯示晶片來進行運算工作, 和使用 CPU 相比, 主要有幾個好處 : 顯示晶片通常具有更大的記憶體頻寬 例如,NVIDIA 的 GeForce 8800GTX 具有超過 50GB/s 的記憶體頻寬, 而目前高階 CPU 的記憶體頻寬則在 10GB/s 左右 顯示晶片具有更大量的執行單元 例如 GeForce 8800GTX 具有 128 個 "stream processors", 時脈為 1.35GHz CPU 時脈通常較高, 但是執行單元的數目則要少得多 和高階 CPU 相比, 顯示卡的價格較為低廉 例如目前一張 GeForce 8800GT 包括 512MB 記憶體的價格, 和一顆 2.4GHz 四核心 CPU 的價格相若 49

50 GPGPU 的優缺點 使用顯示晶片也有它的一些缺點 : 顯示晶片的運算單元數量很多, 因此對於不能高度平行化的工作, 所能帶來的幫助就不大 顯示晶片目前通常只支援 32 bits 浮點數, 且多半不能完全支援 IEEE 754 規格, 有些運算的精確度可能較低 目前許多顯示晶片並沒有分開的整數運算單元, 因此整數運算的效率較差 顯示晶片通常不具有分支預測等複雜的流程控制單元, 因此對於具有高度分支的程式, 效率會比較差 目前 GPGPU 的程式模型仍不成熟, 也還沒有公認的標準 例如 NVIDIA 和 AMD/ATI 就有各自不同的程式模型 50

51 GPGPU 的優缺點 整體來說, 顯示晶片的性質類似 stream processor, 適合一次進行大量相同的工作 CPU 則比較有彈性, 能同時進行變化較多的工作 51

52 CUDA 架構 CUDA 是 NVIDIA 的 GPGPU 模型, 它使用 C 語言為基礎, 可以直接以大多數人熟悉的 C 語言, 寫出在顯示晶片上執行的程式, 而不需要去學習特定的顯示晶片的指令或是特殊的結構 在 CUDA 的架構下, 一個程式分為兩個部份 :host 端和 device 端 Host 端是指在 CPU 上執行的部份, 而 device 端則是在顯示晶片上執行的部份 Device 端的程式又稱為 "kernel" 通常 host 端程式會將資料準備好後, 複製到顯示卡的記憶體中, 再由顯示晶片執行 device 端程式, 完成後再由 host 端程式將結果從顯示卡的記憶體中取回 52

53 CUDA 架構 53

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

Microsoft PowerPoint - Aqua-Sim.pptx

Microsoft PowerPoint - Aqua-Sim.pptx Peng Xie, Zhong Zhou, Zheng Peng, Hai Yan, Tiansi Hu, Jun-Hong Cui, Zhijie Shi, Yunsi Fei, Shengli Zhou Underwater Sensor Network Lab 1 Outline Motivations System Overview Aqua-Sim Components Experimental

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

F4

F4 DOI:10.3969/j.issn.1009-6868.2016.01.002 网 络 出 版 地 址 :http://www.cnki.net/kcms/detail/34.1228.tn.20151117.1506.006.html Challenges and Countermeasures of Network Space Security 周 延 森 /ZHOU Yansen 周 琳 娜

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx

Microsoft PowerPoint - Performance Analysis of Video Streaming over LTE using.pptx ENSC 427 Communication Networks Spring 2016 Group #2 Project URL: http://www.sfu.ca/~rkieu/ensc427_project.html Amer, Zargham 301149920 Kieu, Ritchie 301149668 Xiao, Lei 301133381 1 Roadmap Introduction

More information

目次 

目次  軟 體 工 程 期 末 報 告 網 路 麻 將 91703014 資 科 三 黃 偉 嘉 91703024 資 科 三 丘 祐 瑋 91703030 資 科 三 江 致 廣 1 目 次 壹 前 言 (Preface) P.4 貳 計 畫 簡 述 及 預 期 效 益 (Project Description and Expected Results) P.4 參 系 統 開 發 需 求 (System

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 2 1 Windows 95/98 Windows 2000 3.5 Windows NT Server 4.0 2 Windows DOS 3.5 T200 2002 RAID RAID RAID 5.1 Windows 2000 Server T200 2002 Windows 2000 Server Windows 2000 Server Windows 2000 Server 3.5 for

More information

128 ( ) ( ) [ 1 ] [2] [3] (1) (2) (3) [1] [2] [3] 10 2 ( ) (1997.6) ( ) 64

128 ( ) ( ) [ 1 ] [2] [3] (1) (2) (3) [1] [2] [3] 10 2 ( ) (1997.6) ( ) 64 BIBLID 1026-5279 (2005) 94:2 p. 127-154 (2005.12) 127 Keywords Digital Library High School Library Library Website Open Source E-mail frank@hchs.hc.edu.tw 128 (2005.12) ( ) 6 0 68 [ 1 ] [2] [3] (1) (2)

More information

投影片 1

投影片 1 9 1 9-1 Windows XP Windows Server 2003 Mac OS Linux, 都 (OS, Operating System ) 2 3 , 來, 行 3 理 行 4 ,, (UI, User Interface), 滑, 令 列 (CLI, Command-Line Interface) (GUI, Graphical User Interface) 2 5 令 列,

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

(Pattern Recognition) 1 1. CCD

(Pattern Recognition) 1 1. CCD ********************************* ********************************* (Pattern Recognition) 1 1. CCD 2. 3. 4. 1 ABSTRACT KeywordsMachine Vision, Real Time Inspection, Image Processing The purpose of this

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

概述

概述 Compatibility Report of Red Flag DC Server 4.0 Power by: Product Dept. of Red Flag Date: Mar.31.2003 1...1 2...2 2.1...2 2.2...2 2.3...2 2.4...2 3...3 3.1...3 3.2...15 4...17 1 Red Flag DC Server 4.0 Red

More information

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I

IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I 2004 5 IP TCP/IP PC OS µclinux MPEG4 Blackfin DSP MPEG4 IP UDP Winsock I/O DirectShow Filter DirectShow MPEG4 µclinux TCP/IP IP COM, DirectShow I Abstract The techniques of digital video processing, transferring

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

スライド 1

スライド 1 ALMA ( ALMA ALMA ALMA Antenna 64 elements 12m + ACA (4 elements 12m + 12 elements 7m) Receiver Frequency Band: Band 1~10(43 ~950 GHz) Correlator 1 antenna: 4Gsps 3bit 8IF = 96Gbps 80 antennas: Total Data

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 以 系 統 動 力 學 建 構 美 食 餐 廳 異 國 麵 坊 之 管 理 飛 行 模 擬 器 研 究 生 : 簡 蓮 因 撰 指 導 教 授 : 楊 碩 英 博 士 中 華 民 國 九 十 七 年 七 月 致 謝 詞 寫 作 論 文 的 過 程 是 一 段 充 滿 艱 辛 與 淚 水 感 動 與 窩 心 的 歷 程, 感 謝 這 一

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D

13 A DSS B DSS C DSS D DSS A. B. C. CPU D. 15 A B Cache C Cache D L0 L1 L2 Cache 16 SMP A B. C D 17 A B. C D A B - C - D 2008 1 1 A. B. C. D. UML 2 3 2 A. B. C. D. 3 A. B. C. D. UML 4 5 4 A. B. C. D. 5 A. B. C. D. 6 6 A. DES B. RC-5 C. IDEA D. RSA 7 7 A. B. C. D. TCP/IP SSL(Security Socket Layer) 8 8 A. B. C. D. 9 9 A. SET

More information

高 职 计 算 机 类 优 秀 教 材 书 目 * 序 号 书 号 (ISBN) 书 名 作 者 定 价 出 版 / 印 刷 日 期 ** 配 套 资 源 页 码 计 算 机 基 础 课 1 978-7-111-30658-0 计 算 机 应 用 基 础 刘 升 贵 29.00 2012 年 8 月

高 职 计 算 机 类 优 秀 教 材 书 目 * 序 号 书 号 (ISBN) 书 名 作 者 定 价 出 版 / 印 刷 日 期 ** 配 套 资 源 页 码 计 算 机 基 础 课 1 978-7-111-30658-0 计 算 机 应 用 基 础 刘 升 贵 29.00 2012 年 8 月 高 职 计 算 机 类 优 秀 教 材 书 目 * 序 号 书 号 (ISBN) 书 名 作 者 定 价 出 版 / 印 刷 日 期 ** 配 套 资 源 页 码 计 算 机 基 础 课 1 978-7-111-30658-0 计 算 机 应 用 基 础 刘 升 贵 29.00 2012 年 8 月 电 子 教 案 P1 2 978-7-111-27081-2 计 算 机 应 用 基 础 ( 第 2

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

More information

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 1...3 2...20 3...28 4...41 5 Windows SQL Server...47 Microsoft SQL Server 2005 DBSRV1 Microsoft SQL Server

More information

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f 27 1 Vol.27 No.1 CEMENTED CARBIDE 2010 2 Feb.2010!"!!!!"!!!!"!" doi:10.3969/j.issn.1003-7292.2010.01.011 OPC 1 1 2 1 (1., 412008; 2., 518052), OPC, WinCC VB,,, OPC ; ;VB ;WinCC Application of OPC Technology

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

Windows 2000 Server for T100

Windows 2000 Server for T100 T200 3020 Windows 2000 Advanced Server /Windows NT 4.0 Server /Redhat Linux7.3 SCO UnixWare7.1.1 Novell NetWare5.0 1. Windows 2000 Advanced Server / 2. Windows NT 4.0 Server / 3. Redhat Linux7.3 4. SCO

More information

Microsoft Word - 103-4 記錄附件

Microsoft Word - 103-4 記錄附件 國 立 虎 尾 技 大 103 年 度 第 4 次 教 務 會 議 記 錄 附 件 中 華 民 國 104 年 6 月 16 日 受 文 者 : 國 立 虎 尾 技 大 發 文 日 期 : 中 華 民 國 104 年 5 月 28 日 發 文 字 號 : 臺 教 技 ( 二 ) 字 第 1040058590 號 速 別 : 最 速 件 密 等 及 解 密 條 件 或 保 密 期 限 : 附 件 :

More information

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade]

Microsoft PowerPoint SSBSE .ppt [Modo de Compatibilidade] SSBSE 2015, Bergamo Transformed Search Based Software Engineering: A New Paradigm of SBSE He JIANG, Zhilei Ren, Xiaochen Li, Xiaochen Lai jianghe@dlut.edu.cn School of Software, Dalian Univ. of Tech. Outline

More information

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot

OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Prot OSI OSI OSI 15% 20% OSI OSI ISO International Standard Organization 1984 OSI Open-data System Interface Reference Model OSI OSI OSI OSI ISO Prototype Protocol OSI OSI OSI OSI OSI O S I 2-1 Application

More information

(science demonstration phase) 2 2 l = 30 b = 0 l = 59 b = 0 5 PACS 70 µm 160 µm SPIRE 250 µm 350 µm 500 µm Hi-GAL GPU 2 GPU 3 GPU GPU

(science demonstration phase) 2 2 l = 30 b = 0 l = 59 b = 0 5 PACS 70 µm 160 µm SPIRE 250 µm 350 µm 500 µm Hi-GAL GPU 2 GPU 3 GPU GPU 31 4 Vol. 31, No. 4 2013 11 PROGRESS IN ASTRONOMY Nov., 2013 doi: 10.3969/j.issn.1000-8349.2013.04.05 GPU 1,2 1 ( 1. 100012 2. 100049 ) (GPU) GPU GPU GPU GPU CUDA PyOpenCL GPU GPU GPU N37 P141.91 A 1 (graphics

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

WTO

WTO 10384 200015128 UDC Exploration on Design of CIB s Human Resources System in the New Stage (MBA) 2004 2004 2 3 2004 3 2 0 0 4 2 WTO Abstract Abstract With the rapid development of the high and new technique

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

热设计网

热设计网 例 例 Agenda Popular Simulation software in PC industry * CFD software -- Flotherm * Advantage of Flotherm Flotherm apply to Cooler design * How to build up the model * Optimal parameter in cooler design

More information

A Community Guide to Environmental Health

A Community Guide to Environmental Health 102 7 建 造 厕 所 本 章 内 容 宣 传 推 广 卫 生 设 施 104 人 们 需 要 什 么 样 的 厕 所 105 规 划 厕 所 106 男 女 对 厕 所 的 不 同 需 求 108 活 动 : 给 妇 女 带 来 方 便 110 让 厕 所 更 便 于 使 用 111 儿 童 厕 所 112 应 急 厕 所 113 城 镇 公 共 卫 生 设 施 114 故 事 : 城 市 社

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

A Preliminary Implementation of Linux Kernel Virus and Process Hiding 邵 俊 儒 翁 健 吉 妍 年 月 日 学 号 学 号 学 号 摘 要 结 合 课 堂 知 识 我 们 设 计 了 一 个 内 核 病 毒 该 病 毒 同 时 具 有 木 马 的 自 动 性 的 隐 蔽 性 和 蠕 虫 的 感 染 能 力 该 病 毒 获 得 权 限 后 会 自 动 将 自 身 加 入 内 核 模 块 中 劫 持 的 系 统 调 用 并 通 过 简 单 的 方 法 实 现 自 身 的

More information

\\Lhh\07-02\黑白\内页黑白1-16.p

\\Lhh\07-02\黑白\内页黑白1-16.p Abstract: Urban Grid Management Mode (UGMM) is born against the background of the fast development of digital city. It is a set of urban management ideas, tools, organizations and flow, which is on the

More information

1505.indd

1505.indd 上 海 市 孙 中 山 宋 庆 龄 文 物 管 理 委 员 会 上 海 宋 庆 龄 研 究 会 主 办 2015.05 总 第 148 期 图 片 新 闻 2015 年 9 月 22 日, 由 上 海 孙 中 山 故 居 纪 念 馆 台 湾 辅 仁 大 学 和 台 湾 图 书 馆 联 合 举 办 的 世 纪 姻 缘 纪 念 孙 中 山 先 生 逝 世 九 十 周 年 及 其 革 命 历 程 特 展

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

untitled

untitled 1. 95 年 度 2 老 2 老 8 10 11 理 4 2007.3.12 2. 更 Cisco 2960 switch 路 更 路 更 路 更 更 NIS 狀 料 兩 數 Visual Studio Standard.net 2005 老 2007.4.19 Panel talk 行 95 年 度 良 老 葉 羅 老 45 參 行 領 力 立 C 行 力 行 路 力 95 年 度 路 97 年

More information

第7章-并行计算.ppt

第7章-并行计算.ppt EFEP90 10CDMP3 CD t 0 t 0 To pull a bigger wagon, it is easier to add more oxen than to grow a gigantic ox 10t 0 t 0 n p Ts Tp if E(n, p) < 1 p, then T (n) < T (n, p) s p S(n,p) = p : f(x)=sin(cos(x))

More information

93年度分項計畫執行報告-子計畫八.doc

93年度分項計畫執行報告-子計畫八.doc 93 Celestron - 14 This is a four years project. In this project, we will add a solar telescope, a spectrograph, and a few small teaching telescopes to the existing facilities. We will also install a Celestron

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

Microsoft Word - 01李惠玲ok.doc

Microsoft Word - 01李惠玲ok.doc 康 寧 學 報 11:1-20(2009) 1 數 位 學 習 於 護 理 技 術 課 程 之 運 用 與 評 值 * 李 惠 玲 ** 高 清 華 *** 呂 莉 婷 摘 要 背 景 : 網 路 科 技 在 教 育 的 使 用 已 成 為 一 種 有 利 的 教 學 輔 助 工 具 網 路 教 學 的 特 性, 在 使 學 習 可 不 分 時 間 與 空 間 不 同 進 度 把 握 即 時 性 資

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

Microsoft Word - 生活禮儀柯友惠981

Microsoft Word - 生活禮儀柯友惠981 社 交 禮 儀 課 程 簡 介 第 一 節 : 接 待 與 拜 訪 禮 儀 學 習 禮 儀, 不 是 為 了 取 悅 別 人, 而 是 為 了 開 發 自 己 內 心 的 能 量, 來 展 現 得 體 的 風 範, 並 以 合 宜 的 舉 止 及 內 在 的 修 養 來 創 造 良 好 的 應 對 趨 勢, 讓 好 禮 儀 為 您 帶 來 好 人 緣 一 待 客 服 務 的 基 本 原 則 1. 以

More information

附件4

附件4 附 件 2 2015 年 省 级 精 品 资 源 共 享 课 申 报 书 ( 本 科 ) 申 报 学 校 西 华 师 范 大 学 课 程 名 称 数 值 方 法 与 计 算 机 技 术 课 程 类 型 公 共 基 础 课 专 业 基 础 课 专 业 课 其 它 所 属 学 科 门 类 理 学 ( 数 学 ) 所 属 专 业 类 名 称 课 程 负 责 人 数 学 与 应 用 数 学 信 息 与 计

More information

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se 1 SQL Server 2005 DBA Microsoft SQL Server SQL ServerSQL Server SQL Server SQL Server SQL Server SQL Server 2005 SQL Server 2005 SQL Server 2005 o o o SQL Server 2005 1 SQL Server 2005... 3 2 SQL Server

More information

本科毕业设计(论文)工作细则&撰写规范

本科毕业设计(论文)工作细则&撰写规范 ...1...1...1...1...2...3...3...3...4...4...5...8...9 1 1. 2. 3. 4. 5. 1. 2. 3. 4. 5. 6. 7. 1. 2. 3. 4. 5. 6. 7. 8. - 1 - 2 1 I. II. A. B. C. 2. I. A. B. C. D. E. F. II. A. B. C. III. A. B. IV. A. B. -

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi

Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candi U17 10220 UDC624 Thesis for the Master degree in Engineering Research on Negative Pressure Wave Simulation and Signal Processing of Fluid-Conveying Pipeline Leak Candidate:Chen Hao Tutor: Xue Jinghong

More information

Microsoft PowerPoint - ATF2015.ppt [相容模式]

Microsoft PowerPoint - ATF2015.ppt [相容模式] Improving the Video Totalized Method of Stopwatch Calibration Samuel C.K. Ko, Aaron Y.K. Yan and Henry C.K. Ma The Government of Hong Kong Special Administrative Region (SCL) 31 Oct 2015 1 Contents Introduction

More information

P4VM800_BIOS_CN.p65

P4VM800_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Fri 02/25/2005] BIOS Version : P4VM800 BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

目 录 第 一 章 电 力 行 业 内 部 控 制 操 作 指 南 概 述... 1 第 二 章 内 部 控 制 规 范 体 系 建 设 与 运 行... 11 第 三 章 内 部 环 境 建 设... 22 第 一 节 组 织 架 构... 22 第 二 节 发 展 战 略... 26 第 三 节

目 录 第 一 章 电 力 行 业 内 部 控 制 操 作 指 南 概 述... 1 第 二 章 内 部 控 制 规 范 体 系 建 设 与 运 行... 11 第 三 章 内 部 环 境 建 设... 22 第 一 节 组 织 架 构... 22 第 二 节 发 展 战 略... 26 第 三 节 附 件 电 力 行 业 内 部 控 制 操 作 指 南 ( 征 求 意 见 稿 ) 2014 年 8 月 目 录 第 一 章 电 力 行 业 内 部 控 制 操 作 指 南 概 述... 1 第 二 章 内 部 控 制 规 范 体 系 建 设 与 运 行... 11 第 三 章 内 部 环 境 建 设... 22 第 一 节 组 织 架 构... 22 第 二 节 发 展 战 略... 26 第 三

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

1.3

1.3 Software Engineering 软 件 工 程 Prof. Mei Hong 洪 玫 College of Computer Science and Software Engineering 四 川 大 学 计 算 机 ( 软 件 学 院 ) E-Mail: hongmei@scu.edu.cn Office: B502, Second Laboratory Building, Jiangan

More information

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用 TORQUE Maui hmli@ustc.edu.cn 2008 1 1 TORQUE 2 1.1 TORQUE........................... 2 1.2 TORQUE...................... 2 1.3 TORQUE.......................... 4 1.4 TORQUE........................... 4

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

1 CPU

1 CPU 2000 Tel 82316285 82317634 Mail liuxd@buaa.edu.cn 1 CPU 2 CPU 7 72 A B 85 15 3 1/2 M301 2~17 : 3/4 1/2 323 IBM PC 1. 2. 3. 1. 2. 3. 1.1 Hardware Software 1.2 M3 M2 M1 1.2 M3 M1 M2 M2 M1 M1 M1 1.2 M3 M1

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 2016 年 第 25 卷 第 期 http://www.c-s-a.org.cn 计 算 机 系 统 应 用 1 基 于 节 点 融 合 分 层 法 的 电 网 并 行 拓 扑 分 析 王 惠 中 1,2, 赵 燕 魏 1,2, 詹 克 非 1, 朱 宏 毅 1 ( 兰 州 理 工 大 学 电 气 工 程 与 信 息 工 程 学 院, 兰 州 730050) 2 ( 甘 肃 省 工 业 过 程 先

More information

1.第二卷第二期p1

1.第二卷第二期p1 通 識 學 刊 : 理 念 與 實 務,3(1),1-42 1 圖 解 思 考 法 在 申 論 題 寫 作 上 的 運 用 : 以 蕭 颯 死 了 一 個 國 中 女 生 之 後 為 例 馬 琇 芬 ( 投 稿 日 期 :2014/11/11; 修 正 日 期 :2015/01/21; 接 受 日 期 :2015/01/26) 摘 要 申 論 是 一 種 培 養 學 生 思 考 能 力 的 寫 作

More information

IT Data-intensive application,iscsi Middl

IT Data-intensive application,iscsi Middl 112-861 2-1-1 163 8677 1 24 2 E-mail: shiori@ogl.is.ocha.ac.jp, sane@cc.kogakuin.ac.jp, oguchi@computer.org IT Data-intensive application,iscsi iddleware for Load Distribution among Cloud Computing Resource

More information

untitled

untitled MySQL DBMS under Win32 Editor: Jung Yi Lin, Database Lab, CS, NCTU, 2005/09/16 MySQL 料 理 MySQL 兩 Commercial License 利 GPL MySQL http://www.mysql.com Developer Zone http://www.mysql.com Download 連 連 MySQL

More information

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前

报 告 1: 郑 斌 教 授, 美 国 俄 克 拉 荷 马 大 学 医 学 图 像 特 征 分 析 与 癌 症 风 险 评 估 方 法 摘 要 : 准 确 的 评 估 癌 症 近 期 发 病 风 险 和 预 后 或 者 治 疗 效 果 是 发 展 和 建 立 精 准 医 学 的 一 个 重 要 前 东 北 大 学 中 荷 生 物 医 学 与 信 息 工 程 学 院 2016 年 度 生 物 医 学 与 信 息 工 程 论 坛 会 议 时 间 2016 年 6 月 8 日, 星 期 三,9:30 至 16:00 会 议 地 址 会 议 网 址 主 办 单 位 东 北 大 学 浑 南 校 区 沈 阳 市 浑 南 区 创 新 路 195 号 生 命 科 学 大 楼 B 座 619 报 告 厅 http://www.bmie.neu.edu.cn

More information

《嵌入式系统设计》教学大纲

《嵌入式系统设计》教学大纲 多 核 架 构 及 编 程 技 术 教 学 大 纲 课 程 代 码 :20062022071 课 程 负 责 人 : 杨 剑 锋 课 程 中 文 名 称 : 多 核 架 构 及 编 程 技 术 课 程 英 文 名 称 :Multi-Core Architecture and Programming Technologies 课 程 类 别 : 专 业 必 修 课 程 学 分 数 :3 课 程 学 时

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

40 COMMEMORATING THE FORTIETH ANNIVERSARY OF REFORM AND OPENING UP ( ) ( ) 20 30 [1] : 2015 1 1 36

40 COMMEMORATING THE FORTIETH ANNIVERSARY OF REFORM AND OPENING UP ( ) ( ) 20 30 [1] : 2015 1 1 36 40 To Judge Key Areas of Reform Node: Supply Side and Demand Side * 40 : 1978~1992 ; 1992~2012 ; 2012 40 % Since the reform and opening up the evolution of supply side and demand side reform policy can

More information

28152141 28 ) 212 5 7 1...1 2...3 3...7 4...17 5...36 6...37 7...38 212 211.11.3 1 28152141 8 1 28,1 2 3 4 1. 24 8. 2.. 28. 3. 29 12 4. 1 2 1 211.12.1-212.3.1 212.1.1 2 212.3.1-212.5.1 3 212.5.1-212.5.2

More information

并行程序设计基础

并行程序设计基础 1800 1800 学 计 发 软 调 术 计 术 应 软 务 2 1. 论 学 2. 实 验 学 3. 计 学 计 学 计 学 计 动 学 计 学 计 学 计 学 计 学 计 学 计 电 学 3 4 ( 级 计 ) CRAY, 银 I SMP( ) IBM p690 SUN MPP( 规 ) T3E 1000 HP ccnuma( 储 ) SGI Qrigin 统 联 腾 1800, IBM SP2

More information

南華大學數位論文

南華大學數位論文 The Digital Divide on the Remote Area: Regarding the community of Ta-Pang in Mt. A-li Abstract Base on the coming of information society, the digital science and technology usage suppose to be the basic

More information

《路得記》4章 1-23節

《路得記》4章 1-23節 路 得 記 4 章 本 章 主 題 : 信 實 慈 愛 的 神 帶 領 前 的 預 備 討 論 題 目 備 注 參 考 觀 察 : 帶 領 時 觀 察 題 討 論 約 10 分 鐘 何 人?who 本 章 主 要 人 物 : 波 阿 斯, 隱 名 的 近 親, 十 位 長 老, 這 段 聖 經 中 有 哪 些 人 物 出 何 地? where 城 門 的 衆 人 ; 路 得 ; 伯 利 恒 婦 女

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

豐佳燕.PDF

豐佳燕.PDF Application of Information Literacy to chiayen@estmtc.tp.edu.tw information literacy Theme-oriented teaching. Abstract Based on the definition of Information Literacy and Six core concepts of the problem

More information

2016-2020資訊教育總藍圖(公聽會草案)

2016-2020資訊教育總藍圖(公聽會草案) 2016-2020 資 訊 教 育 總 藍 圖 ( 草 案 ) 資 訊 教 育 總 藍 圖 計 畫 辦 公 室 2016 年 3 月 1 日 目 次 壹 背 景... 1 貳 未 來 人 才 關 鍵 能 力... 2 參 資 訊 科 技 對 學 習 之 衝 擊... 2 肆 各 國 資 訊 教 育 政 策 藍 圖... 4 伍 我 國 資 訊 教 育 推 動 現 況... 6 陸 現 況 及 問 題...

More information

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode]

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode] AWOL Windows - Tips & Tricks Resolution, color depth & refresh rate Background color Service packs Disk cleanup (cleanmgr) Disk defragmentation AWOL Windows Resolution, Color Depth & Refresh Rate The main

More information

Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial

Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial Public Projects A Thesis Submitted to Department of Construction Engineering National Kaohsiung First University of Science and Technology In Partial Fulfillment of the Requirements For the Degree of Master

More information

/ 理 论 研 讨 /Theoretical Discussion 的 样 子 其 次, 残 疾 人 有 接 受 教 育 的 能 力 据 专 家 介 绍, 一 个 人 除 非 是 植 物 人, 都 有 学 习 和 劳 动 的 能 力, 这 是 人 与 生 俱 来 的 天 性 前 些 年, 香 港 理

/ 理 论 研 讨 /Theoretical Discussion 的 样 子 其 次, 残 疾 人 有 接 受 教 育 的 能 力 据 专 家 介 绍, 一 个 人 除 非 是 植 物 人, 都 有 学 习 和 劳 动 的 能 力, 这 是 人 与 生 俱 来 的 天 性 前 些 年, 香 港 理 Theoretical Discussion / 理 论 研 讨 / 关 于 融 合 教 育 的 阐 释 与 思 考 * 厉 才 茂 摘 要 本 文 介 绍 了 发 展 融 合 教 育 的 社 会 意 义, 阐 释 了 国 外 融 合 教 育 的 发 展 历 程 和 潮 流 趋 势, 对 我 国 融 合 教 育 的 现 状 和 问 题 进 行 了 分 析, 提 出 相 应 的 对 策 建 议 在 发

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

Microsoft PowerPoint - Sens-Tech WCNDT [兼容模式]

Microsoft PowerPoint - Sens-Tech WCNDT [兼容模式] X-ray data acquisition systems for NDT applications 技股份有限公司 先锋科技股份有限公司 科技股份有限公司 先锋科技股份有限公司 www Sens-Tech Ltd UK based company 40 Staff Specialise in detection and data acquisition systems for light and

More information

Master Thesis_專門用來製作目錄.doc

Master Thesis_專門用來製作目錄.doc Introduction All-IP [1-4] All-IP packet switching long delay time, jitter packet loss All-IP Budget-Based QoS End-to-End QoS (real time on demand) 1 1.1 Circuit Switching Packet Switching DWDM IP VoIP

More information

編輯要旨 一 教育部為了協助本國失學民眾 新住民及 其他國外朋友 有系統的學習華語文的 聽 說 讀 寫 算等識字能力及跨文化 適應 以培養具有基本公民素養的終身學 習者 特別委託新北市政府教育局新住民 文教輔導科團隊編輯本教材 二 依據上述目的 本教材共有六冊 並分為 六級 分級及單元名稱詳如下表

編輯要旨 一 教育部為了協助本國失學民眾 新住民及 其他國外朋友 有系統的學習華語文的 聽 說 讀 寫 算等識字能力及跨文化 適應 以培養具有基本公民素養的終身學 習者 特別委託新北市政府教育局新住民 文教輔導科團隊編輯本教材 二 依據上述目的 本教材共有六冊 並分為 六級 分級及單元名稱詳如下表 基 本 識 字 教 材 第 2 冊 初 二 級 教 育 部 編 印 編輯要旨 一 教育部為了協助本國失學民眾 新住民及 其他國外朋友 有系統的學習華語文的 聽 說 讀 寫 算等識字能力及跨文化 適應 以培養具有基本公民素養的終身學 習者 特別委託新北市政府教育局新住民 文教輔導科團隊編輯本教材 二 依據上述目的 本教材共有六冊 並分為 六級 分級及單元名稱詳如下表 第一冊 第二冊 第三冊 第四冊 第五冊

More information

Microsoft PowerPoint - ACA 專案簡報玄奘大學-20111221.ppt

Microsoft PowerPoint - ACA 專案簡報玄奘大學-20111221.ppt ACA 多 媒 體 網 頁 設 計 和 數 位 內 容 傳 播 應 用 能 力 全 球 國 際 認 證 從 國 際 視 野 談 : 運 用 全 球 多 媒 體 教 學 與 考 核 標 準 將 國 際 證 照 融 入 課 程 以 提 昇 就 業 競 爭 力 勁 園 國 際 股 份 有 限 公 司 林 旻 緯 部 分 內 容 節 錄 自 : 國 立 台 灣 師 範 大 學 戴 建 耘 教 授 從 國 際

More information

P4V88+_BIOS_CN.p65

P4V88+_BIOS_CN.p65 1 Main H/W Monitor Boot Security Exit System Overview System Time System Date [ 17:00:09] [Wed 12/22/2004] BIOS Version : P4V88+ BIOS P1.00 Processor Type : Intel (R) Pentium (R) 4 CPU 2.40 GHz Processor

More information

LSI U320 SCSI卡用户手册.doc

LSI U320 SCSI卡用户手册.doc V1.0 Ultra320 SCSI SCSI 2004 7 PentiumIntel MS-DOS Windows Novell Netware Novell Sco Unix Santa Cruz Operation LSI U320 SCSI SCSI SCSI Integrated Mirroring/Integrated Striping BIOS Firmware LSI U320 SCSI

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

Abstract arm linux tool-chain root NET-Start! 2

Abstract arm linux tool-chain root NET-Start! 2 Lab III - Embedding Linux 1 Abstract arm linux tool-chain root NET-Start! 2 Part 1.4 Step1. tool-chain 4 Step2. PATH 4 Part 2 kernel 5 Step1. 5 Step2... 6 Step3...8 Part 3 root. 8 Step1. 8 Step2. 8 Part

More information

User’s Manual

User’s Manual V7 用 户 手 册 亿 图 为 您 专 业 图 表 设 计 提 供 最 佳 解 决 方 案 2004-2014 EdrawSoft. All right reserved. Edraw and Edraw logo are registered trademarks of EdrawSoft. 目 录 亿 图 怎 样 优 越 于 其 他 软 件... 5 亿 图 7 个 新 功 能... 6 为

More information