Fixed the comment to reference gist example instead of private repo (#18852)
authorIurii Zdebskyi <iuriiz@fb.com>
Fri, 5 Apr 2019 01:23:38 +0000 (18:23 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Fri, 5 Apr 2019 01:26:24 +0000 (18:26 -0700)
Summary:
Replace link to a file in a private repo with a gist
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18852

Reviewed By: ezyang

Differential Revision: D14778481

Pulled By: izdeby

fbshipit-source-id: 8389aa4bf115ddcfd85079cc2c861404efa678e7

aten/src/ATen/Dispatch.h

index d6130d6..2e83529 100644 (file)
@@ -21,7 +21,7 @@ struct ScalarTypeToCType<at::ScalarType::Half> {
 
   // This is a workaround for the CUDA bug which prevents ::detail::ScalarTypeToCType<T>::type being used directly
   // due to ambiguous reference which can't to be resolved. For some reason it cant pick between at::detail and at::cuda::detail.
-  // For repro example, please see: https://github.com/izdeby/playground/blob/0b0c0e9373b32830442ec26b2bc3535b21fb8d95/C%2B%2B/CudaBugRepro.cu
+  // For repro example, please see: https://gist.github.com/izdeby/952ae7cf256ddb740a73776d39a7e7ba
   // TODO: remove once the bug is fixed.
   static at::Half t;
 };
@@ -32,7 +32,7 @@ struct ScalarTypeToCType<at::ScalarType::Bool> {
 
   // This is a workaround for the CUDA bug which prevents ::detail::ScalarTypeToCType<T>::type being used directly
   // due to ambiguous reference which can't to be resolved. For some reason it cant pick between at::detail and at::cuda::detail.
-  // For repro example, please see: https://github.com/izdeby/playground/blob/0b0c0e9373b32830442ec26b2bc3535b21fb8d95/C%2B%2B/CudaBugRepro.cu
+  // For repro example, please see: https://gist.github.com/izdeby/952ae7cf256ddb740a73776d39a7e7ba
   // TODO: remove once the bug is fixed.
   static bool t;
 };