-
Notifications
You must be signed in to change notification settings - Fork 127
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
v3.1.10 commits and release notes #364
Merged
cary-ilm
merged 20 commits into
AcademySoftwareFoundation:RB-3.1
from
cary-ilm:v3.1.10-fixes
Jan 24, 2024
Merged
v3.1.10 commits and release notes #364
cary-ilm
merged 20 commits into
AcademySoftwareFoundation:RB-3.1
from
cary-ilm:v3.1.10-fixes
Jan 24, 2024
Conversation
This file contains 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
openexr.com forwards to openexr.org, but for consistency, let's refer to all email addresses as @openexr.com, to match the website. Signed-off-by: Cary Phillips <cary@ilm.com>
…n#333) Extends epsilon bounds for extracted scale vector comparison to allow up to one representable value of deviation in precision. Signed-off-by: Zachary Klein <ztklein@lavabit.com>
Now required by readthedocs.com. Signed-off-by: Cary Phillips <cary@ilm.com>
* Rename "docs" to "website" "website" is a more accurate term than "docs", so: - The source lives in the ``website`` subdirectory (was ``docs``) - The CMake option is now ``BUILD_WEBSITE`` (was ``BUILD_DOCS``) - The CMake target is now ``website`` (was ``docs``) - There's no longer a CMake option to install the docs, since copying the ``.html`` to the install location is pointless. The ``INSTALL_DOCS`` option has been removed. Signed-off-by: Cary Phillips <cary@ilm.com> * change $ to % in install.rst Signed-off-by: Cary Phillips <cary@ilm.com> * rename docs to website in ci_workflows.yml Signed-off-by: Cary Phillips <cary@ilm.com> * mention sphinx_press_theme and rst Signed-off-by: Cary Phillips <cary@ilm.com> --------- Signed-off-by: Cary Phillips <cary@ilm.com>
…dation#340) I fixed calling default constructor in ImathTypeTraits.h by using uniform initialization. Signed-off-by: Yuya Asano <64895419+sukeya@users.noreply.github.com>
- PortingGuide2-3.md is now PortingGuide.rst - zlib is probably copypasta from OpenEXR? - website/Makefile probably added by mistake Signed-off-by: Cary Phillips <cary@ilm.com>
…mySoftwareFoundation#353) Signed-off-by: Jean-Marie Aubry <jmma.aubry@protonmail.com>
…ation#350) See AcademySoftwareFoundation#346: Checking for the language version is not going to help for incomplete libraries such as on Apple or Android. This fixes this by using the bit_cast-specific macro. Signed-off-by: Cary Phillips <cary@ilm.com>
…ftwareFoundation#349) Similar to AcademySoftwareFoundation/openexr#1541, there seems to be no downside to generating the Imath.pc file even on windows, so for consistency, apply the same default to all platforms. Signed-off-by: Cary Phillips <cary@ilm.com>
AcademySoftwareFoundation#358) The lzcnt instruction is not supported on some older x86_64 CPUs. On these CPUs it will silently execute a bsr instruction instead, leading to wrong results. Instead use the bsr instruction and one additional subtraction, which should have a negligible impact on performance. Additionally, this likely improves performance on ARM. Thanks to Ray Molenkamp for tracking down this bug. Signed-off-by: Brecht Van Lommel <brecht@blender.org>
Apparently now required by other dependencies Signed-off-by: Cary Phillips <cary@ilm.com>
…orting targets for dependent projects (AcademySoftwareFoundation#361) Thanks: Jochen Sprickerhof Closes: AcademySoftwareFoundation#360 Signed-off-by: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de>
…n#344) Signed-off-by: Yuya Asano <64895419+sukeya@users.noreply.github.com>
…n#347) make each file path of ImathConfig.cmake.in and ImathConfigVersion.cmake exact. Signed-off-by: Yuya Asano <64895419+sukeya@users.noreply.github.com>
…ng (AcademySoftwareFoundation#331) Signed-off-by: Zachary Klein <ztklein@lavabit.com>
Signed-off-by: Cary Phillips <cary@ilm.com>
Signed-off-by: Cary Phillips <cary@ilm.com>
Signed-off-by: Cary Phillips <cary@ilm.com>
Signed-off-by: Cary Phillips <cary@ilm.com>
dc27c19
to
a649b83
Compare
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.
Commits for a v3.1.10 patch release. No ABI changes, just build/bug/test fixes.
Build fixes:
Fix a problem where downstream projects using Imath would build python bindings even if they weren't requested.
Fix for missing std::bit_cast
Fix missing/necessary use of IMATH_HOSTDEVICE
IMATH_INSTALL_PKG_CONFIG is now on by default, even on Windows
Fix calling default constructor by uniform init in TypeTraits
Fix redundant PYIMATH_EXPORTS causing compile issues on Windows Clang
Update to SO versioning policy:
This change adopts a policy of appending the MAJOR.MINOR.PATCH software release name to the SONAME to form the real name of the shared library.
See website/install.rst and
#339 for more details.
Bug fixes:
Tests:
Other: