Update comments

This commit is contained in:
Todd Wang 2017-06-22 11:13:24 -07:00 committed by GitHub
parent 459cd698b1
commit 6b37a07258

View File

@ -205,7 +205,8 @@ std::vector<T> Permute(tensorflow::gtl::ArraySlice<int64> permutation,
return output;
}
// Override of the above that works around compile failures with vectors.
// Override of the above that works around compile failures with gcc 7.1.1.
// For details see https://github.com/tensorflow/tensorflow/issues/10843
template <typename T>
std::vector<T> Permute(tensorflow::gtl::ArraySlice<int64> permutation,
const std::vector<T>& input) {