Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
7bf5b0ee
MegEngine
项目概览
MegEngine 天元
/
MegEngine
大约 1 年 前同步成功
通知
399
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看板
提交
7bf5b0ee
编写于
4月 21, 2022
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test(imperative): check env values after each pytest
GitOrigin-RevId: 826788113ad841e0f5e652345a2fde7d1d61965b
上级
811579b0
变更
8
显示空白变更内容
内联
并排
Showing
8 changed file
with
86 addition
and
20 deletion
+86
-20
imperative/python/src/ops.cpp
imperative/python/src/ops.cpp
+7
-0
imperative/python/test/conftest.py
imperative/python/test/conftest.py
+65
-6
imperative/python/test/run.sh
imperative/python/test/run.sh
+1
-1
imperative/python/test/unit/random/test_rng.py
imperative/python/test/unit/random/test_rng.py
+0
-3
imperative/src/impl/ops/matmul.cpp
imperative/src/impl/ops/matmul.cpp
+5
-0
imperative/src/impl/ops/pooling.cpp
imperative/src/impl/ops/pooling.cpp
+4
-5
imperative/src/impl/ops/reduce.cpp
imperative/src/impl/ops/reduce.cpp
+3
-4
src/core/include/megbrain/version.h
src/core/include/megbrain/version.h
+1
-1
未找到文件。
imperative/python/src/ops.cpp
浏览文件 @
7bf5b0ee
...
...
@@ -557,7 +557,14 @@ void init_ops(py::module m) {
m
.
def
(
"delete_rng_handle"
,
[](
size_t
handle
)
{
if
(
mgb
::
imperative
::
python
::
interpreter_for_py
->
check_available
())
{
mgb
::
imperative
::
python
::
interpreter_for_py
->
sync
();
}
mgb
::
CompNode
::
sync_all
();
mgb
::
CompNode
::
foreach
([](
mgb
::
CompNode
cn
)
{
auto
err
=
cn
.
check_async_error
();
mgb_assert
(
!
err
,
"%s"
,
err
->
what
());
});
py_task_q
.
wait_all_task_finish
();
rng
::
delete_handle
(
handle
);
},
...
...
imperative/python/test/conftest.py
浏览文件 @
7bf5b0ee
...
...
@@ -11,13 +11,17 @@ import sys
import
pytest
import
megengine.functional
import
megengine.module
from
megengine
import
Parameter
from
megengine.core._imperative_rt.core2
import
sync
from
megengine.core
import
_config
as
config
from
megengine.core
import
_trace_option
as
trace_option
from
megengine.core
import
get_option
from
megengine.core._imperative_rt.core2
import
(
_get_amp_dtype_autocast
,
_get_amp_high_prec_dtype
,
_get_amp_low_prec_dtype
,
_get_convert_inputs
,
)
from
megengine.core.tensor
import
amp
from
megengine.device
import
get_device_count
from
megengine.jit
import
trace
as
_trace
from
megengine.module
import
Linear
,
Module
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"helpers"
))
...
...
@@ -41,3 +45,58 @@ def skip_distributed(request):
platform
.
system
()
)
)
@
pytest
.
fixture
(
autouse
=
True
)
def
run_around_tests
():
env_vars1
=
{
"symbolic_shape"
:
trace_option
.
use_symbolic_shape
(),
"async_level"
:
get_option
(
"async_level"
),
"enable_drop"
:
get_option
(
"enable_drop"
),
"max_recompute_time"
:
get_option
(
"max_recompute_time"
),
"catch_worker_execption"
:
get_option
(
"catch_worker_execption"
),
"enable_host_compute"
:
get_option
(
"enable_host_compute"
),
# "record_computing_path": get_option("record_computing_path"),
"disable_memory_forwarding"
:
get_option
(
"disable_memory_forwarding"
),
"enable_dtr_auto_drop"
:
get_option
(
"enable_dtr_auto_drop"
),
"enable_dtr_sqrt_sampling"
:
get_option
(
"enable_dtr_sqrt_sampling"
),
"dtr_eviction_threshold"
:
get_option
(
"dtr_eviction_threshold"
),
"dtr_evictee_minimum_size"
:
get_option
(
"dtr_evictee_minimum_size"
),
"benchmark_kernel"
:
config
.
benchmark_kernel
,
"deterministic_kernel"
:
config
.
deterministic_kernel
,
"compute_mode"
:
config
.
_compute_mode
,
"conv_format"
:
config
.
_conv_format
,
"amp_enabled"
:
amp
.
enabled
,
"convert_inputs"
:
_get_convert_inputs
(),
"amp_dtype_autocast"
:
_get_amp_dtype_autocast
(),
"amp_high_prec_dtype"
:
_get_amp_high_prec_dtype
(),
"amp_low_prec_dtype"
:
_get_amp_low_prec_dtype
(),
}
yield
env_vars2
=
{
"symbolic_shape"
:
trace_option
.
use_symbolic_shape
(),
"async_level"
:
get_option
(
"async_level"
),
"enable_drop"
:
get_option
(
"enable_drop"
),
"max_recompute_time"
:
get_option
(
"max_recompute_time"
),
"catch_worker_execption"
:
get_option
(
"catch_worker_execption"
),
"enable_host_compute"
:
get_option
(
"enable_host_compute"
),
# "record_computing_path": get_option("record_computing_path"),
"disable_memory_forwarding"
:
get_option
(
"disable_memory_forwarding"
),
"enable_dtr_auto_drop"
:
get_option
(
"enable_dtr_auto_drop"
),
"enable_dtr_sqrt_sampling"
:
get_option
(
"enable_dtr_sqrt_sampling"
),
"dtr_eviction_threshold"
:
get_option
(
"dtr_eviction_threshold"
),
"dtr_evictee_minimum_size"
:
get_option
(
"dtr_evictee_minimum_size"
),
"benchmark_kernel"
:
config
.
benchmark_kernel
,
"deterministic_kernel"
:
config
.
deterministic_kernel
,
"compute_mode"
:
config
.
_compute_mode
,
"conv_format"
:
config
.
_conv_format
,
"amp_enabled"
:
amp
.
enabled
,
"convert_inputs"
:
_get_convert_inputs
(),
"amp_dtype_autocast"
:
_get_amp_dtype_autocast
(),
"amp_high_prec_dtype"
:
_get_amp_high_prec_dtype
(),
"amp_low_prec_dtype"
:
_get_amp_low_prec_dtype
(),
}
for
key
in
env_vars1
:
assert
(
env_vars1
[
key
]
==
env_vars2
[
key
]
),
"{} have been changed after test"
.
format
(
key
)
imperative/python/test/run.sh
浏览文件 @
7bf5b0ee
...
...
@@ -37,7 +37,7 @@ if [[ "$TEST_PLAT" =~ "local" ]]; then
PY_IGNORE_IMPORTMISMATCH
=
1 python3
-m
pytest
-s
-v
$test_dirs
-m
'not isolated_distributed'
if
[[
"
$TEST_PLAT
"
=
~
"cuda"
]]
;
then
echo
"test GPU pytest now"
PY_IGNORE_IMPORTMISMATCH
=
1 python3
-m
pytest
-s
-v
$test_dirs
-m
'isolated_distributed'
PY_IGNORE_IMPORTMISMATCH
=
1 python3
-m
pytest
-s
-v
$test_dirs
-m
'isolated_distributed'
--ignore
=
./integration/test_dtr.py
fi
else
cd
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
/..
...
...
imperative/python/test/unit/random/test_rng.py
浏览文件 @
7bf5b0ee
...
...
@@ -39,8 +39,6 @@ from megengine.random import uniform
get_device_count
(
"xpu"
)
<=
2
,
reason
=
"xpu counts need > 2"
,
)
def
test_gaussian_op
():
# FIXME: remove this sync
mge
.
core
.
set_option
(
"async_level"
,
0
)
set_global_seed
(
1024
)
shape
=
(
8
,
...
...
@@ -516,4 +514,3 @@ def test_rng_empty_tensor(is_symbolic):
np
.
testing
.
assert_equal
(
out
.
numpy
().
shape
,
(
0
,))
if
is_symbolic
is
None
:
break
mge
.
core
.
set_option
(
"async_level"
,
2
)
imperative/src/impl/ops/matmul.cpp
浏览文件 @
7bf5b0ee
...
...
@@ -227,6 +227,11 @@ SmallVector<TensorPtr> apply_on_physical_tensor(
TensorLayout
dst_layout
=
TensorLayout
({
layout_a
[
0
],
layout_b
[
1
]},
dst_dtype
);
dst_layout
.
init_contiguous_stride
();
if
(
matmul
.
transposeA
)
std
::
swap
(
layout_a
.
shape
[
0
],
layout_a
.
shape
[
1
]);
if
(
matmul
.
transposeB
)
std
::
swap
(
layout_b
.
shape
[
0
],
layout_b
.
shape
[
1
]);
DeviceTensorND
out
=
BlobManager
::
inst
()
->
alloc_workspace_with_defrag
(
cn
,
dst_layout
);
size_t
sz
=
setup_algo
<
megdnn
::
MatrixMul
>
(
...
...
imperative/src/impl/ops/pooling.cpp
浏览文件 @
7bf5b0ee
...
...
@@ -80,13 +80,12 @@ SmallVector<TensorPtr> apply_on_physical_tensor(
op_def
.
policy
(),
false
);
megdnn
::
Workspace
dnn_wk
;
if
(
wk_size
!=
0
)
{
auto
wk
=
Blob
::
make
(
cn
,
wk_size
);
dnn_wk
.
raw_ptr
=
wk
->
storage
().
get
();
dnn_wk
.
size
=
wk_size
;
if
(
wk_size
)
{
TensorLayout
w_layout
({
wk_size
},
dtype
::
Byte
());
dnn_wk
=
caller
.
create_workspace
(
w_layout
);
}
dnn_opr
->
exec
(
inp_tensornd
,
out_devtensor
.
as_megdnn
(),
{}
);
dnn_opr
->
exec
(
inp_tensornd
,
out_devtensor
.
as_megdnn
(),
dnn_wk
);
return
{
Tensor
::
make
(
out_devtensor
)};
}
...
...
imperative/src/impl/ops/reduce.cpp
浏览文件 @
7bf5b0ee
...
...
@@ -174,10 +174,9 @@ SmallVector<TensorPtr> apply_on_physical_tensor(
megdnn
::
Workspace
dnn_wk
;
auto
wk_size
=
dnn_op
.
op
->
get_workspace_in_bytes
(
src
,
layout
);
if
(
wk_size
!=
0
)
{
auto
wk
=
Blob
::
make
(
comp_node
,
wk_size
);
dnn_wk
.
raw_ptr
=
wk
->
storage
().
get
();
dnn_wk
.
size
=
wk_size
;
if
(
wk_size
)
{
TensorLayout
w_layout
({
wk_size
},
dtype
::
Byte
());
dnn_wk
=
dnn_op
.
create_workspace
(
w_layout
);
}
DeviceTensorND
out
=
...
...
src/core/include/megbrain/version.h
浏览文件 @
7bf5b0ee
...
...
@@ -14,7 +14,7 @@
#include "megbrain_build_config.h"
#define MGE_MAJOR 1
#define MGE_MINOR
8
#define MGE_MINOR
9999
#define MGE_PATCH 0
// for rc version, could be like "rc1", "rc2", etc
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录