博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
getnumdevices.c && setgetdevicetype例程
阅读量:5171 次
发布时间:2019-06-13

本文共 1633 字,大约阅读时间需要 5 分钟。

getnumdevices.c代码

1 /* 文件名: getnumdevices.c 2 * 功能 : 测试函数acc_get_num_devices(.) 3 */ 4 #include
5 #include "openacc.h" 6 int main() 7 { 8 int num = -8888; 9 num = acc_get_num_devices(acc_device_none);10 printf("device_non = %d\n", num);11 num = acc_get_num_devices(acc_device_default);12 printf("device_deault = %d\n", num);13 num = acc_get_num_devices(acc_device_host);14 printf("device_host = %d\n", num);15 num = acc_get_num_devices(acc_device_not_host);16 printf("device_not_host = %d\n", num);17 num = acc_get_num_devices(acc_device_nvidia);18 printf("device_nvidia = %d\n", num);19 return 0;20 }

 

setgetdevicetype.c代码

1 /* 文件名: setgetdevicetype.c 2 * 功能 : 测试两个函数acc_set_device_type(.)和acc_get_device_type(.). 3 */ 4 #include
5 #include"openacc.h" 6 int main() 7 { 8 acc_device_t devt = acc_device_none; 9 devt = acc_get_device_type();10 printf(" no device set, type = %d\n", devt);11 acc_set_device_type(acc_device_default);12 devt = acc_get_device_type();13 printf(" device_default set, type = %d\n", devt);14 acc_set_device_type(acc_device_nvidia);15 devt = acc_get_device_type();16 printf(" device_nvidia set, type = %d\n", devt);17 acc_set_device_type(acc_device_host);18 devt = acc_get_device_type();19 printf(" device_host set, type = %d\n", devt);20 acc_set_device_type(acc_device_not_host);21 devt = acc_get_device_type();22 printf("device_not_host set, type = %d\n", devt);23 acc_set_device_type(acc_device_xeonphi);24 devt = acc_get_device_type();25 printf(" device_xeonphi set, type = %d\n", devt);26 return 0;27 }

编译信息:

转载于:https://www.cnblogs.com/liangliangdetianxia/p/4359931.html

你可能感兴趣的文章
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
获取国内随机IP的函数
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
tableView
查看>>
Happy Great BG-卡精度
查看>>
TCP/IP 邮件的原理
查看>>
原型设计工具
查看>>
windows下的C++ socket服务器(4)
查看>>
css3 2d转换3d转换以及动画的知识点汇总
查看>>
【Java】使用Eclipse进行远程调试,Linux下开启远程调试
查看>>
计算机改名导致数据库链接的诡异问题
查看>>
Java8内存模型—永久代(PermGen)和元空间(Metaspace)(转)
查看>>
ObjectiveC基础教程(第2版)
查看>>
centos 引导盘
查看>>
Notes of Daily Scrum Meeting(12.8)
查看>>
Apriori算法
查看>>
onlevelwasloaded的调用时机
查看>>