登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
AI 队友
登录
注册
轻量养虾,开箱即用!低 Token + 稳定算力,Gitee & 模力方舟联合出品的 PocketClaw 正式开售!点击了解详情~
代码拉取完成,页面将自动刷新
开源项目
>
人工智能
>
机器学习/深度学习
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
461
Star
4.5K
Fork
471
GVP
PaddlePaddle
/
Paddle
代码
Issues
116
Pull Requests
2
Wiki
统计
流水线
服务
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
开发画像分析
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
SystemError
已完成
#I4Q427
PaddlePaddle-Gardener
创建于
2022-01-10 12:54
[<b>源自github用户happyfox-xie</b>](https://github.com/PaddlePaddle/Paddle/issues/38050): 为使您的问题得到快速解决,在建立Issues前,请您先通过如下方式搜索是否有相似问题:【搜索issue关键字】【使用labels筛选】【官方文档】 如果您没有查询到相似问题,为快速解决您的提问,建立issue时请提供如下细节信息: - 标题:简洁、精准概括您的问题 - 版本、环境信息: 1)PaddlePaddle版本:请提供您的PaddlePaddle2.2.1 2)CPU/GPU:如果您使用GPU训练,请提供GPU驱动版本、CUDA和cuDNN版本号 Gpu:Tesla V100,CUDA:10.1,cuDnn 3)系统环境:请您描述系统类型、版本,例如Mac OS 10.14 4)Python版本号 python 3.8 5)显存信息 注:您可以通过执行[summary_env.py](https://github.com/PaddlePaddle/Paddle/blob/develop/tools/summary_env.py)获取以上信息。 - 复现信息:如为报错,请给出复现环境、复现步骤 - 问题描述:请详细描述您的问题,同步贴出报错信息、日志/代码关键片段 - SystemError Traceback (most recent call last) /tmp/ipykernel_393/586262745.py in <module> 1 #模型的训练 2 # train_data ,train_labels = pointDatadLoader(file_path='./mytest/train.txt',model='train') ----> 3 model =PointNet() 4 model.train() 5 optim = paddle.optimizer.Adam(parameters=model.parameters(),weight_decay=0.001) /tmp/ipykernel_393/1718473380.py in __init__(self, name_scope, num_classes, num_point) 5 super(PointNet,self).__init__() 6 self.input_transform_net=nn.Sequential( ----> 7 nn.Conv2D(3,64,(1,1)), 8 nn.BatchNorm(64), 9 nn.ReLU(), /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/nn/layer/conv.py in __init__(self, in_channels, out_channels, kernel_size, stride, padding, dilation, groups, padding_mode, weight_attr, bias_attr, data_format) 654 weight_attr=weight_attr, 655 bias_attr=bias_attr, --> 656 data_format=data_format) 657 658 def forward(self, x): /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/nn/layer/conv.py in __init__(self, in_channels, out_channels, kernel_size, transposed, dims, stride, padding, padding_mode, output_padding, dilation, groups, weight_attr, bias_attr, data_format) 133 shape=filter_shape, 134 attr=self._param_attr, --> 135 default_initializer=_get_default_param_initializer()) 136 self.bias = self.create_parameter( 137 attr=self._bias_attr, shape=[self._out_channels], is_bias=True) /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/dygraph/layers.py in create_parameter(self, shape, attr, dtype, is_bias, default_initializer) 422 temp_attr = None 423 return self._helper.create_parameter(temp_attr, shape, dtype, is_bias, --> 424 default_initializer) 425 426 @deprecated( /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/layer_helper_base.py in create_parameter(self, attr, shape, dtype, is_bias, default_initializer, stop_gradient, type) 376 type=type, 377 stop_gradient=stop_gradient, --> 378 **attr._to_kwargs(with_initializer=True)) 379 else: 380 self.startup_program.global_block().create_parameter( /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/framework.py in create_parameter(self, *args, **kwargs) 3135 pass 3136 else: -> 3137 initializer(param, self) 3138 return param 3139 /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/initializer.py in __call__(self, var, block) 364 "use_mkldnn": False 365 }, --> 366 stop_gradient=True) 367 368 if var.dtype in [VarDesc.VarType.FP16, VarDesc.VarType.BF16]: /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/framework.py in append_op(self, *args, **kwargs) 3165 kwargs.get("outputs", {}), attrs 3166 if attrs else {}, -> 3167 kwargs.get("stop_gradient", False)) 3168 else: 3169 from paddle.fluid.dygraph.base import param_guard /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/dygraph/tracer.py in trace_op(self, type, inputs, outputs, attrs, stop_gradient) 43 self.trace(type, inputs, outputs, attrs, 44 framework._current_expected_place(), self._has_grad and ---> 45 not stop_gradient) 46 47 def train_mode(self): SystemError: (Fatal) Operator gaussian_random raises an thrust::system::system_error exception. The exception content is :parallel_for failed: cudaErrorInvalidConfiguration: invalid configuration argument. (at /paddle/paddle/fluid/imperative/tracer.cc:221) Thank you for contributing to PaddlePaddle. Before submitting the issue, you could search issue in the github in case that there was a similar issue submitted or resolved before. If there is no solution,please provide us with the following details : **System information** -PaddlePaddle version (eg.1.1)or CommitID -CPU: including CPUMKL/OpenBlas/MKLDNN version -GPU: including CUDA/cuDNN version -OS Platform and Distribution(eg.Mac OS 10.14) -Python version Note: You can get most of the information by running [summary_env.py](https://github.com/PaddlePaddle/Paddle/blob/develop/tools/summary_env.py). **To Reproduce** Steps to reproduce the behavior **Describe your current behavior** **Code to reproduce the issue** **Other info / logs**
[<b>源自github用户happyfox-xie</b>](https://github.com/PaddlePaddle/Paddle/issues/38050): 为使您的问题得到快速解决,在建立Issues前,请您先通过如下方式搜索是否有相似问题:【搜索issue关键字】【使用labels筛选】【官方文档】 如果您没有查询到相似问题,为快速解决您的提问,建立issue时请提供如下细节信息: - 标题:简洁、精准概括您的问题 - 版本、环境信息: 1)PaddlePaddle版本:请提供您的PaddlePaddle2.2.1 2)CPU/GPU:如果您使用GPU训练,请提供GPU驱动版本、CUDA和cuDNN版本号 Gpu:Tesla V100,CUDA:10.1,cuDnn 3)系统环境:请您描述系统类型、版本,例如Mac OS 10.14 4)Python版本号 python 3.8 5)显存信息 注:您可以通过执行[summary_env.py](https://github.com/PaddlePaddle/Paddle/blob/develop/tools/summary_env.py)获取以上信息。 - 复现信息:如为报错,请给出复现环境、复现步骤 - 问题描述:请详细描述您的问题,同步贴出报错信息、日志/代码关键片段 - SystemError Traceback (most recent call last) /tmp/ipykernel_393/586262745.py in <module> 1 #模型的训练 2 # train_data ,train_labels = pointDatadLoader(file_path='./mytest/train.txt',model='train') ----> 3 model =PointNet() 4 model.train() 5 optim = paddle.optimizer.Adam(parameters=model.parameters(),weight_decay=0.001) /tmp/ipykernel_393/1718473380.py in __init__(self, name_scope, num_classes, num_point) 5 super(PointNet,self).__init__() 6 self.input_transform_net=nn.Sequential( ----> 7 nn.Conv2D(3,64,(1,1)), 8 nn.BatchNorm(64), 9 nn.ReLU(), /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/nn/layer/conv.py in __init__(self, in_channels, out_channels, kernel_size, stride, padding, dilation, groups, padding_mode, weight_attr, bias_attr, data_format) 654 weight_attr=weight_attr, 655 bias_attr=bias_attr, --> 656 data_format=data_format) 657 658 def forward(self, x): /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/nn/layer/conv.py in __init__(self, in_channels, out_channels, kernel_size, transposed, dims, stride, padding, padding_mode, output_padding, dilation, groups, weight_attr, bias_attr, data_format) 133 shape=filter_shape, 134 attr=self._param_attr, --> 135 default_initializer=_get_default_param_initializer()) 136 self.bias = self.create_parameter( 137 attr=self._bias_attr, shape=[self._out_channels], is_bias=True) /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/dygraph/layers.py in create_parameter(self, shape, attr, dtype, is_bias, default_initializer) 422 temp_attr = None 423 return self._helper.create_parameter(temp_attr, shape, dtype, is_bias, --> 424 default_initializer) 425 426 @deprecated( /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/layer_helper_base.py in create_parameter(self, attr, shape, dtype, is_bias, default_initializer, stop_gradient, type) 376 type=type, 377 stop_gradient=stop_gradient, --> 378 **attr._to_kwargs(with_initializer=True)) 379 else: 380 self.startup_program.global_block().create_parameter( /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/framework.py in create_parameter(self, *args, **kwargs) 3135 pass 3136 else: -> 3137 initializer(param, self) 3138 return param 3139 /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/initializer.py in __call__(self, var, block) 364 "use_mkldnn": False 365 }, --> 366 stop_gradient=True) 367 368 if var.dtype in [VarDesc.VarType.FP16, VarDesc.VarType.BF16]: /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/framework.py in append_op(self, *args, **kwargs) 3165 kwargs.get("outputs", {}), attrs 3166 if attrs else {}, -> 3167 kwargs.get("stop_gradient", False)) 3168 else: 3169 from paddle.fluid.dygraph.base import param_guard /opt/conda/envs/python35-paddle120-env/lib/python3.7/site-packages/paddle/fluid/dygraph/tracer.py in trace_op(self, type, inputs, outputs, attrs, stop_gradient) 43 self.trace(type, inputs, outputs, attrs, 44 framework._current_expected_place(), self._has_grad and ---> 45 not stop_gradient) 46 47 def train_mode(self): SystemError: (Fatal) Operator gaussian_random raises an thrust::system::system_error exception. The exception content is :parallel_for failed: cudaErrorInvalidConfiguration: invalid configuration argument. (at /paddle/paddle/fluid/imperative/tracer.cc:221) Thank you for contributing to PaddlePaddle. Before submitting the issue, you could search issue in the github in case that there was a similar issue submitted or resolved before. If there is no solution,please provide us with the following details : **System information** -PaddlePaddle version (eg.1.1)or CommitID -CPU: including CPUMKL/OpenBlas/MKLDNN version -GPU: including CUDA/cuDNN version -OS Platform and Distribution(eg.Mac OS 10.14) -Python version Note: You can get most of the information by running [summary_env.py](https://github.com/PaddlePaddle/Paddle/blob/develop/tools/summary_env.py). **To Reproduce** Steps to reproduce the behavior **Describe your current behavior** **Code to reproduce the issue** **Other info / logs**
评论 (
7
)
登录
后才可以发表评论
状态
已完成
待办的
进行中
已完成
已关闭
负责人
未设置
标签
未设置
标签管理
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (
-
)
标签 (
-
)
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
参与者(1)
Python
1
https://gitee.com/paddlepaddle/Paddle.git
git@gitee.com:paddlepaddle/Paddle.git
paddlepaddle
Paddle
Paddle
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册