Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
f0a3ab97
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
f0a3ab97
编写于
5月 04, 2023
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(imperative): add user environment information collector
GitOrigin-RevId: 068c79d30dc7fab69ff220ddd5de4c0427994e6f
上级
6f09b0eb
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
32 addition
and
2 deletion
+32
-2
imperative/python/megengine/__init__.py
imperative/python/megengine/__init__.py
+0
-2
imperative/python/megengine/device.py
imperative/python/megengine/device.py
+13
-0
imperative/python/src/common.cpp
imperative/python/src/common.cpp
+1
-0
src/core/impl/version.cpp
src/core/impl/version.cpp
+17
-0
src/core/include/megbrain/version.h
src/core/include/megbrain/version.h
+1
-0
未找到文件。
imperative/python/megengine/__init__.py
浏览文件 @
f0a3ab97
...
...
@@ -42,8 +42,6 @@ def _exit(code):
def
_atexit
(
handler
):
_exit_handlers
.
append
(
handler
)
_atexit
(
_close
)
_persistent_cache
=
_PersistentCacheOnServer
()
...
...
imperative/python/megengine/device.py
浏览文件 @
f0a3ab97
...
...
@@ -4,6 +4,9 @@ import re
from
typing
import
Optional
from
.core._imperative_rt.common
import
CompNode
,
DeviceType
from
.core._imperative_rt.common
import
(
get_cuda_driver_version
as
_get_cuda_driver_version
,
)
from
.core._imperative_rt.common
import
get_cuda_version
as
_get_cuda_version
from
.core._imperative_rt.common
import
get_cudnn_version
as
_get_cudnn_version
from
.core._imperative_rt.common
import
get_device_prop
as
_get_device_prop
...
...
@@ -26,6 +29,7 @@ __all__ = [
"get_cuda_version"
,
"get_cudnn_version"
,
"get_tensorrt_version"
,
"get_cuda_driver_version"
,
"get_allocated_memory"
,
"get_reserved_memory"
,
"get_max_reserved_memory"
,
...
...
@@ -299,3 +303,12 @@ def get_tensorrt_version():
a version number, indicating `NV_TENSORRT_MAJOR * 1000 + NV_TENSORRT_MINOR * 100 + NV_TENSORRT_PATCH`.
"""
return
_get_tensorrt_version
()
def
get_cuda_driver_version
():
r
"""Gets the latest version of CUDA supported by the driver.
Returns:
a supported latest cuda version number, indicating `CUDA_VERSION_MAJOR * 1000 + CUDA_VERSION_MINOR * 10`.
"""
return
_get_cuda_driver_version
()
imperative/python/src/common.cpp
浏览文件 @
f0a3ab97
...
...
@@ -268,6 +268,7 @@ void init_common(py::module m) {
m
.
def
(
"get_cuda_version"
,
[]()
{
return
mgb
::
get_cuda_version
();
});
m
.
def
(
"get_cudnn_version"
,
[]()
{
return
mgb
::
get_cudnn_version
();
});
m
.
def
(
"get_tensorrt_version"
,
[]()
{
return
mgb
::
get_tensorrt_version
();
});
m
.
def
(
"get_cuda_driver_version"
,
[]()
{
return
mgb
::
get_cuda_driver_version
();
});
m
.
def
(
"what_is_xpu"
,
[]
{
return
CompNode
::
Locator
::
parse
(
"xpux"
).
to_physical
().
type
;
});
...
...
src/core/impl/version.cpp
浏览文件 @
f0a3ab97
...
...
@@ -63,4 +63,21 @@ int mgb::get_cudnn_version() {
}
#endif
#if __has_include("cuda.h") && MGB_CUDA
#include "cuda.h"
int
mgb
::
get_cuda_driver_version
()
{
int
driver_version
=
-
1
;
auto
error_code
=
cudaDriverGetVersion
(
&
driver_version
);
if
(
error_code
!=
cudaSuccess
)
{
mgb_log_warn
(
"cudaDriverGetVersion failed, error code: %d"
,
error_code
);
return
-
1
;
}
return
driver_version
;
}
#else
int
mgb
::
get_cuda_driver_version
()
{
return
-
1
;
}
#endif
// vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
src/core/include/megbrain/version.h
浏览文件 @
f0a3ab97
...
...
@@ -23,6 +23,7 @@ MGE_WIN_DECLSPEC_FUC Version get_version();
MGE_WIN_DECLSPEC_FUC
int
get_cuda_version
();
MGE_WIN_DECLSPEC_FUC
int
get_cudnn_version
();
MGE_WIN_DECLSPEC_FUC
int
get_tensorrt_version
();
MGE_WIN_DECLSPEC_FUC
int
get_cuda_driver_version
();
}
// namespace mgb
// vim: syntax=cpp.doxygen foldmethod=marker foldmarker=f{{{,f}}}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录