- 博客(4)
- 资源 (2)
- 收藏
- 关注
原创 C&C++跨文件调用
C/C++跨文件调用函数 C项目跨文件调用函数需要写相应的头文件来实现调用,下面是一个简单的例子来解释C项目文件跨文件调用函数。sort.c#include "sort.h"#include "stdio.h"void bubble(int a[]){ int i, j, t; n=5; for(i=1; i<n; i++) for(j=0; j<n-i; j++) if(a[j]>a[j+1]) {
2020-12-18 14:42:31
3747
1
原创 TensorFlow(Windows)出现错误:Your CPU supports instructions that this TensorFlow binary was not compile..
之前从谷歌TensorFlow官方下载使用pip安装tensorflow之后使用tensorflow出现错误Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2网上查找资料后再GitHub上有人已经整理出了tensorflow对应的AVX,SSEcpu版本,点击此处下载对应...
2020-02-13 22:27:17
374
原创 Windows下,pip安装时ReadTimeoutError
解决方案一、一般情况下pip出现ReadTimeoutError都是因为被墙了,所以一般遇到这种问题,我们可以选择国内的镜像来解决问题。C:\Users\Administrator\下新建pip文件夹,在创建pip.ini文件,拷贝下面代码进去,保存。[global]index-url = https://pypi.tuna.tsinghua.edu.cn/simple其实就是把py...
2020-02-13 22:25:57
144
原创 TensorFlow安装教程(For Windows)
TensorFlow2安装TensorFlow安装支持: ·Python3.5-3.7(最好是64bit) ·Windows7及以上使用pip安装TensorFlow:TensorFlow 2软件包可用**tensorflow**—带有CPU和GPU支持的 最新稳定版本(Ubuntu和Windows)**tf-nightly**-预览版本(不稳定)。Ubuntu和Windows包...
2020-02-13 21:10:44
621
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人