We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0122b76 commit b67d2f4Copy full SHA for b67d2f4
mlir/include/mlir/Dialect/LLVMIR/NVVMTraits.h
@@ -24,15 +24,15 @@ namespace NVVM {
24
// Structure to store and check compatibility of SM versions.
25
struct NVVMCheckSMVersion {
26
int archVersion;
27
-
+
28
// true if the SM version is accelerated (Ex. sm_90a vs sm_90)
29
bool archAccelerated;
30
31
// true if the target SM version must exactly match this one
32
// (both archVersion and archAccelerated)
33
// Ex. sm_90a with exactMatch = false will also match with
34
// sm_100a, sm_120a, etc...
35
- bool exactMatch;
+ bool exactMatch;
36
37
NVVMCheckSMVersion()
38
: archVersion(0), archAccelerated(false), exactMatch(false) {}
0 commit comments