-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
benchsupport: don't run timer tests if no ltimer #55
base: master
Are you sure you want to change the base?
Conversation
settings.cmake
Outdated
|
||
# Benchmarks that don't have a timer can't use the benchmarks which need | ||
# a timer. | ||
if (LibPlatSupportNoPlatformLtimer) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This option won't be defined until the utils_libs cmake module is imported later in the project. So at this point it may be better to make it a platform based test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This does seem to work though, I was testing it interactively inside sel4bench.
Though I was yes sort of confused how CMake dependency ordering works; everything is where it is because otherwise this wasn't defined before here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CMake does process things procedurally but it has generator expressions that implement a generation phase processing that happens at the end of CMake processing.
But the config system that the build uses doesn't use generator expressions and so all of the config options are evaluated in the order they're get and set.
But then because the config options are also stored in the cache (because they can be set by a user on the command line or interactively), running CMake a second time can sometimes hide configuration logic bugs because it uses the cache values from the last run.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not very user friendly. I've wondered about dropping the caching from the options so that they're always evaluated fresh, but that then loses the ability to do the interactive config editing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yes, this is correct. However, even when it's from a cache rebuild, and it prints:
[0/1] Re-running CMake...
CMake Warning at settings.cmake:184 (message):
Platform has no timer, disabling IRQUSER bench
Call Stack (most recent call first):
CMakeLists.txt:9 (include)
It still seems to stay enabled in the cache... and the IRQ tests seems to run.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would there be a good way to get this evaluated beforehand?
IDK, I don't really like the idea of hardcoding platforms in sel4bench when the ltimer code can export config that tells us whether it's supported. It seems really likely to go out of sync if someone adds support to the platsupport for a timer.
Some platforms don't have an ltimer (e.g. Cheshire). In these cases, ltimer_default_init won't compile. Conditionally disable the IRQUSER and SMP benchmarks when there is no ltimer to use. Signed-off-by: julia <git.ts@trainwit.ch>
Some platforms don't have an ltimer (e.g. Cheshire). In these cases, ltimer_default_init won't compile.
Conditionally disable the IRQUSER and SMP benchmarks when there is no ltimer to use.
Resolving seL4/ci-actions#388 (comment)