Remove const from 3.x GemmUniversalAdapter::operator() (#905)

This commit is contained in:
Adnan Akhundov 2023-04-04 02:30:51 +02:00 committed by GitHub
parent 2ba1ef10be
commit 0435979f59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -385,7 +385,7 @@ public:
/// Overload that allows a user to re-launch the same kernel without updating internal params struct. /// Overload that allows a user to re-launch the same kernel without updating internal params struct.
Status Status
operator()(cudaStream_t stream = nullptr) const { operator()(cudaStream_t stream = nullptr) {
return run(params_, stream); return run(params_, stream);
} }
}; };