Merge pull request #3143 from martin-frbg/fix3088
Resolve circular dependency between common.h and param.h
This commit is contained in:
commit
c0b94ae1df
|
@ -4,7 +4,7 @@
|
||||||
#else
|
#else
|
||||||
#include "config_kernel.h"
|
#include "config_kernel.h"
|
||||||
#endif
|
#endif
|
||||||
#include "param.h"
|
#include "common.h"
|
||||||
|
|
||||||
int main(int argc, char **argv) {
|
int main(int argc, char **argv) {
|
||||||
|
|
||||||
|
|
2
param.h
2
param.h
|
@ -72,8 +72,6 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#ifndef PARAM_H
|
#ifndef PARAM_H
|
||||||
#define PARAM_H
|
#define PARAM_H
|
||||||
|
|
||||||
#include "common.h"
|
|
||||||
|
|
||||||
#define SBGEMM_DEFAULT_UNROLL_N 4
|
#define SBGEMM_DEFAULT_UNROLL_N 4
|
||||||
#define SBGEMM_DEFAULT_UNROLL_M 8
|
#define SBGEMM_DEFAULT_UNROLL_M 8
|
||||||
#define SBGEMM_DEFAULT_UNROLL_MN 32
|
#define SBGEMM_DEFAULT_UNROLL_MN 32
|
||||||
|
|
Loading…
Reference in New Issue