Displaying 5 results from an estimated 5 matches for "is_integral".
2020 Jul 28
11
[11.0.0 Release] Release Candidate 1 is here
Hello everyone,
We're a little bit behind schedule, but RC1 is now here. It was tagged
earlier today as llvmorg-11.0.0-rc1.
Source code and docs are available at
https://prereleases.llvm.org/11.0.0/#rc1 and
https://github.com/llvm/llvm-project/releases/tag/llvmorg-11.0.0-rc1
Pre-built binaries will be added as they become available.
Please file bug reports for any issues you find as
2012 Mar 01
2
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
...h, please fix
them all.
/// reproduce *exactly* a specific behavior. To that end, we provide a
function
/// which will forcible set the seed to a fixed value. This must be done at
the
forcible -> forcibly
template <typename T> struct is_hashable_data
: integral_constant<bool, ((is_integral<T>::value ||
is_pointer<T>::value)
&& 64 % sizeof(T) == 0)> {};
Optional: I object to the leading && and propose this reflowed text:
template <typename T> struct is_hashable_data
: integral_c...
2012 Feb 29
0
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
Thanks for the feedback thus far!
I've updated the header file, and enclosed a complete patch against LLVM.
This passes all the regtests, and I'll be doing more thorough testing of
LLVM itself with the patch. I've included some basic unit tests, but could
probably do more here... Not sure it's worth delaying the initial
submission though, as the best testing is to use a hash
2011 Jan 23
0
Error for compiling Rquantlib package 0.3.5 under Window 7 64bits
...[with Functor = QuantLib::details::LinearFct, R = double, T0 = std::vector<double>]'
C:\Lib\QuantLib/boost/function/function_template.hpp:722:7: instantiated from 'boost::function1<R, T1>::function1(Func
tor, typename boost::enable_if_c<boost::type_traits::ice_not<boost::is_integral<Functor>::value>::value, int>::type) [wi
th Functor = QuantLib::details::LinearFct, R = double, T0 = std::vector<double>, typename boost::enable_if_c<boost::type
_traits::ice_not<boost::is_integral<Functor>::value>::value, int>::type = int]'
C:\Lib\QuantLib/q...
2012 Feb 28
9
[LLVMdev] Proposed implementation of N3333 hashing interfaces for LLVM (and possible libc++)
Hello folks,
TL;DR: This is my proposed hashing interface based on a proposed standard
hashing interface. It also is implemented with a much faster and higher
quality algorithm than the current one. This is an *early draft* of the
code, looking for initial feedback.
There has been recent interest in improving the quality and consistency of
LLVM's approach to hashing. In particular, getting