Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
b23ce920
Unverified
Commit
b23ce920
authored
Jun 18, 2024
by
Tyler Michael Smith
Committed by
GitHub
Jun 18, 2024
Browse files
[Bugfix] Fix CUDA version check for mma warning suppression (#5642)
parent
2bd231a7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
csrc/quantization/marlin/sparse/common/mma.h
csrc/quantization/marlin/sparse/common/mma.h
+2
-1
No files found.
csrc/quantization/marlin/sparse/common/mma.h
View file @
b23ce920
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
#pragma once
#pragma once
#include "base.h"
#include "base.h"
#include <cudaTypedefs.h>
namespace
marlin_24
{
namespace
marlin_24
{
...
@@ -26,7 +27,7 @@ namespace marlin_24 {
...
@@ -26,7 +27,7 @@ namespace marlin_24 {
// | Advisory: Modifier ‘.sp::ordered_metadata’ should be used on instruction
// | Advisory: Modifier ‘.sp::ordered_metadata’ should be used on instruction
// | ‘mma’ instead of modifier ‘.sp’ as it is expected to have substantially
// | ‘mma’ instead of modifier ‘.sp’ as it is expected to have substantially
// | reduced performance on some future architectures
// | reduced performance on some future architectures
#if defined CUDA_VERSION && CUDA_VERSION >= 12
5
00
#if defined CUDA_VERSION && CUDA_VERSION >= 120
5
0
#define MMA_SP_INST \
#define MMA_SP_INST \
"mma.sp::ordered_metadata.sync.aligned.m16n8k32.row.col.f32.f16.f16.f32 "
"mma.sp::ordered_metadata.sync.aligned.m16n8k32.row.col.f32.f16.f16.f32 "
#else
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment