-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### What problem does this PR solve? Update mblas library to the latest version. ### Type of change - [x] Refactoring --------- Signed-off-by: Jin Hai <[email protected]>
- Loading branch information
Showing
79 changed files
with
26,376 additions
and
485 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/*++ | ||
Copyright (c) Microsoft Corporation. All rights reserved. | ||
Licensed under the MIT License. | ||
Module Name: | ||
mlas_gemm_postprocessor.h | ||
Abstract: | ||
This module contains a base class for custom postprocessing following a | ||
GEMM. | ||
--*/ | ||
|
||
#pragma once | ||
|
||
template<typename T> | ||
class MLAS_GEMM_POSTPROCESSOR | ||
{ | ||
public: | ||
virtual void Process(T* C, /**< the address of matrix to process */ | ||
size_t RangeStartM, /**< the start row index of matrix */ | ||
size_t RangeStartN, /**< the start col index of matrix */ | ||
size_t RangeCountM, /**< the element count per row to process */ | ||
size_t RangeCountN, /**< the element count per col to process */ | ||
size_t ldc /**< the leading dimension of matrix */ | ||
) const = 0; | ||
|
||
virtual ~MLAS_GEMM_POSTPROCESSOR() {} | ||
}; |
Oops, something went wrong.