Skip to content
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

configure.ac should check for __float128 #110

Closed
pablooliveira opened this issue Aug 26, 2019 · 0 comments · Fixed by #139
Closed

configure.ac should check for __float128 #110

pablooliveira opened this issue Aug 26, 2019 · 0 comments · Fixed by #139

Comments

@pablooliveira
Copy link
Member

libinterflop-mca backend (quad backend) requires support for __float128.

We should check that this type is supported in configure.ac.

https://gitlab.freedesktop.org/pixman/pixman/commit/09600ae7e34eb777471c931cd4c3a8cdbda6e84a gives an example of how to do this.

yohanchatelain added a commit to yohanchatelain/verificarlo that referenced this issue Jan 31, 2020
       - interlop-mca & interflop-mca-mpfr:
	 * Adds separate virtual precision for binary32 and binary64.
	   Available through options --precision-binary32 and --precision-binary64.
	   Closes verificarlo#106.
	 * Adds guards to avoid spurious precisions that closes verificarlo#104.
	 * Uses `enum` for MCA_MODE instead of #define.
	 * Renames _mca_{s,d}bin functions into _mca_binary{32,64}_binary_op.
       - interflop-mca:
       	 * Uses binary128 structure and bitfields to handle __float128 and
       	   enhances the readabilty of the code.
       - interflop-mca-mpfr:
       	 * For avoiding duplication of code dues to separated virtual precisions,
	   uses a factored version of _MCA_INEXACT as a macro function.
	   This version uses the `_Generic` feature of C++11 available since
	   gcc-4.9.
       - tests:
       	 * Updated for using options --precision-binary{32,64}
       - configure.ac:
       	 * Tests that __unint128_t and  __float128_t are supported.
	   This closes verificarlo#110.
	 * Tests that _Generic keyword is supported by gcc.
	   Used in interflop-mca-mpfr backend.
	 * Updated with missing checks reported by autoscan.
       - .travis.yml & Dockerfile:
       	 * Updated for testing with gcc-4.9.
yohanchatelain added a commit to yohanchatelain/verificarlo that referenced this issue Jan 31, 2020
       - interlop-mca & interflop-mca-mpfr:
	 * Adds separate virtual precision for binary32 and binary64.
	   Available through options --precision-binary32 and --precision-binary64.
	   Closes verificarlo#106.
	 * Adds guards to avoid spurious precisions that closes verificarlo#104.
	 * Uses `enum` for MCA_MODE instead of #define.
	 * Renames _mca_{s,d}bin functions into _mca_binary{32,64}_binary_op.
       - interflop-mca:
       	 * Uses binary128 structure and bitfields to handle __float128 and
       	   enhances the readabilty of the code.
       - interflop-mca-mpfr:
       	 * For avoiding duplication of code dues to separated virtual precisions,
	   uses a factored version of _MCA_INEXACT as a macro function.
	   This version uses the `_Generic` feature of C++11 available since
	   gcc-4.9.
       - tests:
       	 * Updated for using options --precision-binary{32,64}
       - configure.ac:
       	 * Tests that __unint128_t and  __float128_t are supported.
	   This closes verificarlo#110.
	 * Tests that _Generic keyword is supported by gcc.
	   Used in interflop-mca-mpfr backend.
	 * Updated with missing checks reported by autoscan.
       - .travis.yml & Dockerfile:
       	 * Updated for testing with gcc-4.9.
yohanchatelain added a commit to yohanchatelain/verificarlo that referenced this issue Feb 3, 2020
       - interlop-mca & interflop-mca-mpfr:
	 * Adds separate virtual precision for binary32 and binary64.
	   Available through options --precision-binary32 and --precision-binary64.
	   Closes verificarlo#106.
	 * Adds guards to avoid spurious precisions that closes verificarlo#104.
	 * Uses `enum` for MCA_MODE instead of #define.
	 * Renames _mca_{s,d}bin functions into _mca_binary{32,64}_binary_op.
       - interflop-mca:
       	 * Uses binary128 structure and bitfields to handle __float128 and
       	   enhances the readabilty of the code.
       - interflop-mca-mpfr:
       	 * For avoiding duplication of code dues to separated virtual precisions,
	   uses a factored version of _MCA_INEXACT as a macro function.
	   This version uses the `_Generic` feature of C++11 available since
	   gcc-4.9.
       - tests:
       	 * Updated for using options --precision-binary{32,64}
       - configure.ac:
       	 * Tests that __unint128_t and  __float128_t are supported.
	   This closes verificarlo#110.
	 * Tests that _Generic keyword is supported by gcc.
	   Used in interflop-mca-mpfr backend.
	 * Updated with missing checks reported by autoscan.
       - .travis.yml & Dockerfile:
       	 * Updated for testing with gcc-4.9.
yohanchatelain added a commit to yohanchatelain/verificarlo that referenced this issue Feb 4, 2020
       - interlop-mca & interflop-mca-mpfr:
	 * Adds separate virtual precision for binary32 and binary64.
	   Available through options --precision-binary32 and --precision-binary64.
	   Closes verificarlo#106.
	 * Adds guards to avoid spurious precisions that closes verificarlo#104.
	 * Uses `enum` for MCA_MODE instead of #define.
	 * Renames _mca_{s,d}bin functions into _mca_binary{32,64}_binary_op.
       - interflop-mca:
       	 * Uses binary128 structure and bitfields to handle __float128 and
       	   enhances the readabilty of the code.
       - interflop-mca-mpfr:
       	 * For avoiding duplication of code dues to separated virtual precisions,
	   uses a factored version of _MCA_INEXACT as a macro function.
	   This version uses the `_Generic` feature of C++11 available since
	   gcc-4.9.
       - tests:
       	 * Updated for using options --precision-binary{32,64}
       - configure.ac:
       	 * Tests that __unint128_t and  __float128_t are supported.
	   This closes verificarlo#110.
	 * Tests that _Generic keyword is supported by gcc.
	   Used in interflop-mca-mpfr backend.
	 * Updated with missing checks reported by autoscan.
       - .travis.yml & Dockerfile:
       	 * Updated for testing with gcc-4.9.
titeup pushed a commit that referenced this issue Feb 7, 2020
       - interlop-mca & interflop-mca-mpfr:
	 * Adds separate virtual precision for binary32 and binary64.
	   Available through options --precision-binary32 and --precision-binary64.
	   Closes #106.
	 * Adds guards to avoid spurious precisions that closes #104.
	 * Uses `enum` for MCA_MODE instead of #define.
	 * Renames _mca_{s,d}bin functions into _mca_binary{32,64}_binary_op.
       - interflop-mca:
       	 * Uses binary128 structure and bitfields to handle __float128 and
       	   enhances the readabilty of the code.
       - interflop-mca-mpfr:
       	 * For avoiding duplication of code dues to separated virtual precisions,
	   uses a factored version of _MCA_INEXACT as a macro function.
	   This version uses the `_Generic` feature of C++11 available since
	   gcc-4.9.
       - tests:
       	 * Updated for using options --precision-binary{32,64}
       - configure.ac:
       	 * Tests that __unint128_t and  __float128_t are supported.
	   This closes #110.
	 * Tests that _Generic keyword is supported by gcc.
	   Used in interflop-mca-mpfr backend.
	 * Updated with missing checks reported by autoscan.
       - .travis.yml & Dockerfile:
       	 * Updated for testing with gcc-4.9.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant