Skip to content

Commit b67d2f4

Browse files
committed
fix formatting
1 parent 0122b76 commit b67d2f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mlir/include/mlir/Dialect/LLVMIR/NVVMTraits.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ namespace NVVM {
2424
// Structure to store and check compatibility of SM versions.
2525
struct NVVMCheckSMVersion {
2626
int archVersion;
27-
27+
2828
// true if the SM version is accelerated (Ex. sm_90a vs sm_90)
2929
bool archAccelerated;
30-
30+
3131
// true if the target SM version must exactly match this one
3232
// (both archVersion and archAccelerated)
3333
// Ex. sm_90a with exactMatch = false will also match with
3434
// sm_100a, sm_120a, etc...
35-
bool exactMatch;
35+
bool exactMatch;
3636

3737
NVVMCheckSMVersion()
3838
: archVersion(0), archAccelerated(false), exactMatch(false) {}

0 commit comments

Comments
 (0)