Word Cloud 文字雲 D1081726

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

Word Cloud

Homework

課程:程式設計
姓名:張富勝
學號:D1081726
A.論文資訊
Ravikumar V Chakaravarthy; Hua Jiang “Special
Session: XTA: Open Source eXtensible,
Scalable and Adaptable TensorArchitecture
for AI Acceleration,” Published in: 2020 IEEE
38th International Conference on Computer Design
(ICCD)
Date of Conference: 18-21 Oct. 2020
Date Added to IEEE Xplore: 21 December 2020
DOI: 10.1109/ICCD50377.2020.00026

B.摘要
Accelerator frameworks have gained prominence since the advent of AI
applications. The limitation with current open source accelerator solutions is that
it was not designed to be scalable and adaptable for commercial MPSoC
products that have different network requirements and higher performance goals.
We have implemented a new AI accelerator framework, XTA, derived from TVM-
VTA which is a popular, first known, open source backend AI accelerator for
Xilinx MPSoC. XTA is scalable and adaptable to various network types and
workloads of AI applications. XTA is a multi-core architecture that can
dynamically scale and adapt to a given AI problem at both hardware and
software layers. At the hardware layer it can adapt to compute and memory
configurations of the system and at the software layer it can hide hardware
complexity and adapt to changing user workloads or data flows of a given AI
problem. XTA also supports parallel, pipelined processing and autotuning of
subgraphs in a MPSoC environment. We hope that with this Open Source AI
accelerator, industry can not only push the performance limits but also quickly
innovate new AI applications based on the flexibly the architecture provides.
Simulator version of the XTA shows significant performance improvements over
TVM-VTA for a wide range of networks and workloads.

C.程式碼
pip install wordcloud
from wordcloud import WordCloud 
wc=WordCloud()
text = "Accelerator frameworks have gained prominence since the advent of AI appl
ications. The limitation with current open source accelerator solutions is that i
t was not designed to be scalable and adaptable for commercial MPSoC products tha
t have different network requirements and higher performance goals. We have imple
mented a new AI accelerator framework, XTA, derived from TVM-VTA which is a popul
ar, first known, open source backend AI accelerator for Xilinx MPSoC. XTA is scal
able and adaptable to various network types and workloads of AI applications. XTA 
is a multi-core architecture that can dynamically scale and adapt to a given AI p
roblem at both hardware and software layers. At the hardware layer it can adapt t
o compute and memory configurations of the system and at the software layer it ca
n hide hardware complexity and adapt to changing user workloads or data flows of 
a given AI problem. XTA also supports parallel, pipelined processing and autotuni
ng of subgraphs in a MPSoC environment. We hope that with this Open Source AI acc
elerator, industry can not only push the performance limits but also quickly inno
vate new AI applications based on the flexibly the architecture provides. Simulat
or version of the XTA shows significant performance improvements over TVM-VTA for 
a wide range of networks and workloads."
wc.generate(text)
import matplotlib.pyplot as plt
plt.imshow(wc)
plt.axis("off")
plt.show()

D.文字雲(jpg)

A1.論文資訊
Bradley; P. Chung “AI tools: development
trends and selection
Published in: IEE Colloquium on Strategic Research
Issues in AI in Engineering
Date of Conference: 8-8 Oct. 1990
Date Added to IEEE Xplore: 06 August 2002
INSPEC Accession Number: 3800825

B1.摘要
There is a wealth of AI tools available to the engineer in order to help solve problems.
Identifying what an engineer requires in terms of AI tools is dependent on a number
of interconnecting factors: what are the AI features that support the application, what
system does the engineer wish the AI component to complement, what resources are
available for the purchase of the tool. The authors give a broad overview of AI tools
and look at the present day market trends. The selection of AI tools based on
mapping critical AI features to the application are also discussed.

C1.程式碼
pip install wordcloud
from wordcloud import WordCloud 
wc=WordCloud()
text = "There is a wealth of AI tools available to the engineer in order to help 
solve problems. Identifying what an engineer requires in terms of AI tools is dep
endent on a number of interconnecting factors: what are the AI features that supp
ort the application, what system does the engineer wish the AI component to compl
ement, what resources are available for the purchase of the tool. The authors giv
e a broad overview of AI tools and look at the present day market trends. The sel
ection of AI tools based on mapping critical AI features to the application are a
lso discussed."
wc.generate(text)
import matplotlib.pyplot as plt
plt.imshow(wc)
plt.axis("off")
plt.show()

D1.文字雲(jpg)
心得:
第一次接觸 Colab,Colab 是可以讓我們可以直接在瀏覽
器下直接執行及編譯 Python 程式碼的好工具!寫程式在上
學期已經造成一點陰影了,當時是寫 DEV C++前面還在慢
慢熟悉 學到後面腦袋已經亂了,但今天用 Colab 時完全沒
有之前的問題,反而還有趣也很容易理解。

You might also like