MemCUDA Map Device Memory To Host Memory on GPGPU Platform,有关NVIDIA CUDA 设备主机间内存映射的2010年的资料。
2021-02-03 23:28:35 736KB cuda
1
操作系统模拟器 带有内存管理和Round Robin Scheduler的OS模拟器 用Java编写 由三个版本组成: Naive OS:是单个交互式作业执行程序,无需任何特殊的调度程序或内存管理。 带有内存管理的OS:是一个单独的交互式作业运行程序,没有任何带有分页和分段内存管理的特殊调度程序。 带有内存管理和调度程序的OS:是具有循环调度程序以及分页和分段内存管理的多批作业运行程序。
1
CISSP 速記表
2021-02-02 23:06:18 314KB CISSP
1
Appendix A ISA and Memory Notes.pdf
2021-01-29 14:00:51 131KB 英语
1
很好用的内存监测工具
2021-01-29 11:10:13 37.31MB Memory ANTS MemoryProfiler
1
Flink TaskExecutor 内存计算表格 下载地址:https://docs.google.com/spreadsheets/d/1mJaMkMPfDJJ-w6nMXALYmTc4XxiV30P5U7DzgwLkSoE/edit
2021-01-28 04:26:44 14KB Flink TaskExecuor Memory
1
php解决Allowed memory size of bytes exhausted
2021-01-28 02:25:40 2KB php
ch8-Main Memory.ppt
2021-01-28 00:31:34 2.24MB ch8-MainMemory.
Enhanced Memory Leak Detection for Visual C++ Visual Leak Detector is a free, robust, open-source memory leak detection system for Visual C++. It's pretty easy to use. After installing it, you just need to tell Visual C++ where to find the included header and library file. Then it can be used with any C/C++ project simply by adding the following line to your code: #include When you run your program under the Visual Studio debugger, Visual Leak Detector will output a memory leak report at the end of your debugging session. The leak report includes the full call stack showing how any leaked memory blocks were allocated. Double-click on a line in the call stack to jump to that file and line in the editor window. It's a very effective way to quickly diagnose, and fix, memory leaks in C/C++ applications. The main difference between the CRT Debug Library and VLD, is that Visual Leak Detector shows you the complete callstack used for memory allocation has led to the leak.
2020-12-06 23:31:56 2.82MB Memory Leak Detection Visual
1
The advent of multicore processors has renewed interest in the idea of incorporating transactions into the programming model used to write parallel programs.This approach, known as transactional memory, offers an alternative, and hopefully better, way to coordinate concurrent threads. The ACI (atomicity, consistency, isolation) properties of transactions provide a foundation to ensure that con- current reads and writes of shared data do not produce inconsistent or incorrect results. At a higher level, a computation wrapped in a transaction executes atomically - either it completes successfully and commits its result in its entirety or it aborts. In addition, isolation ensures the transaction pro- duces the same result as if no other transactions were executing concurrently. Although transactions are not a parallel programming panacea, they shift much of the burden of synchronizing and co- ordinating parallel computations from a programmer to a compiler, to a language runtime system, or to hardware. The challenge for the system implementers is to build an efficient transactional memory infrastructure. This book presents an overview of the state of the art in the design and implementation of transactional memory systems, as of early spring 2010.
2020-03-04 03:02:45 1.81MB TM 并发 同步 内存一致性
1