Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
NiuTrans.Tensor
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
Emmay
NiuTrans.Tensor
Commits
70e478c4
Commit
70e478c4
authored
Jul 27, 2018
by
xiaotong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make a default stream for each device
parent
a027f72e
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
32 行增加
和
1 行删除
+32
-1
source/tensor/XDevice.cpp
+22
-1
source/tensor/XDevice.h
+10
-0
source/tensor/XStream.cpp
+0
-0
没有找到文件。
source/tensor/XDevice.cpp
查看文件 @
70e478c4
...
@@ -40,6 +40,7 @@ XDevManager GDevs;
...
@@ -40,6 +40,7 @@ XDevManager GDevs;
/* constructor */
/* constructor */
XDevice
::
XDevice
()
XDevice
::
XDevice
()
{
{
stream
=
NULL
;
Clear
();
Clear
();
#ifdef USE_CUDA
#ifdef USE_CUDA
...
@@ -55,6 +56,8 @@ XDevice::~XDevice()
...
@@ -55,6 +56,8 @@ XDevice::~XDevice()
MUTEX_DELE
(
cublasMutex
);
MUTEX_DELE
(
cublasMutex
);
if
(
isHandleReady
)
if
(
isHandleReady
)
cublasDestroy
(
cublasHandle
);
cublasDestroy
(
cublasHandle
);
if
(
stream
!=
NULL
)
delete
stream
;
#endif
#endif
}
}
...
@@ -118,6 +121,8 @@ void XDevice::Init(int myDevID)
...
@@ -118,6 +121,8 @@ void XDevice::Init(int myDevID)
}
}
else
else
sprintf
(
name2
,
"GPU-%d %s"
,
devID
,
name
);
sprintf
(
name2
,
"GPU-%d %s"
,
devID
,
name
);
stream
=
new
XStream
(
0
,
devID
);
#endif
#endif
}
}
...
@@ -161,6 +166,14 @@ cublasHandle_t * XDevice::GetCublasHandle()
...
@@ -161,6 +166,14 @@ cublasHandle_t * XDevice::GetCublasHandle()
return
&
cublasHandle
;
return
&
cublasHandle
;
}
}
/* get the stream of cuda */
cudaStream_t
*
XDevice
::
GetCudaStream
()
{
CheckNTErrors
(
stream
!=
NULL
,
"the stream is not initialized!"
);
return
&
stream
->
stream
;
}
#endif // USE_CUDA
#endif // USE_CUDA
/* switch to a device */
/* switch to a device */
...
@@ -311,11 +324,19 @@ void XDevManager::Clear()
...
@@ -311,11 +324,19 @@ void XDevManager::Clear()
/* get the handle of GPU */
/* get the handle of GPU */
cublasHandle_t
*
XDevManager
::
GetCudaHandle
(
const
int
devID
)
cublasHandle_t
*
XDevManager
::
GetCudaHandle
(
const
int
devID
)
{
{
CheckNTErrors
(
(
devID
<
nGPU
)
,
"index of GPU is out of range."
);
CheckNTErrors
(
devID
<
nGPU
,
"index of GPU is out of range."
);
return
GPUs
[
devID
].
GetCublasHandle
();
return
GPUs
[
devID
].
GetCublasHandle
();
}
}
/* get the stream of cuda */
cudaStream_t
*
XDevManager
::
GetCudaStream
(
const
int
devID
)
{
CheckNTErrors
(
devID
<
nGPU
,
"index of GPU is out of range."
);
return
GPUs
[
devID
].
GetCudaStream
();
}
#endif
#endif
/*
/*
...
...
source/tensor/XDevice.h
查看文件 @
70e478c4
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
#define __XDEVICE_H__
#define __XDEVICE_H__
#include "XThread.h"
#include "XThread.h"
#include "XStream.h"
#ifdef USE_CUDA
#ifdef USE_CUDA
...
@@ -93,6 +94,9 @@ public:
...
@@ -93,6 +94,9 @@ public:
/* specify whether Unified Virtual Address Space (UVA) is supported */
/* specify whether Unified Virtual Address Space (UVA) is supported */
bool
isUVASupported
;
bool
isUVASupported
;
/* default stream for the device */
XStream
*
stream
;
#ifdef USE_CUDA
#ifdef USE_CUDA
/* mutex for handle (GPU cublas) */
/* mutex for handle (GPU cublas) */
MUTEX_HANDLE
cublasMutex
;
MUTEX_HANDLE
cublasMutex
;
...
@@ -121,6 +125,9 @@ public:
...
@@ -121,6 +125,9 @@ public:
#ifdef USE_CUDA
#ifdef USE_CUDA
/* get cublas handle */
/* get cublas handle */
cublasHandle_t
*
GetCublasHandle
();
cublasHandle_t
*
GetCublasHandle
();
/* get the stream of cuda */
cudaStream_t
*
GetCudaStream
();
#endif
#endif
/* switch to a device */
/* switch to a device */
...
@@ -178,6 +185,9 @@ public:
...
@@ -178,6 +185,9 @@ public:
#ifdef USE_CUDA
#ifdef USE_CUDA
/* get the handle of GPU */
/* get the handle of GPU */
cublasHandle_t
*
GetCudaHandle
(
const
int
devID
);
cublasHandle_t
*
GetCudaHandle
(
const
int
devID
);
/* get the stream of cuda */
cudaStream_t
*
GetCudaStream
(
const
int
devID
);
#endif
#endif
/* get grid and block sizes that max potential */
/* get grid and block sizes that max potential */
...
...
source/tensor/XStream.cpp
查看文件 @
70e478c4
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论