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 9896991 commit fc54a45Copy full SHA for fc54a45
crates/nvvm/src/lib.rs
@@ -1193,10 +1193,8 @@ mod tests {
1193
assert_eq!(compute80_variants, vec![NvvmArch::Compute80]);
1194
1195
// Architecture with architecture and base variants
1196
- let mut compute90_variants = NvvmArch::Compute90.get_variants();
1197
- compute90_variants.sort_by_key(|v| format!("{:?}", v));
1198
assert_eq!(
1199
- compute90_variants,
+ NvvmArch::Compute90.get_variants(),
1200
vec![NvvmArch::Compute90, NvvmArch::Compute90a]
1201
);
1202
0 commit comments