已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags

这篇具有很好参考价值的文章主要介绍了已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

已解决WARNING:tensorflow:From <stdin>1: is_gpu_available (from tensorflow.python.framework.test_util) is deprecated and will be removed in a future version.
Instructions for updating:
Use tf.config.list_physical_devices(‘GPU’)~ instead.
2023-03-31 16:58:07.971004: I tensorflow/core/platform/cpu_feature_guard.cc:142] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDMN) to use the following CPU instructions in performance-critical operations:
AVX AVX2
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags









报错问题



粉丝群里面的一个小伙伴遇到问题跑来私信我,想用tensorflow,但是发生了报错(当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录一下希望可以帮助到更多遇到这个bug不会解决的小伙伴),报错代码如下所示:

已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags

报错信息内容截图如下所示


已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags

WARNING:tensorflow:From `<stdin>`1: is_gpu_available (from tensorflow.python.framework.test_util) is deprecated and will be removed in a future version.
Instructions for updating:
Use tf.config.list_physical_devices('GPU')~ instead.
2023-03-31 16:58:07.971004: I tensorflow/core/platform/cpu_feature_guard.cc:142] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDMN) to use the following CPU instructions in performance-critical operations:
AVX AVX2
To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags
False



报错翻译



报错信息内容翻译如下所示

警告:tensorflow:From(stdin)1:is_gpu_available(From tensorflow.python.framework.test_util)已弃用,并将在未来版本中删除。
更新说明:
请改用tf.config.list_physical_devices(‘GPU’)~。
2023-03-31 16:58:07.971004:I tensorflow/core/platform/cpu_feature_guard.cc:142]此tensorflow二进制文件使用oneAPI深度神经网络库(oneDMN)进行了优化,以在性能关键操作中使用以下cpu指令:
AVX-AVX2
要在其他操作中启用它们,请使用适当的编译器标志重新生成TensorFlow
错误





报错原因



报错原因

这个警告通常是由于使用了已经被弃用的函数或方法导致的。在这个警告中,is_gpu_available函数已经被弃用,将在将来的版本中被删除。

小伙伴们按下面的方法解决即可!!!





解决方法



这个警告通常是由于使用了已经被弃用的函数或方法导致的。在这个警告中,is_gpu_available函数已经被弃用,将在将来的版本中被删除。为了解决这个问题,你可以尝试以下方法:

  1. 如果你不需要使用GPU进行计算,可以忽略这个警告。你可以在代码中使用其他的函数或方法来检查你的TensorFlow是否支持GPU,例如:

    import tensorflow as tf
    print(tf.test.is_built_with_cuda())
    print(tf.test.is_gpu_available())
    

    这里使用了is_built_with_cuda()函数来检查TensorFlow是否编译了CUDA支持,使用is_gpu_available()函数来检查GPU是否可用。

  2. 如果你需要使用GPU进行计算,可以尝试升级你的TensorFlow版本。在较新的TensorFlow版本中,is_gpu_available()函数已经被替换为tf.config.list_physical_devices('GPU')函数。你可以使用以下代码来检查GPU是否可用:

    import tensorflow as tf
    print(tf.test.is_built_with_cuda())
    print(tf.config.list_physical_devices('GPU'))
    
  3. 如果你的TensorFlow版本较老,可以尝试升级到较新的版本来解决这个问题。

pytorch各版本和cuda版本对应关系,官网链接:https://pytorch.org/get-started/previous-versions/

注意:低版本的 pytorch 是否支持更高版本的 cuda;高版本的pytorch一般能兼容低版本cuda。例如:你需要 1.7.0 的 pytorch,那么 cuda 只能 11.0 及以下。官方推荐的cuda版本为10.2和11.3,这两种 cuda 支持大多数的 pytorch 版本。

PyTorch 版本 CUDA 环境
0.4.1、1.2.0、1.4.0、1.5.0(1)、1.6.0、1.7.0(1) 9.2
1.2.0、1.1.0、1.0.0(1) 10.0
1.4.0、1.5.0(1)、1.6.0、1.7.0(1) 10.1
1.5.0(1)、1.6.0、1.7.0(1)、1.8.0(1)、1.9.0、1.10.0 10.2
1.7.0(1) 11.0
1.8.0(1)、1.9.0、1.10.0 11.1
1.8.0(1)、1.9.0、1.10.0 11.3

以上是此问题报错原因的解决方法,欢迎评论区留言讨论是否能解决,如果有用欢迎点赞收藏文章谢谢支持,博主才有动力持续记录遇到的问题!!!

千人全栈VIP答疑群联系博主帮忙解决报错

由于博主时间精力有限,每天私信人数太多,没办法每个粉丝都及时回复,所以优先回复VIP粉丝,可以通过订阅限时9.9付费专栏《100天精通Python从入门到就业》进入千人全栈VIP答疑群,获得优先解答机会(代码指导、远程服务),白嫖80G学习资料大礼包,专栏订阅地址:https://blog.csdn.net/yuan2019035055/category_11466020.html

  • 优点作者优先解答机会(代码指导、远程服务),群里大佬众多可以抱团取暖(大厂内推机会),此专栏文章是专门针对零基础和需要进阶提升的同学所准备的一套完整教学,从0到100的不断进阶深入,后续还有实战项目,轻松应对面试!

  • 专栏福利简历指导、招聘内推、每周送实体书、80G全栈学习视频、300本IT电子书:Python、Java、前端、大数据、数据库、算法、爬虫、数据分析、机器学习、面试题库等等

  • 注意:如果希望得到及时回复,和大佬们交流学习,订阅专栏后私信博主进千人VIP答疑群已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags
    已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags

免费资料获取,更多粉丝福利,关注下方公众号获取

已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags文章来源地址https://www.toymoban.com/news/detail-441658.html

到了这里,关于已解决To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • A Native Collection has not been disposed, resulting in a memory leak. Enable Full StackTraces to ge

    A  Native Collection has not been disposed, resulting in a memory leak. Enable Full StackTraces to get more details. Package manager中添加 com.unity.entities 添加完成后上方的Menu中会有Jobs按钮, Jobs - Leak Detection - Full Stack Traces (Expensive)就可以打开了. 原文链接:No information on error with full stack traces enabled - Uni

    2024年02月11日
    浏览(41)
  • is a JavaScript file. Did you mean to enable the ‘allowJs‘ option? The file is in the program beca

    error TS6504: File ‘/Users/mac/Desktop/eezi/eezi-epc/src/views/home/index.vue.jsx’ is a JavaScript file. Did you mean to enable the ‘allowJs’ option?The file is in the program because: Root file specified for compilation 加上即可

    2024年02月11日
    浏览(41)
  • cls and self\other in Python

    cls represent the class object itself and allows we to work with class-level variables, call other class method. When referring to class-level attributes and methods within a class method or when we need to manipulate or access attributes or methods that are common to all instances of the class. Access and modify class-level attributes. Call other class meth

    2024年02月07日
    浏览(44)
  • 解决报错 We‘re sorry but doesn‘t work properly without JavaScript enabled. Please enable it to continue.

    vue项目打包发布到线上之后报错  doesn\\\'t work properly without JavaScript enabled. Please enable it to continue. 修改router模式之后重新打包上传就可以了。  把history改成hash即可

    2024年02月12日
    浏览(38)
  • 7. Other Methods to Estimate the Probability of Default

    Credit quality analysis from an experts-based approach will apply frameworks such as the four Cs of credit (Character, Capital, Coverage, Collateral) , LAPS (Liquidity, Activity, Proitability, Structure) ,and CAMELS (Capital Adequacy, Asset Quality, Management, Earnings, Liquidity, Sensitivity) . Qualitative features need to be factored into any analysis alo

    2024年02月11日
    浏览(58)
  • DELL 电脑重装系统提示 “Operating System Loader signature found in SecureBoot ......” 解决办法亲测有效

    DELL 电脑重装系统提示 “Operating System Loader signature found in SecureBoot ......” 如下图所示 解决办法 按 F2 进入 BIOS 设置,找到 Boot Configuration 在 Secure Boot Mode 中把默认的 Deployed Mode 修改为 Audit Mode 即可 BIOS 版本不通可能选型位置不通有的在 Secure Boot–Secure Boot Mode–Audit Mode

    2024年02月11日
    浏览(94)
  • linux开启防火墙后,Docker容器启动报错:ERROR: Failed to Setup IP tables: Unable to enable SKIP DNAT rule 解决办法

    目录 1、错误场景和现象 2、原因分析 3、解决办法 linux开启或重启防火墙后,创建docker自定义网络时 报错: [root@VM-16-5-centos home]# docker network create --driver bridge --subnet 192.168.0.0/16 --gateway 192.168.0.1 frayernet Error response from daemon: Failed to Setup IP tables: Unable to enable SKIP DNAT rule:  (ipta

    2024年02月12日
    浏览(42)
  • 深度学习基础之《TensorFlow框架(4)—Operation》

    一、常见的OP 1、举例 类型 实例 标量运算 add,sub,mul,div,exp,log,greater,less,equal 向量运算 concat,slice,splot,canstant,rank,shape,shuffle 矩阵运算 matmul,matrixinverse,matrixdateminant 带状态的运算 variable,assgin,assginadd 神经网络组件 softmax,sigmoid,relu,convolution,max_pool 存

    2024年02月20日
    浏览(41)
  • Clickhouse: One table to rule them all!

    前面几篇笔记我们讨论了存储海量行情数据的个人技术方案。它们之所以被称之为个人方案,并不是因为性能弱,而是指在这些方案中,数据都存储在本地,也只适合单机查询。 数据源很贵 – 在这个冬天,我们已经听说,某些上了规模的机构,也在让员工共享万得账号了。

    2024年01月19日
    浏览(28)
  • 解决报错We‘re sorry but XXXXX doesn‘t work properly without JavaScript enable it to continue

    创建前端页面,vue打包到线上热更新时经常遇到的问题: We’re sorry but XXXXX doesn’t work properly without JavaScript enable it to continue 解决办法:一般是配置Vue的路由Router里的index.js有引入代码编写错误导致。修改即可。 如果功能没有受到影响,那么这个语句不用管他,因为这是个

    2024年02月03日
    浏览(88)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包