首页 | 本学科首页   官方微博 | 高级检索  
文章检索
  按 检索   检索词:      
出版年份:   被引次数:   他引次数: 提示:输入*表示无穷大
  收费全文   56篇
  免费   6篇
  国内免费   7篇
电工技术   1篇
综合类   5篇
机械仪表   1篇
建筑科学   1篇
无线电   9篇
冶金工业   1篇
自动化技术   51篇
  2022年   2篇
  2017年   1篇
  2016年   1篇
  2015年   1篇
  2014年   5篇
  2013年   4篇
  2012年   5篇
  2011年   4篇
  2010年   6篇
  2009年   1篇
  2008年   4篇
  2007年   9篇
  2006年   2篇
  2005年   4篇
  2003年   2篇
  2002年   3篇
  2001年   3篇
  2000年   2篇
  1999年   2篇
  1998年   2篇
  1997年   2篇
  1995年   2篇
  1993年   1篇
  1992年   1篇
排序方式: 共有69条查询结果,搜索用时 14 毫秒
1.
Contemporary parallel debuggers allow users to control more than one processing thread while supporting the same examination and visualisation operations of that of sequential debuggers. This approach restricts the use of parallel debuggers when it comes to large scale scientific applications run across hundreds of thousands compute cores. First, manually observing the runtime data to detect error becomes impractical because the data is too big. Second, performing expensive but useful debugging operations becomes infeasible as the computational codes become more complex, involving larger data structures, and as the machines become larger. This study explores the idea of a data‐centric debugging approach, which could be used to make parallel debuggers more powerful. It discusses the use of ad hoc debug‐time assertions that allow a user to reason about the state of a parallel computation. These assertions support the verification and validation of program state at runtime as a whole rather than focusing on that of only a single process state. Furthermore, the debugger's performance can be improved by exploiting the underlying parallel platform because the available compute cores can execute parallel debugging functions, while a program is idling at a breakpoint. We demonstrate the system with several case studies and evaluate the performance of the tool on a 20 000 cores Cray XE6. Copyright © 2013 John Wiley & Sons, Ltd.  相似文献   
2.
该模块通过AHB总线接口监听总线通信内容并将其实时记录于缓冲器中,用户可以通过该缓冲域观察系统运转;它支持在断点/观察点以及处理器陷阱等条件下通过挂起处理器进行系统诊断,同时其内部多级地址译码机制可以对所有片上控制存储单元进行定位,方便用户进行调试。通过专用的调试通信链路,用户可以方便地对嵌入式系统进行远程调试。  相似文献   
3.
Dynamic slicing is a promising trace based technique that helps programmers in the process of debugging. In order to debug a failed run, dynamic slicing requires the dynamic dependence graph (DDG) information for that particular run. The two major challenges involved in utilizing dynamic slicing as a debugging technique are the efficient computation of the DDG and the efficient computation of the dynamic slice, given the DDG. In this paper, we present an efficient debugger, which first computes the DDG efficiently while the program is executing; dynamic slicing is later performed efficiently on the computed DDG, on demand. To minimize program slowdown during the online computation of DDG, we make the design decision of not outputting the computed dependencies to a file, instead, storing them in memory in a specially allocated fixed size circular buffer. The size of the buffer limits the length of the execution history that can be stored. To maximize the execution history that can be maintained, we introduce optimizations to eliminate the storage of most of the generated dependencies, at the same time ensuring that those that are stored are sufficient to capture the bug. Experiments conducted on CPU‐intensive programs show that our optimizations are able to reduce the trace rate from 16 to 0.8 bytes per executed instruction. This enables us to store the dependence trace history for a window of 20 million executed instructions in a 16‐MB buffer. Our debugger is also very efficient, yielding slicing times of around a second, and only slowing down the execution of the program by a factor of 19 during the online tracing step. Using recently proposed architectural support for monitoring, we are also able to handle multithreaded programs running on multicore processors. Copyright © 2011 John Wiley & Sons, Ltd.  相似文献   
4.
内核调试器在操作系统的设计和维护中是重要的。  相似文献   
5.
基于PVM的动态可伸缩并行调试器设计   总被引:2,自引:0,他引:2  
PVM(parallel virtual machine)正在被越来越广泛地使用,但PVM应用程序的并行调试还是一个有待解决的难题。文中介绍了自行设计的基于PVM的动态可伸缩并行调试器ddbg,主要内容包括并行调试界面、总体设计和一些关键的实现技术。ddbg与其它已有的消息传递并行调试器相比,最大特点是其动态可伸缩结构,它能根据应用的需要自动分布调试服务。  相似文献   
6.
本文讨论了PARLOG交互式跟踪调试器的设计与实现技术.作者改进了L.Byrd的盒式模型,使之可以描述PARLOG的顺序执行模型.PARLOG顺序化执行模型使计算具有确定性,易于用户调试程序.本文详细介绍了调试器实现中确定调试层次、将顺序化模型中的平坦化计算恢复为树型、实现不同层次的跟踪算法等方面的研究成果.  相似文献   
7.
本文介绍了在嵌入式调试器中如何通过以太网口进行嵌入式软件调试,实现了主机与开发板之间的网口通信。针对具体的嵌入式开发板$3C4510B对网口驱动和网络协议进行了研究,裁减了网口驱动和网络协议的冗余部分,既保证了调试器可以通过以太网进行远程调试,又能满足嵌入式系统对资源占用的要求。  相似文献   
8.
并行计算机软件是并行机系统发展应用的一个薄弱环节。本文介绍了作者对几种不同类型并行机软件所做的研究与实践工作,并据此总结出几个基于部分共享存贮器结构提高并行软件开发与运行效率的原则和实现方法。  相似文献   
9.
介绍了在Linux操作系统下,编译和调试C语言程序的工具GCC编译器、GDB调试器的使用方法等,并以例说明。  相似文献   
10.
调试器对并行程序干扰特性的研究   总被引:2,自引:0,他引:2  
机群系统中并行程序的执行具有不确定性,这种不确定性给并行程序的调试带来了困难,并行程序的不确定性是由运行环境中的各种干扰因素造成的,该文研究交互式调试行为对调试程序的干扰特性,文中给出了算法可以在调试的过程中实时地报告出本次交互式调试操作是否对调试的程序造成了干扰。  相似文献   
设为首页 | 免责声明 | 关于勤云 | 加入收藏

Copyright©北京勤云科技发展有限公司  京ICP备09084417号