码迷,mamicode.com
首页 >  
搜索关键字:shared-memory    ( 164个结果
cuda自己常犯的傻逼错误
1.使用shared memory时如果申明__shared__ myshared;在使用kernel函数时不需要指明shared的大小如果使用extern __shared__ myshared;需要再使用kernel时再<<<>>>中指明所使用的sharedmemory的大小.2.没有为申明的d...
分类:其他好文   时间:2015-05-12 08:02:58    阅读次数:110
oracle 10gr2 ORA-27125: unable to create shared memory segment when run DBCA
I have installed 10gR2 on linux environment, When running DBCA it got filed with below error ORA-27125: unable to create shared memory segment SOLUTION: cd $ORACLE_HOME/bin   mv oracle oracle.bin...
分类:数据库   时间:2015-04-24 10:36:58    阅读次数:376
ORA-27101: shared memory realm does not exist
Oracle Error Tips by Burleson ConsultingOracle docs note this about ORA-27101:ORA-27101: shared memory realm does not exist Cause: Unable to locate sh...
分类:其他好文   时间:2015-04-23 23:05:51    阅读次数:153
CUDA学习之二:shared_memory使用,矩阵相乘
CUDA中使用shared_memory可以加速运算,在矩阵乘法中是一个体现。矩阵C = A * B,正常运算时我们运用 C[i,j] = A[i,:] * B[:,j] 可以计算出结果。但是在CPU上完成这个运算我们需要大量的时间,设A[m,n],B[n,k],那么C矩阵为m*k,总体,我们需要做...
分类:其他好文   时间:2015-03-20 23:27:59    阅读次数:343
自动共享内存管理(转)
自动共享内存管理从Oracle 10g开始,Oracle提供了自动SGA的管理(简称ASMM,即Automatic Shared Memory Management)新特性。所谓ASMM,就是指我们不再需要手工设置shared pool、buffer pool等若干内存池的大小,而是为SGA设置一个...
分类:其他好文   时间:2015-03-16 12:51:19    阅读次数:183
(简单) POJ 1502 MPI Maelstrom,Dijkstra。
Description BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hie...
分类:其他好文   时间:2015-03-15 00:34:49    阅读次数:262
SQLServer 网络协议(一)
SQLserver目前的主要3种协议为:Shared Memory、TCP/IP 和 Named Pipe   SharedMemory: Shared Memory最快最简单的协议,使用SharedMemory协议的客户端仅可以连接到同一台服务器上的SQLserver实例。如果其他协议有误,可以通过Shared Memory连接到本地服务器进行故障处理。   TCP/IP: TC...
分类:数据库   时间:2015-03-14 13:53:31    阅读次数:222
Insufficient space for shared memory file
linux下应用无故反应异常,登陆服务器查看发现:-bash-4.1$jps JavaHotSpot(TM)64-BitServerVMwarning:Insufficientspaceforsharedmemoryfile: /tmp/hsperfdata_kf01/4830 Tryusingthe-Djava.io.tmpdir=optiontoselectanalternatetemplocation. 4830Jps-bash-4.1$df-h 文件系统..
分类:其他好文   时间:2015-03-01 22:30:02    阅读次数:211
poj 1502 MPI Maelstrom Dijkstra算法的简单运用 ,呵呵,,我估计有很多人都没看懂什么意思,我也看了很久
BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hierarchical communication subsystem. Valentine McKee's research advisor, Jack Swigert, has asked her to benchmark the new sy...
分类:编程语言   时间:2015-02-16 22:12:09    阅读次数:392
linux常用函数简单介绍
mmap函数简介:mmap函数是unix/linux下的系统调用,来看《Unix Netword programming》卷二12.2节对mmap的介绍:The mmap function maps either a file or a Posix shared memory object into...
分类:系统相关   时间:2015-02-09 20:09:39    阅读次数:217
164条   上一页 1 ... 10 11 12 13 14 ... 17 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!