Which component has the problem?
CUTLASS C++
Bug Report
bbe579a#diff-1e7de1ae2d059d21e1dd75d5812d5a34b0222cef273b7c3a2af62eb747f9d20aR54-R612 removed configure_file for version.h, but version.h still has @Replacements@ in getVersionString and getGitRevision:
|
inline std::string getVersionString() { |
|
std::string version = "@CUTLASS_VERSION@"; |
|
if (getVersionBuild()) { |
|
version += "." + std::to_string(getVersionBuild()); |
|
} |
|
return version; |
|
} |
|
|
|
inline std::string getGitRevision() { |
|
return "@CUTLASS_REVISION@"; |
|
} |
In vcpkg we patched this in microsoft/vcpkg#53412
Which component has the problem?
CUTLASS C++
Bug Report
bbe579a#diff-1e7de1ae2d059d21e1dd75d5812d5a34b0222cef273b7c3a2af62eb747f9d20aR54-R612 removed
configure_fileforversion.h, butversion.hstill has@Replacements@ingetVersionStringandgetGitRevision:cutlass/include/cutlass/version.h
Lines 73 to 83 in 564d267
In vcpkg we patched this in microsoft/vcpkg#53412