I'm trying to build an AMX CI on our fork: https://github.com/libxsmm/aster
These are the two loops:
This is a copy of what we did in Lighthouse.
The idea is to run the rebase every night and the AMX tests every time the main branch changes. Even if we would one day use this fork for development, we'd contribute with local branch -> aster/main -> xsmm/main, so that main branch still only updates when there are new commits in aster/main.
The main questions I have are:
- What's the simplest way to build LLVM without relying on docker?
- What's the minimum set of dependencies (packages, libs) that I need to just run the AMX code?
- What are the required CMake flags I need to set to build and run the AMX tests only?
@nicolasvasilache
I'm trying to build an AMX CI on our fork: https://github.com/libxsmm/aster
These are the two loops:
This is a copy of what we did in Lighthouse.
The idea is to run the rebase every night and the AMX tests every time the
mainbranch changes. Even if we would one day use this fork for development, we'd contribute withlocal branch->aster/main->xsmm/main, so thatmainbranch still only updates when there are new commits inaster/main.The main questions I have are:
@nicolasvasilache