For 'context.set_context', package type mindspore support 'device_target' type cpu, but got Ascend.
时间: 2024-02-01 11:04:54 浏览: 321
sc_demo.rar_DEMO_Shape Context_shape_shape context matlab
这个错误提示是因为您在使用MindSpore时,指定了设备类型为Ascend,但是您在设置上下文时使用了CPU类型。您需要在代码中将设备类型设置为Ascend,或者将上下文设置为CPU类型。您可以尝试使用以下代码来设置设备类型为Ascend:
```python
from mindspore import context
context.set_context(device_target="Ascend")
```
如果您仍然遇到问题,请检查您的Ascend驱动、MindSpore版本和Ascend AI处理器的兼容性,以确保它们是兼容的。
阅读全文