首页 > 最新文献

Proceedings of 2014 International Conference on Cloud Computing and Internet of Things最新文献

英文 中文
I/O-intensive scheduling in multiprocessor virtualized system 多处理器虚拟化系统中的I/ o密集型调度
Haoxiang Mao, B. Huang
Virtualization is becoming an important part of cloud computing and high performance calculation. In the virtualized system, the scheduler plays an important role in effecting the performance of whole system. Traditional scheduler that focus on the fairness of VMs would cause problems in I/O performance and latency. In order to eliminate the I/O latency issue, we propose a virtual machine scheduling model based on multiprocessor system. We also implement a prototype in Xen 4.3.0 and evaluate it with several benchmarks. Experiment results demonstrate that our scheduling model can improve the I/O performance effectively. The bandwidth of disk increase by 53.6% and that of network increase by 39.4%. Meanwhile, our method does not change the scheduling algorithm of CPU-intensive VM so that the scheduling fairness is ensured.
虚拟化正在成为云计算和高性能计算的重要组成部分。在虚拟化系统中,调度程序对整个系统的性能起着至关重要的作用。关注vm公平性的传统调度器会导致I/O性能和延迟问题。为了消除I/O延迟问题,提出了一种基于多处理器系统的虚拟机调度模型。我们还在Xen 4.3.0中实现了一个原型,并用几个基准测试对其进行了评估。实验结果表明,该调度模型可以有效地提高I/O性能。磁盘带宽增长53.6%,网络带宽增长39.4%。同时,该方法不改变cpu密集型虚拟机的调度算法,保证了调度的公平性。
{"title":"I/O-intensive scheduling in multiprocessor virtualized system","authors":"Haoxiang Mao, B. Huang","doi":"10.1109/CCIOT.2014.7062504","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062504","url":null,"abstract":"Virtualization is becoming an important part of cloud computing and high performance calculation. In the virtualized system, the scheduler plays an important role in effecting the performance of whole system. Traditional scheduler that focus on the fairness of VMs would cause problems in I/O performance and latency. In order to eliminate the I/O latency issue, we propose a virtual machine scheduling model based on multiprocessor system. We also implement a prototype in Xen 4.3.0 and evaluate it with several benchmarks. Experiment results demonstrate that our scheduling model can improve the I/O performance effectively. The bandwidth of disk increase by 53.6% and that of network increase by 39.4%. Meanwhile, our method does not change the scheduling algorithm of CPU-intensive VM so that the scheduling fairness is ensured.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"143 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"123772681","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}
引用次数: 1
Elastic time slice scheduler in virtualized system 虚拟化系统中的弹性时间片调度程序
M. Zhu, B. Huang, Xiaolong Jia
Virtualization is a key technology in the modern data centers as well as in the cloud computing industry. Modern virtual machine monitors (VMM) like KVM and Xen play a key role in the management and maintenance of virtual machines (VM). However, as a software middle layer, VMM brings in a negative impact in terms of VM's performance, among which the I/O events latency problem is one of the biggest issue.
虚拟化是现代数据中心和云计算行业的一项关键技术。现代虚拟机监视器(VMM),如KVM和Xen,在虚拟机(VM)的管理和维护中起着关键作用。但是,作为软件中间层,VMM给VM的性能带来了负面影响,其中I/O事件延迟问题是最大的问题之一。
{"title":"Elastic time slice scheduler in virtualized system","authors":"M. Zhu, B. Huang, Xiaolong Jia","doi":"10.1109/CCIOT.2014.7062505","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062505","url":null,"abstract":"Virtualization is a key technology in the modern data centers as well as in the cloud computing industry. Modern virtual machine monitors (VMM) like KVM and Xen play a key role in the management and maintenance of virtual machines (VM). However, as a software middle layer, VMM brings in a negative impact in terms of VM's performance, among which the I/O events latency problem is one of the biggest issue.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"29 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"127722786","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
Performance analysis of parallel smoothed particle hydrodynamics on multi-core CPUs 多核cpu上并行光滑粒子流体力学性能分析
Cheng Wenbo, Yucheng Yao, Yang Zhang
This paper presents a parallel SPH implementation on multi-core CPUs. The implementation uses a hash table to store particles data and divides the program code into 2 parts for parallelization. The first part has no data race, but the second part has data race. Then, the paper compares the running time and parallel speedup of each part to find the bottleneck of the parallel SPH program. The results show that the program can achieve linear speedup just with the first part to be parallelized when the search radius is large. And the second part has become a performance bottleneck only when the search radius is small enough (for each cell only contains one or two particles on average). We present a method to parallelize the second part without affecting the performance of the first part. The results show that our method can ease the performance bottleneck when the search radius is small.
本文提出了一种在多核cpu上实现并行SPH的方法。该实现使用哈希表来存储粒子数据,并将程序代码分成两部分进行并行化。第一部分没有数据竞争,但第二部分有数据竞争。然后,对各部分的运行时间和并行加速进行比较,找出并行SPH程序的瓶颈。结果表明,当搜索半径较大时,仅将第一部分并行化即可实现线性加速。只有当搜索半径足够小(每个单元平均只包含一到两个粒子)时,第二部分才会成为性能瓶颈。我们提出了一种在不影响第一部分性能的情况下并行化第二部分的方法。结果表明,该方法可以缓解搜索半径较小时的性能瓶颈。
{"title":"Performance analysis of parallel smoothed particle hydrodynamics on multi-core CPUs","authors":"Cheng Wenbo, Yucheng Yao, Yang Zhang","doi":"10.1109/CCIOT.2014.7062511","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062511","url":null,"abstract":"This paper presents a parallel SPH implementation on multi-core CPUs. The implementation uses a hash table to store particles data and divides the program code into 2 parts for parallelization. The first part has no data race, but the second part has data race. Then, the paper compares the running time and parallel speedup of each part to find the bottleneck of the parallel SPH program. The results show that the program can achieve linear speedup just with the first part to be parallelized when the search radius is large. And the second part has become a performance bottleneck only when the search radius is small enough (for each cell only contains one or two particles on average). We present a method to parallelize the second part without affecting the performance of the first part. The results show that our method can ease the performance bottleneck when the search radius is small.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"43 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"126799766","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}
引用次数: 1
Research on necessity of adjusting PLE configuration 调整PLE结构的必要性研究
B. Huang, M. Zhu
Virtualization is important in server consolidation and essential for cloud computing. Using virtualization technology, a single physical machine can provide multiple isolated virtual machine to users, which will improve the overall system resources usage. However, virtualization will also introduce new challenges and mechanisms that work functionally in traditional operating system may lead to the performance degradation of virtual machines. LHP problem arises because spin lock mechanism could not work effectively in virtualization environment. To solve LHP problem, many solutions have been proposed to reduce its performance impact on virtual machines and improve the overall system performance. A hardware assisted technology called Pause Loop Exit(PLE) has been proposed to help detecting spin lock waiter in virtual machines and then reduce the cpu time used in spinning. In this paper, we verify the necessity of adjusting PLE configuration in different scenarios. Our experiment results show that it is necessary to adjust PLE configuration when the virtual machine is running different applications and the number of virtual machines varies.
虚拟化在服务器整合中很重要,对云计算来说也是必不可少的。通过虚拟化技术,单个物理机可以为用户提供多个相互隔离的虚拟机,从而提高系统整体资源的利用率。然而,虚拟化也会带来新的挑战,在传统操作系统中正常工作的机制可能会导致虚拟机的性能下降。由于自旋锁机制在虚拟化环境中不能有效地工作,导致了LHP问题。为了解决LHP问题,人们提出了许多解决方案,以减少其对虚拟机的性能影响,提高系统的整体性能。提出了一种硬件辅助技术——暂停循环退出(Pause Loop Exit, PLE),用于检测虚拟机中的自旋锁等待,从而减少自旋占用的cpu时间。在本文中,我们验证了在不同场景下调整PLE配置的必要性。我们的实验结果表明,当虚拟机运行不同的应用程序和虚拟机数量变化时,有必要调整PLE配置。
{"title":"Research on necessity of adjusting PLE configuration","authors":"B. Huang, M. Zhu","doi":"10.1109/CCIOT.2014.7062503","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062503","url":null,"abstract":"Virtualization is important in server consolidation and essential for cloud computing. Using virtualization technology, a single physical machine can provide multiple isolated virtual machine to users, which will improve the overall system resources usage. However, virtualization will also introduce new challenges and mechanisms that work functionally in traditional operating system may lead to the performance degradation of virtual machines. LHP problem arises because spin lock mechanism could not work effectively in virtualization environment. To solve LHP problem, many solutions have been proposed to reduce its performance impact on virtual machines and improve the overall system performance. A hardware assisted technology called Pause Loop Exit(PLE) has been proposed to help detecting spin lock waiter in virtual machines and then reduce the cpu time used in spinning. In this paper, we verify the necessity of adjusting PLE configuration in different scenarios. Our experiment results show that it is necessary to adjust PLE configuration when the virtual machine is running different applications and the number of virtual machines varies.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"116 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"121949810","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}
引用次数: 3
Security transmission routing protocol for MIMO-VANET MIMO-VANET安全传输路由协议
Liu Feng, Yang Xiu-ping, Wang Jie
The security routing protocol for Multi-Input-Multi-Output Vehicular Ad-hoc Network (MIMO-VANET) which is used to prevent the eavesdropping in VANET was presented in this paper. When building the routing table, this protocol stores the current channel states and restricts the VANET nodes, excepted source/ destination nodes, from obtaining the unrelated routing information. During the information transmission process, the presorted channel states in network layer are transparently transmitted to the physical layer, and decomposed as total channel state. The decomposed results, which are only known by the source/destination nodes from routing information, can be utilized to equalize the channel and to demodulate the information. As a result, the other nodes cannot effectively equalize the channel, which causes little information can be eavesdropped. The theory analysis and simulation illustrate that, when the destination nodes obtain the good signal quality, the eavesdropper suffers poor bit error rate.
提出了多输入多输出车辆自组织网络(MIMO-VANET)的安全路由协议,用于防止VANET中的窃听。在构建路由表时,该协议存储当前通道状态,并限制除源/目的节点外的VANET节点获取不相关的路由信息。在信息传输过程中,将网络层中预置的信道状态透明地传输到物理层,并分解为总信道状态。分解后的结果(只有源/目标节点从路由信息中知道)可用于均衡信道和解调信息。因此,其他节点无法有效地均衡信道,从而导致很少的信息被窃听。理论分析和仿真表明,当目标节点获得良好的信号质量时,窃听者的误码率较低。
{"title":"Security transmission routing protocol for MIMO-VANET","authors":"Liu Feng, Yang Xiu-ping, Wang Jie","doi":"10.1109/CCIOT.2014.7062526","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062526","url":null,"abstract":"The security routing protocol for Multi-Input-Multi-Output Vehicular Ad-hoc Network (MIMO-VANET) which is used to prevent the eavesdropping in VANET was presented in this paper. When building the routing table, this protocol stores the current channel states and restricts the VANET nodes, excepted source/ destination nodes, from obtaining the unrelated routing information. During the information transmission process, the presorted channel states in network layer are transparently transmitted to the physical layer, and decomposed as total channel state. The decomposed results, which are only known by the source/destination nodes from routing information, can be utilized to equalize the channel and to demodulate the information. As a result, the other nodes cannot effectively equalize the channel, which causes little information can be eavesdropped. The theory analysis and simulation illustrate that, when the destination nodes obtain the good signal quality, the eavesdropper suffers poor bit error rate.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"52 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"122281724","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}
引用次数: 3
Study and implementation of MVC pattern upon extended function in the management system of university laboratory project declaration 基于扩展功能的MVC模式在高校实验室项目申报管理系统中的研究与实现
Weihong Wang, Wentao Xu
Based on the management system of university laboratory project application in ZJUT, this article studies the technical principle and core things deeply so as to know the actual effect of web application developed by WebWork framework and extended functions by jFinal framework. At the same time, a MVFO model which is suitable for this project is provided according to the insight of MVC and specifically analyzed by the function of exporting form view in Excel spreadsheet, which strengthen the comprehension and study of software architecture theory.
本文以浙江理工大学大学实验室项目申请管理系统为背景,对其技术原理和核心内容进行了深入的研究,从而了解使用WebWork框架开发web应用程序,使用jFinal框架进行扩展功能的实际效果。同时,根据MVC的见解,提供了一个适合本项目的MVFO模型,并通过Excel电子表格中导出表单视图的功能进行了具体分析,加强了对软件体系结构理论的理解和学习。
{"title":"Study and implementation of MVC pattern upon extended function in the management system of university laboratory project declaration","authors":"Weihong Wang, Wentao Xu","doi":"10.1109/CCIOT.2014.7062535","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062535","url":null,"abstract":"Based on the management system of university laboratory project application in ZJUT, this article studies the technical principle and core things deeply so as to know the actual effect of web application developed by WebWork framework and extended functions by jFinal framework. At the same time, a MVFO model which is suitable for this project is provided according to the insight of MVC and specifically analyzed by the function of exporting form view in Excel spreadsheet, which strengthen the comprehension and study of software architecture theory.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"36 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"124944073","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}
引用次数: 3
Integrating biometric sensors into automotive Internet of Things 将生物识别传感器集成到汽车物联网中
Rupak Rathore, Carroll Gau
A rapidly ageing population, the prominence of obesity and associated medical conditions, widespread incidents of drunken driving, advent of telematics, advances in medical devices and emergence of 4G mobile networks necessitates and enables the convergence of biometrics into automobiles that can facilitate rapid and relevant responses to save precious lives. In this paper, the authors describe how such a convergence can be achieved by proposing an automotive healthcare and safety framework controlled by a dedicated healthcare systems control unit and its integration into an automotive Internet of Things containing telematics and other systems. The paper further explores the fulfillment of emergency response using cloud computing and vehicle to anything technologies as well as the potential impact such a framework can have on safety of our cities.
人口迅速老龄化、肥胖和相关医疗状况的突出、酒后驾驶事件的广泛发生、远程信息处理技术的出现、医疗设备的进步以及4G移动网络的出现,都需要并使生物识别技术能够融合到汽车中,从而促进快速和相关的反应,以挽救宝贵的生命。在本文中,作者通过提出一个由专用医疗保健系统控制单元控制的汽车医疗保健和安全框架,并将其集成到包含远程信息处理和其他系统的汽车物联网中,描述了如何实现这种融合。本文进一步探讨了使用云计算和车辆到任何技术实现应急响应,以及这种框架对我们城市安全的潜在影响。
{"title":"Integrating biometric sensors into automotive Internet of Things","authors":"Rupak Rathore, Carroll Gau","doi":"10.1109/CCIOT.2014.7062532","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062532","url":null,"abstract":"A rapidly ageing population, the prominence of obesity and associated medical conditions, widespread incidents of drunken driving, advent of telematics, advances in medical devices and emergence of 4G mobile networks necessitates and enables the convergence of biometrics into automobiles that can facilitate rapid and relevant responses to save precious lives. In this paper, the authors describe how such a convergence can be achieved by proposing an automotive healthcare and safety framework controlled by a dedicated healthcare systems control unit and its integration into an automotive Internet of Things containing telematics and other systems. The paper further explores the fulfillment of emergency response using cloud computing and vehicle to anything technologies as well as the potential impact such a framework can have on safety of our cities.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"47 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"125000314","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}
引用次数: 9
Task allocation strategy based on improved quad-tree in the cloud 云环境下基于改进四叉树的任务分配策略
Guo-xing Lan
To make full use of the scattered resources in cloud network, this paper proposes an improved quad-tree based cloud computing task allocation strategy on the basis of traditional allocation strategy. The strategy makes effectively use of the temporary network nodes in cloud web by creating a parallel computing model based on improved quad-tree. In the model, a pointer to the next brother node is added to every intermediate node, effectively reducing the task allocations workload of the root node. The simulation results show that the proposed strategy presents good computing performance and high stability.
为了充分利用云网络中分散的资源,本文在传统分配策略的基础上,提出了一种改进的基于四叉树的云计算任务分配策略。该策略通过建立一种基于改进四叉树的并行计算模型,有效地利用了云网络中的临时网络节点。在该模型中,每个中间节点都添加了一个指向下一个兄弟节点的指针,有效地减少了根节点的任务分配工作量。仿真结果表明,该策略具有良好的计算性能和较高的稳定性。
{"title":"Task allocation strategy based on improved quad-tree in the cloud","authors":"Guo-xing Lan","doi":"10.1109/CCIOT.2014.7062495","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062495","url":null,"abstract":"To make full use of the scattered resources in cloud network, this paper proposes an improved quad-tree based cloud computing task allocation strategy on the basis of traditional allocation strategy. The strategy makes effectively use of the temporary network nodes in cloud web by creating a parallel computing model based on improved quad-tree. In the model, a pointer to the next brother node is added to every intermediate node, effectively reducing the task allocations workload of the root node. The simulation results show that the proposed strategy presents good computing performance and high stability.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"45 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"129077495","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
A multiple-path TCP congestion control algorithm based on subflow correlation matrix 基于子流关联矩阵的多路径TCP拥塞控制算法
Lan Kou, Jianxin Liu, Min Hu
Due to the connection with multipath transport control protocol (MPTCP) cannot utilize network resources sufficiently over the unshared bottleneck link, this paper proposes a congestion control algorithm based on the subflow correlation matrix (established by packet loss and RTT information) which is used to detect the status of bottleneck link among subflows by correlation coefficient. Then it performs different congestion control strategies over shared and unshared bottleneck links by adopting fairness definition based on bottleneck link. The results show that the proposed subflow correlation matrix can be used to detect shared bottleneck subflows more accurate and improve overall throughput of MPTCP connection.
针对多路径传输控制协议(MPTCP)连接在非共享瓶颈链路上不能充分利用网络资源的问题,提出了一种基于子流相关矩阵(由丢包和RTT信息建立)的拥塞控制算法,通过相关系数检测子流之间的瓶颈链路状态。然后采用基于瓶颈链路的公平性定义,对共享和非共享瓶颈链路执行不同的拥塞控制策略。结果表明,所提出的子流相关矩阵可以更准确地检测共享瓶颈子流,提高MPTCP连接的整体吞吐量。
{"title":"A multiple-path TCP congestion control algorithm based on subflow correlation matrix","authors":"Lan Kou, Jianxin Liu, Min Hu","doi":"10.1109/CCIOT.2014.7062523","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062523","url":null,"abstract":"Due to the connection with multipath transport control protocol (MPTCP) cannot utilize network resources sufficiently over the unshared bottleneck link, this paper proposes a congestion control algorithm based on the subflow correlation matrix (established by packet loss and RTT information) which is used to detect the status of bottleneck link among subflows by correlation coefficient. Then it performs different congestion control strategies over shared and unshared bottleneck links by adopting fairness definition based on bottleneck link. The results show that the proposed subflow correlation matrix can be used to detect shared bottleneck subflows more accurate and improve overall throughput of MPTCP connection.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"57 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"122528719","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
Cloud-EDA:a PaaS platform architecture and application development for IC design & test Cloud-EDA:用于集成电路设计和测试的PaaS平台架构和应用开发
Chenlong Man, Zaifeng Shi, Zehao Xu, Yang Zong, Ke Pang, Yuzhao Li
IC industry has made great progress in the recent years. However, restricted by the funds and budget, resources of IC design and test are imbalanced. This paper describes an architecture of Cloud-EDA Platform based on Cloud Computing, which is the most popular topic of the internet and IT industry for its high flexibility and low cost. According to the proposed architecture, we design the prototype of Cloud-EDA Platform and develop an application of test-pattern-conversion, which demonstrate that cloud computing can be combined with IC industry to enable ordinary users, app developers and EDA vendors to achieve a win-win-win result.
近年来,集成电路产业取得了长足的发展。然而,受资金和预算的限制,集成电路设计和测试的资源是不平衡的。本文介绍了一种基于云计算的云eda平台架构,云计算以其高灵活性和低成本成为当今互联网和IT行业的热门话题。根据所提出的架构,我们设计了cloud -EDA平台原型,并开发了一个测试模式转换应用,证明了云计算可以与集成电路产业相结合,使普通用户、应用开发商和EDA供应商实现三赢。
{"title":"Cloud-EDA:a PaaS platform architecture and application development for IC design & test","authors":"Chenlong Man, Zaifeng Shi, Zehao Xu, Yang Zong, Ke Pang, Yuzhao Li","doi":"10.1109/CCIOT.2014.7062494","DOIUrl":"https://doi.org/10.1109/CCIOT.2014.7062494","url":null,"abstract":"IC industry has made great progress in the recent years. However, restricted by the funds and budget, resources of IC design and test are imbalanced. This paper describes an architecture of Cloud-EDA Platform based on Cloud Computing, which is the most popular topic of the internet and IT industry for its high flexibility and low cost. According to the proposed architecture, we design the prototype of Cloud-EDA Platform and develop an application of test-pattern-conversion, which demonstrate that cloud computing can be combined with IC industry to enable ordinary users, app developers and EDA vendors to achieve a win-win-win result.","PeriodicalId":255477,"journal":{"name":"Proceedings of 2014 International Conference on Cloud Computing and Internet of Things","volume":"34 1","pages":"0"},"PeriodicalIF":0.0,"publicationDate":"2014-12-01","publicationTypes":"Journal Article","fieldsOfStudy":null,"isOpenAccess":false,"openAccessPdf":"","citationCount":null,"resultStr":null,"platform":"Semanticscholar","paperid":"128150558","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}
引用次数: 5
期刊
Proceedings of 2014 International Conference on Cloud Computing and Internet of Things
全部 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学术文献互助群
群 号:604180095
Book学术
文献互助 智能选刊 最新文献 互助须知 联系我们:info@booksci.cn
Book学术提供免费学术资源搜索服务,方便国内外学者检索中英文文献。致力于提供最便捷和优质的服务体验。
Copyright © 2023 Book学术 All rights reserved.
ghs 京公网安备 11010802042870号 京ICP备2023020795号-1