-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
openblas v0.3.28 #163
openblas v0.3.28 #163
Conversation
…nda-forge-pinning 2024.08.09.06.49.09
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
@martin-frbg, there's a test that's hanging regularly on aarch/ppc builds, and now that I'm looking at the logs of a passing build, even there it seems to go awry:
I guess running fork safety test in an emulator is always going to be a risky proposition: openblas-feedstock/recipe/build.sh Lines 63 to 68 in 441b6ae
Should we just disable that test for cross-compiled builds? |
not sure, could you try if OpenMathLib/OpenBLAS#4879 makes it go away (this was seen in Julia very recently, I may have to produce an early 0.3.29 next week) |
Thanks @martin-frbg! I've tried the patch but there's no change unfortunately. AFAICT the behaviour is bimodal: either the build passes in <30min, or it hangs forever at that test. One other observation is that the hangs appear to be exclusive to the |
Thanks - in that case, disabling the tests is probably warranted if they pass on the actual hardware. Note that test_fork is not run at all in OpenMP builds as it is known to fail with (at least) the GNU libgomp (due to design limitations in the latter) |
Thank you! I've tried to disable --- a/utest/Makefile
+++ b/utest/Makefile
@@ -45,8 +45,10 @@ endif
# FIXME TBD if this works on OSX, SunOS, POWER and zarch
ifeq ($(OSNAME), $(filter $(OSNAME),Linux CYGWIN_NT))
ifneq ($(USE_OPENMP), 1)
+ifneq ($(CROSS), 1)
OBJS += test_fork.o
endif
+endif
OBJS += test_post_fork.o
endif but that doesn't seem to work (i.e. runs are still hanging there). I don't know the upstream test setup very well - what would be a good (or at least easy) way to skip that test? |
strange, are you sure it is hanging in the exact same test? maybe try disabling test_post_fork.c as well |
I'm saying it's hanging in the test after
which -- according to runs that pass -- should be
I don't know the exact relation ship between |
e5580ff
to
f20a852
Compare
Alright, I upgraded the patch to --- a/utest/Makefile
+++ b/utest/Makefile
@@ -43,12 +43,14 @@ endif
#this does not work with OpenMP nor with native Windows or Android threads
# FIXME TBD if this works on OSX, SunOS, POWER and zarch
+ifneq ($(CROSS), 1)
ifeq ($(OSNAME), $(filter $(OSNAME),Linux CYGWIN_NT))
ifneq ($(USE_OPENMP), 1)
OBJS += test_fork.o
endif
OBJS += test_post_fork.o
endif
+endif
ifeq ($(C_COMPILER), PGI)
OBJS = utest_main2.o and that seems to have done the trick! Thank you! However, I'll note that in the three
I don't really understand how that test wouldn't equally be skipped there, because it has |
hmm, there should not be a way around this in the makefile - guessing these are either cmake builds or CI did not actually apply the PR on top of the checkout (I sometimes see this with Cirrus, a rerun usually fixes it) |
I've never seen that happen in ~5 years in azure pipelines (and I look at a lot of CI runs), but the reason this didn't trigger looks to be much more mundane: I misinterpreted what we're setting the value of |
…nda-forge-pinning 2024.08.17.00.11.41
despite cross-compiling, we set `CROSS=0`, because we have qemu available as an emulator in the image, and apparently the makefiles can figure out the rest
openblas_utest already runs under overall test suite
455a235
to
f4ee62d
Compare
It is very likely that the current package version for this feedstock is out of date.
Checklist before merging this PR:
license_file
is packagedInformation about this PR:
@conda-forge-admin,
please add bot automerge
in the title and merge the resulting PR. This command will add our bot automerge feature to your feedstock.bot-rerun
label to this PR. The bot will close this PR and schedule another one. If you do not have permissions to add this label, you can use the phrase@conda-forge-admin, please rerun bot
in a PR comment to have theconda-forge-admin
add it for you.Pending Dependency Version Updates
Here is a list of all the pending dependency version updates for this repo. Please double check all dependencies before merging.
Dependency Analysis
Please note that this analysis is highly experimental. The aim here is to make maintenance easier by inspecting the package's dependencies. Importantly this analysis does not support optional dependencies, please double check those before making changes. If you do not want hinting of this kind ever please add
bot: inspection: disabled
to yourconda-forge.yml
. If you encounter issues with this feature please ping the bot teamconda-forge/bot
.Analysis by source code inspection shows a discrepancy between it and the the package's stated requirements in the meta.yaml.
Packages found by source code inspection but not in the meta.yaml:
This PR was created by the regro-cf-autotick-bot. The regro-cf-autotick-bot is a service to automatically track the dependency graph, migrate packages, and propose package version updates for conda-forge. Feel free to drop us a line if there are any issues! This PR was generated by https://github.com/regro/cf-scripts/actions/runs/10315325611 - please use this URL for debugging.