TensorFlow-GPU-Fighting compatible versions for Udacity Deep learning tutorial
I'm having a compile issue.
The code I'm executing is from Udacity's deep learning tutorial assignment #4.
This leads me to believe that the problem does not lie within the code but within the software tools that I'm using. I didn't have any issues with the previous three assignments, but now I'm using TensorFlow conv2d member. My system details and error output are listed below. Any help would be greatly appreciated.
If you need the code, let me know and I'll post it.
System Details:
- System: Windows 10 home 64-bit, x64-based processor
- Cuda: v 9.0.176
- CUDNN: v 9.0 win10x64 7.3.1.2
- tf-gpu: v 1.5.0 via PIP
- NVIDIA: GTX 1060 6 GiB
- NVIDIA DRIVER VERSION: 417.35
- python v: 3.6.7
Output:
~DocumentsUdacityDeep LearningAssignment 4 (CNN's)> python main.py
Training set (200000, 28, 28) (200000,)
Validation set (10000, 28, 28) (10000,)
Test set (10000, 28, 28) (10000,)
Training set (200000, 28, 28, 1) (200000, 10)
Validation set (10000, 28, 28, 1) (10000, 10)
Test set (10000, 28, 28, 1) (10000, 10)
2019-01-04 15:40:09.714793: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcoreplatformcpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
2019-01-04 15:40:10.003545: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1105] Found device 0 with properties:
name: GeForce GTX 1060 major: 6 minor: 1 memoryClockRate(GHz): 1.6705
pciBusID: 0000:01:00.0
totalMemory: 6.00GiB freeMemory: 4.97GiB
2019-01-04 15:40:10.013346: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1195] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: GeForce GTX 1060, pci bus
id: 0000:01:00.0, compute capability: 6.1)
Initialized
2019-01-04 15:40:12.584016: E C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowstream_executorcudacuda_dnn.cc:378] Loaded runtime CuDNN library: 7301 (compatibility version 7300) but source was compiled with 7003 (compatibility version 7000). If using a binary install, upgrade your CuDNN library to match. If building from sources, make sure the library loaded at runtime matches a compatible version specified during compile configuration.
2019-01-04 15:40:12.601433: F C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorekernelsconv_ops.cc:717] Check failed: stream->parent()->GetConvolveAlgorithms( conv_parameters.ShouldIncludeWinogradNonfusedAlgo(), &algorithms)
python gpu
New contributor
add a comment |
I'm having a compile issue.
The code I'm executing is from Udacity's deep learning tutorial assignment #4.
This leads me to believe that the problem does not lie within the code but within the software tools that I'm using. I didn't have any issues with the previous three assignments, but now I'm using TensorFlow conv2d member. My system details and error output are listed below. Any help would be greatly appreciated.
If you need the code, let me know and I'll post it.
System Details:
- System: Windows 10 home 64-bit, x64-based processor
- Cuda: v 9.0.176
- CUDNN: v 9.0 win10x64 7.3.1.2
- tf-gpu: v 1.5.0 via PIP
- NVIDIA: GTX 1060 6 GiB
- NVIDIA DRIVER VERSION: 417.35
- python v: 3.6.7
Output:
~DocumentsUdacityDeep LearningAssignment 4 (CNN's)> python main.py
Training set (200000, 28, 28) (200000,)
Validation set (10000, 28, 28) (10000,)
Test set (10000, 28, 28) (10000,)
Training set (200000, 28, 28, 1) (200000, 10)
Validation set (10000, 28, 28, 1) (10000, 10)
Test set (10000, 28, 28, 1) (10000, 10)
2019-01-04 15:40:09.714793: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcoreplatformcpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
2019-01-04 15:40:10.003545: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1105] Found device 0 with properties:
name: GeForce GTX 1060 major: 6 minor: 1 memoryClockRate(GHz): 1.6705
pciBusID: 0000:01:00.0
totalMemory: 6.00GiB freeMemory: 4.97GiB
2019-01-04 15:40:10.013346: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1195] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: GeForce GTX 1060, pci bus
id: 0000:01:00.0, compute capability: 6.1)
Initialized
2019-01-04 15:40:12.584016: E C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowstream_executorcudacuda_dnn.cc:378] Loaded runtime CuDNN library: 7301 (compatibility version 7300) but source was compiled with 7003 (compatibility version 7000). If using a binary install, upgrade your CuDNN library to match. If building from sources, make sure the library loaded at runtime matches a compatible version specified during compile configuration.
2019-01-04 15:40:12.601433: F C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorekernelsconv_ops.cc:717] Check failed: stream->parent()->GetConvolveAlgorithms( conv_parameters.ShouldIncludeWinogradNonfusedAlgo(), &algorithms)
python gpu
New contributor
add a comment |
I'm having a compile issue.
The code I'm executing is from Udacity's deep learning tutorial assignment #4.
This leads me to believe that the problem does not lie within the code but within the software tools that I'm using. I didn't have any issues with the previous three assignments, but now I'm using TensorFlow conv2d member. My system details and error output are listed below. Any help would be greatly appreciated.
If you need the code, let me know and I'll post it.
System Details:
- System: Windows 10 home 64-bit, x64-based processor
- Cuda: v 9.0.176
- CUDNN: v 9.0 win10x64 7.3.1.2
- tf-gpu: v 1.5.0 via PIP
- NVIDIA: GTX 1060 6 GiB
- NVIDIA DRIVER VERSION: 417.35
- python v: 3.6.7
Output:
~DocumentsUdacityDeep LearningAssignment 4 (CNN's)> python main.py
Training set (200000, 28, 28) (200000,)
Validation set (10000, 28, 28) (10000,)
Test set (10000, 28, 28) (10000,)
Training set (200000, 28, 28, 1) (200000, 10)
Validation set (10000, 28, 28, 1) (10000, 10)
Test set (10000, 28, 28, 1) (10000, 10)
2019-01-04 15:40:09.714793: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcoreplatformcpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
2019-01-04 15:40:10.003545: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1105] Found device 0 with properties:
name: GeForce GTX 1060 major: 6 minor: 1 memoryClockRate(GHz): 1.6705
pciBusID: 0000:01:00.0
totalMemory: 6.00GiB freeMemory: 4.97GiB
2019-01-04 15:40:10.013346: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1195] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: GeForce GTX 1060, pci bus
id: 0000:01:00.0, compute capability: 6.1)
Initialized
2019-01-04 15:40:12.584016: E C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowstream_executorcudacuda_dnn.cc:378] Loaded runtime CuDNN library: 7301 (compatibility version 7300) but source was compiled with 7003 (compatibility version 7000). If using a binary install, upgrade your CuDNN library to match. If building from sources, make sure the library loaded at runtime matches a compatible version specified during compile configuration.
2019-01-04 15:40:12.601433: F C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorekernelsconv_ops.cc:717] Check failed: stream->parent()->GetConvolveAlgorithms( conv_parameters.ShouldIncludeWinogradNonfusedAlgo(), &algorithms)
python gpu
New contributor
I'm having a compile issue.
The code I'm executing is from Udacity's deep learning tutorial assignment #4.
This leads me to believe that the problem does not lie within the code but within the software tools that I'm using. I didn't have any issues with the previous three assignments, but now I'm using TensorFlow conv2d member. My system details and error output are listed below. Any help would be greatly appreciated.
If you need the code, let me know and I'll post it.
System Details:
- System: Windows 10 home 64-bit, x64-based processor
- Cuda: v 9.0.176
- CUDNN: v 9.0 win10x64 7.3.1.2
- tf-gpu: v 1.5.0 via PIP
- NVIDIA: GTX 1060 6 GiB
- NVIDIA DRIVER VERSION: 417.35
- python v: 3.6.7
Output:
~DocumentsUdacityDeep LearningAssignment 4 (CNN's)> python main.py
Training set (200000, 28, 28) (200000,)
Validation set (10000, 28, 28) (10000,)
Test set (10000, 28, 28) (10000,)
Training set (200000, 28, 28, 1) (200000, 10)
Validation set (10000, 28, 28, 1) (10000, 10)
Test set (10000, 28, 28, 1) (10000, 10)
2019-01-04 15:40:09.714793: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcoreplatformcpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
2019-01-04 15:40:10.003545: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1105] Found device 0 with properties:
name: GeForce GTX 1060 major: 6 minor: 1 memoryClockRate(GHz): 1.6705
pciBusID: 0000:01:00.0
totalMemory: 6.00GiB freeMemory: 4.97GiB
2019-01-04 15:40:10.013346: I C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorecommon_runtimegpugpu_device.cc:1195] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: GeForce GTX 1060, pci bus
id: 0000:01:00.0, compute capability: 6.1)
Initialized
2019-01-04 15:40:12.584016: E C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowstream_executorcudacuda_dnn.cc:378] Loaded runtime CuDNN library: 7301 (compatibility version 7300) but source was compiled with 7003 (compatibility version 7000). If using a binary install, upgrade your CuDNN library to match. If building from sources, make sure the library loaded at runtime matches a compatible version specified during compile configuration.
2019-01-04 15:40:12.601433: F C:tf_jenkinsworkspacerel-winMwindows-gpuPY36tensorflowcorekernelsconv_ops.cc:717] Check failed: stream->parent()->GetConvolveAlgorithms( conv_parameters.ShouldIncludeWinogradNonfusedAlgo(), &algorithms)
python gpu
python gpu
New contributor
New contributor
edited 2 days ago
Scott
15.6k113889
15.6k113889
New contributor
asked 2 days ago
Brad RydalchBrad Rydalch
1
1
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Brad Rydalch is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1390733%2ftensorflow-gpu-fighting-compatible-versions-for-udacity-deep-learning-tutorial%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Brad Rydalch is a new contributor. Be nice, and check out our Code of Conduct.
Brad Rydalch is a new contributor. Be nice, and check out our Code of Conduct.
Brad Rydalch is a new contributor. Be nice, and check out our Code of Conduct.
Brad Rydalch is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1390733%2ftensorflow-gpu-fighting-compatible-versions-for-udacity-deep-learning-tutorial%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown