This commit is contained in:
shenjack 2024-10-16 21:52:56 +08:00
parent 61afe5b63f
commit 4ad5039cd0
Signed by: shenjack
GPG Key ID: 7B1134A979775551
4 changed files with 25 additions and 1 deletions

5
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/opencl-test.iml" filepath="$PROJECT_DIR$/.idea/opencl-test.iml" />
</modules>
</component>
</project>

11
.idea/opencl-test.iml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="EMPTY_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -55,7 +55,7 @@ fn main() -> anyhow::Result<()> {
) {
Ok(q) => q,
Err(err) => {
println!("创建命令队列失败: {}, 属性: {}", err, property);
println!("创建命令队列失败: {}, 属性: {}", err, 0);
panic!();
}
};