首页 > 最新文献

2020 IEEE/ACM 13th International Conference on Utility and Cloud Computing (UCC)最新文献

英文 中文
Program Committee 项目委员会
Pub Date : 2018-11-01 DOI: 10.1109/candar.2018.00007
A. Bailly
s of Contributed Talks Program Size: A Call for Inquiry Lucas Bang Harvey Mudd College, USA bang@cs.hmc.edu Size is a fundamental program characteristic that has deep implications for the phenomenological experience and in uence of computer code. Program size has a paradoxically rich yet sparse theoretical history that deserves closer examination. Here, I highlight the importance of program size, using a relatively obscure size theorem of Blum [1] as a beacon, and discuss the relevance of program size on the past, present, and future of programming. Theory in Praxis. Programmers are typically familiar with several foundational results in theoretical computer science and these results show up with varying frequency in the day-to-day experience of most people who regularly write code. A few examples will help illustrate. Ideas like undecidability, incomputability, and incompleteness [6, 17, 3] are required topics in many computer science programs, but it is not common to take them into practical consideration while performing routine software development tasks. Slightly more consideration-worthy on a regular basis is the notion of complexity classes, notably NP-completness [10]. It is indeed the case that the ability to recognize NPcomplete problems can have a real impact on programmers, users, and others a ected by solutions to scheduling, planning, routing, and optimization programs. Even more common are the considerations for algorithmic space and time complexity [5]; programming almost always accounts for memory and time e ciency. Finally, program correctness [12] is of utmost concern; by some accounts, programmers spend 35-50% of their time validating code [2]. If you have experience programming, I would encourage you to re ect on how relative frequency with which you have taken each of these facets of theoretical computer science into account while coding. I claim that the degree to which we consider theoretical areas of computing (e.g. each of the the aforementioned computability, complexity classes, algorithmic complexity, and correctness) in our daily lives is proportional to the potential for phenomenological discomfort caused by not taking them into consideration. I support this claim through the lens of Heidegger's ready-to-hand and present-at-hand framework [8]. Further, I claim that program size is indeed of the utmost importance to the daily activity of programming and to the e ect that programs have on society. Abstractions are born, to some degree, in order to manage program size complexity. When an abstraction does not behave as expected, the programmer shifts from a state of ready-at-hand to present-at-hand in the face of large programs. Yet, there does not currently exist a common familiarity with theoretical results related to program size providing a vocabulary that a ords re ection or communication about such concerns. Remember Not To Forget. Among theoreticians, Kolmogorov Complexity, is well-know. For a string s, the Kolmog
Lucas Bang Harvey Mudd学院,美国bang@cs.hmc.edu规模是一个基本的程序特征,它对现象学经验和计算机代码的影响有着深刻的影响。程序大小有一个矛盾的丰富而稀疏的理论历史,值得更仔细地研究。在这里,我强调程序大小的重要性,使用Blum[1]的一个相对模糊的大小定理作为灯塔,并讨论程序大小与编程的过去、现在和未来的相关性。理论与实践。程序员通常熟悉理论计算机科学中的几个基本结果,这些结果在大多数经常编写代码的人的日常经验中以不同的频率出现。几个例子将有助于说明。不可判定性、不可计算性和不完全性[6,17,3]等概念是许多计算机科学程序中必需的主题,但是在执行常规软件开发任务时将它们纳入实际考虑并不常见。在常规基础上稍微值得考虑的是复杂度类的概念,特别是np完备性[10]。事实上,识别非完全性问题的能力对程序员、用户和其他受调度、计划、路由和优化程序解决方案影响的人有真正的影响。更常见的是对算法空间和时间复杂度的考虑[5];编程几乎总是考虑到内存和时间效率。最后,程序的正确性[12]是最重要的;根据一些统计,程序员花费35-50%的时间来验证代码[2]。如果您有编程经验,我会鼓励您在编码时考虑到理论计算机科学的每个方面的相对频率。我认为,我们在日常生活中考虑计算理论领域(例如前面提到的每一个可计算性、复杂性类、算法复杂性和正确性)的程度,与不考虑它们而导致的现象学不适的可能性成正比。我通过海德格尔的现成(ready-to-hand)和现在-在手(present-at-hand)框架来支持这一主张[8]。此外,我认为程序的大小对于编程的日常活动和程序对社会的影响确实是至关重要的。在某种程度上,抽象的诞生是为了管理程序大小的复杂性。当抽象的行为不像预期的那样时,程序员在面对大型程序时就会从现成的状态转变为现成的状态。然而,目前还没有一个普遍熟悉的与程序大小相关的理论结果,提供一个词汇表来反映或交流这些问题。记住不要忘记。在理论家中,柯尔莫哥洛夫复杂性是众所周知的。对于字符串s, s的Kolmogorov复杂度是在不提供输入的情况下,通用编程语言中输出s的最小程序的大小[11]。不太为人所知,但我认为与日常程序员经验更相关的是Blum的大小定理,它并不像第一眼看到的那么简单[1]。布卢姆大小定理(1967)。设φi为递归函数的标度,g为无界递归函数,f为任意递归函数。我们可以让指标i, j∈N使得φi = φg(i)且f(|i|) < |g(j)|,即φg(i)的大小任意大于φi的大小,尽管它们计算的是同一个函数。在Robert Harper的《编程语言的实用基础》[7]和一篇博客文章《老的被忽视的定理仍然是定理》中,他简要但清楚地阐明了Blum大小定理的结果:对于一个编程系统,你可以保证能够确定地知道任何程序的行为(例如停止),对于特定的问题,最小的解决方案是一个不可思议的大程序。作为这一事实的具体例子,Harper指出了用于计算两个自然数的最大公约数的欧几里得算法(可能是几行Python)。在受限的编程系统system T中,编写GCD很快变得相当笨拙,因为所有程序都保证收敛。我个人可以证明我曾经这样做过,这确实是相当痛苦的,而且这个项目变得相当大。https://existentialtype.wordpress.com/2014/03/20/old-neglected-theorems-are-still-theorems/
{"title":"Program Committee","authors":"A. Bailly","doi":"10.1109/candar.2018.00007","DOIUrl":"https://doi.org/10.1109/candar.2018.00007","url":null,"abstract":"s of Contributed Talks Program Size: A Call for Inquiry Lucas Bang Harvey Mudd College, USA bang@cs.hmc.edu Size is a fundamental program characteristic that has deep implications for the phenomenological experience and in uence of computer code. Program size has a paradoxically rich yet sparse theoretical history that deserves closer examination. Here, I highlight the importance of program size, using a relatively obscure size theorem of Blum [1] as a beacon, and discuss the relevance of program size on the past, present, and future of programming. Theory in Praxis. Programmers are typically familiar with several foundational results in theoretical computer science and these results show up with varying frequency in the day-to-day experience of most people who regularly write code. A few examples will help illustrate. Ideas like undecidability, incomputability, and incompleteness [6, 17, 3] are required topics in many computer science programs, but it is not common to take them into practical consideration while performing routine software development tasks. Slightly more consideration-worthy on a regular basis is the notion of complexity classes, notably NP-completness [10]. It is indeed the case that the ability to recognize NPcomplete problems can have a real impact on programmers, users, and others a ected by solutions to scheduling, planning, routing, and optimization programs. Even more common are the considerations for algorithmic space and time complexity [5]; programming almost always accounts for memory and time e ciency. Finally, program correctness [12] is of utmost concern; by some accounts, programmers spend 35-50% of their time validating code [2]. If you have experience programming, I would encourage you to re ect on how relative frequency with which you have taken each of these facets of theoretical computer science into account while coding. I claim that the degree to which we consider theoretical areas of computing (e.g. each of the the aforementioned computability, complexity classes, algorithmic complexity, and correctness) in our daily lives is proportional to the potential for phenomenological discomfort caused by not taking them into consideration. I support this claim through the lens of Heidegger's ready-to-hand and present-at-hand framework [8]. Further, I claim that program size is indeed of the utmost importance to the daily activity of programming and to the e ect that programs have on society. Abstractions are born, to some degree, in order to manage program size complexity. When an abstraction does not behave as expected, the programmer shifts from a state of ready-at-hand to present-at-hand in the face of large programs. Yet, there does not currently exist a common familiarity with theoretical results related to program size providing a vocabulary that a ords re ection or communication about such concerns. Remember Not To Forget. Among theoreticians, Kolmogorov Complexity, is well-know. For a string s, the Kolmog","PeriodicalId":125849,"journal":{"name":"2020 IEEE/ACM 13th International Conference on Utility and Cloud Computing (UCC)","volume":"26 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2018-11-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"133884996","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
Message from the Workshop Chairs 来自研讨会主席的信息
Pub Date : 2017-09-14 DOI: 10.1109/ICCCN.2017.8038352
Song Fu, Abhishek Parakh
Novel scalable scientific algorithms are needed in order to enable key science applications to exploit the computational power of large-scale systems. This is especially true for the current tier of leading petascale machines and the road to exascale computing as high-performance computing (HPC) systems continue to scale up in compute node and processor core count. These extreme-scale systems require novel scientific algorithms to hide network and memory latency, have very high computation/communication overlap, have minimal communication, and have no synchronization points. Scientific algorithms for multi-petaflop and exa-flop systems also need to be fault tolerant and fault resilient, since the probability of faults increases with scale. Resilience at the system software and at the algorithmic level is needed as a crosscutting effort. Finally, with the advent of heterogeneous compute nodes that employ standard processors as well as general-purpose computing graphics processing units (GPGPUs), scientific algorithms need to match these architectures to extract the most performance. This includes different system-specific levels of parallelism as well as co-scheduling of computation. Key science applications require novel mathematical models and system software that address the scalability and resilience challenges of current- and future-generation extreme-scale HPC systems. The goal of this workshop is to bring together experts in the area of scalable algorithms to present the latest achievements and to discuss the challenges ahead.
为了使关键科学应用能够利用大规模系统的计算能力,需要新颖的可扩展科学算法。对于当前领先的千兆级计算机和随着高性能计算(HPC)系统在计算节点和处理器核心数量上不断扩大而向百亿亿级计算发展的道路来说尤其如此。这些极端规模的系统需要新的科学算法来隐藏网络和内存延迟,具有非常高的计算/通信重叠,具有最小的通信,并且没有同步点。用于千万亿次和exa-flop系统的科学算法也需要容错和故障弹性,因为故障的概率随着规模的增加而增加。系统软件和算法级别的弹性需要作为横切工作。最后,随着采用标准处理器和通用计算图形处理单元(gpgpu)的异构计算节点的出现,科学算法需要匹配这些架构以提取最大的性能。这包括不同系统特定级别的并行性以及计算的协同调度。关键科学应用需要新颖的数学模型和系统软件,以解决当前和未来一代极端规模HPC系统的可扩展性和弹性挑战。本次研讨会的目标是将可扩展算法领域的专家聚集在一起,介绍最新的成就并讨论未来的挑战。
{"title":"Message from the Workshop Chairs","authors":"Song Fu, Abhishek Parakh","doi":"10.1109/ICCCN.2017.8038352","DOIUrl":"https://doi.org/10.1109/ICCCN.2017.8038352","url":null,"abstract":"Novel scalable scientific algorithms are needed in order to enable key science applications to exploit the computational power of large-scale systems. This is especially true for the current tier of leading petascale machines and the road to exascale computing as high-performance computing (HPC) systems continue to scale up in compute node and processor core count. These extreme-scale systems require novel scientific algorithms to hide network and memory latency, have very high computation/communication overlap, have minimal communication, and have no synchronization points. Scientific algorithms for multi-petaflop and exa-flop systems also need to be fault tolerant and fault resilient, since the probability of faults increases with scale. Resilience at the system software and at the algorithmic level is needed as a crosscutting effort. Finally, with the advent of heterogeneous compute nodes that employ standard processors as well as general-purpose computing graphics processing units (GPGPUs), scientific algorithms need to match these architectures to extract the most performance. This includes different system-specific levels of parallelism as well as co-scheduling of computation. Key science applications require novel mathematical models and system software that address the scalability and resilience challenges of current- and future-generation extreme-scale HPC systems. The goal of this workshop is to bring together experts in the area of scalable algorithms to present the latest achievements and to discuss the challenges ahead.","PeriodicalId":125849,"journal":{"name":"2020 IEEE/ACM 13th International Conference on Utility and Cloud Computing (UCC)","volume":"28 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2017-09-14","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"131808981","PeriodicalName":null,"FirstCategoryId":null,"ListUrlMain":null,"RegionNum":0,"RegionCategory":"","ArticlePicture":[],"TitleCN":null,"AbstractTextCN":null,"PMCID":"","EPubDate":null,"PubModel":null,"JCR":null,"JCRName":null,"Score":null,"Total":0}
引用次数: 0
期刊
2020 IEEE/ACM 13th International Conference on Utility and Cloud Computing (UCC)
全部 Acc. Chem. Res. ACS Applied Bio Materials ACS Appl. Electron. Mater. ACS Appl. Energy Mater. ACS Appl. Mater. Interfaces ACS Appl. Nano Mater. ACS Appl. Polym. Mater. ACS BIOMATER-SCI ENG ACS Catal. ACS Cent. Sci. ACS Chem. Biol. ACS Chemical Health & Safety ACS Chem. Neurosci. ACS Comb. Sci. ACS Earth Space Chem. ACS Energy Lett. ACS Infect. Dis. ACS Macro Lett. ACS Mater. Lett. ACS Med. Chem. Lett. ACS Nano ACS Omega ACS Photonics ACS Sens. ACS Sustainable Chem. Eng. ACS Synth. Biol. Anal. Chem. BIOCHEMISTRY-US Bioconjugate Chem. BIOMACROMOLECULES Chem. Res. Toxicol. Chem. Rev. Chem. Mater. CRYST GROWTH DES ENERG FUEL Environ. Sci. Technol. Environ. Sci. Technol. Lett. Eur. J. Inorg. Chem. IND ENG CHEM RES Inorg. Chem. J. Agric. Food. Chem. J. Chem. Eng. Data J. Chem. Educ. J. Chem. Inf. Model. J. Chem. Theory Comput. J. Med. Chem. J. Nat. Prod. J PROTEOME RES J. Am. Chem. Soc. LANGMUIR MACROMOLECULES Mol. Pharmaceutics Nano Lett. Org. Lett. ORG PROCESS RES DEV ORGANOMETALLICS J. Org. Chem. J. Phys. Chem. J. Phys. Chem. A J. Phys. Chem. B J. Phys. Chem. C J. Phys. Chem. Lett. Analyst Anal. Methods Biomater. Sci. Catal. Sci. Technol. Chem. Commun. Chem. Soc. Rev. CHEM EDUC RES PRACT CRYSTENGCOMM Dalton Trans. Energy Environ. Sci. ENVIRON SCI-NANO ENVIRON SCI-PROC IMP ENVIRON SCI-WAT RES Faraday Discuss. Food Funct. Green Chem. Inorg. Chem. Front. Integr. Biol. J. Anal. At. Spectrom. J. Mater. Chem. A J. Mater. Chem. B J. Mater. Chem. C Lab Chip Mater. Chem. Front. Mater. Horiz. MEDCHEMCOMM Metallomics Mol. Biosyst. Mol. Syst. Des. Eng. Nanoscale Nanoscale Horiz. Nat. Prod. Rep. New J. Chem. Org. Biomol. Chem. Org. Chem. Front. PHOTOCH PHOTOBIO SCI PCCP Polym. Chem.
×
引用
GB/T 7714-2015
复制
MLA
复制
APA
复制
导出至
BibTeX EndNote RefMan NoteFirst NoteExpress
×
0
微信
客服QQ
Book学术公众号 扫码关注我们
反馈
×
意见反馈
请填写您的意见或建议
请填写您的手机或邮箱
×
提示
您的信息不完整,为了账户安全,请先补充。
现在去补充
×
提示
您因"违规操作"
具体请查看互助需知
我知道了
×
提示
现在去查看 取消
×
提示
确定
Book学术官方微信
Book学术文献互助
Book学术文献互助群
群 号:481959085
Book学术
文献互助 智能选刊 最新文献 互助须知 联系我们:info@booksci.cn
Book学术提供免费学术资源搜索服务,方便国内外学者检索中英文文献。致力于提供最便捷和优质的服务体验。
Copyright © 2023 Book学术 All rights reserved.
ghs 京公网安备 11010802042870号 京ICP备2023020795号-1