Increase max filename size#182
Open
rainwoodman wants to merge 1 commit intolesgourg:masterfrom
Open
Conversation
The default size 256 causes a overflow error on OSX with FORTIFY_SOURCE in our python binding, because to the conda-build path prefix generates file paths beyond this limit (312 chars on my build bot).
lesgourg
pushed a commit
that referenced
this pull request
Sep 30, 2024
* Did the float/array conversion for all 'simple' functions * Also made the sigma/fsigma8/effective_f functions float/array compatible --------- Co-authored-by: schoeneberg <schoeneberg@github.com>
lesgourg
added a commit
that referenced
this pull request
Sep 30, 2024
* devel: Fixing the sigma8 bug (#185) Fixed missing density Cl. (#177) Implementation of baselines (#183) Float and array options for classy functions (#182) Graceful exit (#181) Now each module keeps track of whether it is allocated or not explicitly (i.e. its init has run through succesfully) -- this prevents many problems with the explicit deallocation in the python wrapper (#178) Fixed the compilation for future numpy versions (v2) (#176) Added Neff (not N_eff) as a new input parameter with shooting, representing the request for a given total Neff (not just Nur) (#171) Fix workflows (#169) 165 minor bugs (#166) switched to setuptools (#163) Solve S8 shooting when more shooting parameters and slight restructuring of input_shooting() (#159) Removed unused enum that could cause problems with the 'open' keyword (#155) Removed unneeded imports from transfer.h that could cause problems on some systems (#154)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The default size 256 causes a overflow error on OSX with FORTIFY_SOURCE in our python binding, because to the conda-build path prefix generates file paths beyond this limit (it turned out to be 312 chars on my build bot).