Browse Source
Merge pull request #3143 from martin-frbg/fix3088
Resolve circular dependency between common.h and param.h
tags/v0.3.14^2
Martin Kroeker
GitHub
5 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
3 deletions
-
getarch_2nd.c
-
param.h
|
|
|
@@ -4,7 +4,7 @@ |
|
|
|
#else |
|
|
|
#include "config_kernel.h" |
|
|
|
#endif |
|
|
|
#include "param.h" |
|
|
|
#include "common.h" |
|
|
|
|
|
|
|
int main(int argc, char **argv) { |
|
|
|
|
|
|
|
|
|
|
|
@@ -72,8 +72,6 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
|
#ifndef PARAM_H |
|
|
|
#define PARAM_H |
|
|
|
|
|
|
|
#include "common.h" |
|
|
|
|
|
|
|
#define SBGEMM_DEFAULT_UNROLL_N 4 |
|
|
|
#define SBGEMM_DEFAULT_UNROLL_M 8 |
|
|
|
#define SBGEMM_DEFAULT_UNROLL_MN 32 |
|
|
|
|