You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2021/02/24 03:15:50 UTC

[GitHub] [incubator-mxnet] leezu commented on a change in pull request #19930: [BACKPORT]Enable CUDA 11.0 on nightly + CUDA 11.2 on pip (#19295)(#19764)

leezu commented on a change in pull request #19930:
URL: https://github.com/apache/incubator-mxnet/pull/19930#discussion_r581587231



##########
File path: cd/utils/test_artifact_repository.py
##########
@@ -178,11 +178,11 @@ def test_probe_variant_cpu(self, mock_features):
     @patch('artifact_repository.get_cuda_version')
     def test_probe_variant_cuda(self, mock_cuda_version, mock_features):
         """
-        Tests 'cu102' is returned if MKLDNN is OFF and CUDA is ON and CUDA version is 10.2
+        Tests 'cu100' is returned if MKLDNN is OFF and CUDA is ON and CUDA version is 10.0
         """
         mock_features.return_value = {'MKLDNN': True, 'CUDA': True}
-        mock_cuda_version.return_value = '102'
-        self.assertEqual(probe_mxnet_variant('libmxnet.so'), 'cu102')
+        mock_cuda_version.return_value = '100'
+        self.assertEqual(probe_mxnet_variant('libmxnet.so'), 'cu100')

Review comment:
       What's the purpose of this change?




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org