- May 05, 2018
-
-
Oksana Shadura authored
Revert "Refactoring deflate.c to support more compilation cases (x86_64[SIMD/nonSIMD], Aarch64[Neon/CRC32], Windows)" This reverts commit cdb3ef83aeda1638b8f769a2d8be2693933ceb99.
-
Oksana Shadura authored
This reverts commit 71116468507ddfa06264b4d4e83826a5f272ffc8.
-
Oksana Shadura authored
Revert "Fixing compilation on Mac OS X: the implementation of target attribute is using the STT_GNU_IFUNC symbol type, disabling its usage in zlib for Mac" This reverts commit 63345dab49441fdf6f9098ce797c7802816e6326.
-
Oksana Shadura authored
-
Oksana Shadura authored
This reverts commit c168486449b665e7191bc6f729f802c68e7ecd90.
-
Oksana Shadura authored
Revert "Adding CMake macro checking version of binutils for correct handling of zlib compilation on SL6" This reverts commit 531f493ac0b7cb11c8f829d483b7d0afbf08ad9c.
-
Oksana Shadura authored
This reverts commit dd464d715abf89faea271e93cb455ae667fb1aa8.
-
Oksana Shadura authored
This reverts commit dc71c77684f6475ff508593a23044890ff02a82f.
-
Guilherme Amadio authored
The builtin VecCore requires a network connection to build.
-
Guilherme Amadio authored
The builtin TBB requires a network connection to build.
-
Guilherme Amadio authored
The builtin Davix requires a network connection to build.
-
Guilherme Amadio authored
The builtin OpenSSL requires a network connection to build.
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Guilherme Amadio authored
-
Danilo Piparo authored
-
- May 04, 2018
-
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
Otherwise Windows complains about needing to capture it
-
Philippe Canal authored
The new scheme insures a much more stable and efficient behavior in case of low memory given by the user compared to the size of the buffer or 'odd' basket layout. The basket collection is now done in 4 phases: 1 - One basket per branch, basket must contains the request entry and is not yet loaded or used, 2 - Even out by adding baskets so that all branches reach the same entry (or close) 3 - Add the remaining branches from the current cluster. 4 - Add the basket from the begining of the clsuter to the current entry (if any) then repeat the 4 steps for the next cluster. The iteration is stopped as soon as the cache is 'full' as defined by these rules: - During step 1 of the first cluster, continue up to 4 times the user requested cache size - During steps 2 to 4 of the first cluster, continue up to 2 times the user requested cache sizep - During steps 2 to 4, the 'first' basket of a branch is accepted up to 4 times the user requested cache size (i.e as if it had been selected during the 1st step) - During the other clusters, continue up to the user requested cache size A basket if rejected/skipped if its individual size is larger than the user requested cache size In addition, upon seeing a cache miss, FillBuffer now detects if all the basket in the cache have already been used (read from the cache) in which case we can\ discard them and load the next set of baskets. As a side effect, we now keep a record of which baskets are in the cache and which of those baskets have been used. The TTreePerfStats now keep a complete log of all the basket that are: - loaded in the main cache (and how many times) - loaded in the 'misss' cache (and how many times) - used - read directly (complete cache miss) This will be helpful in understanding situation of over-read or slow operations.
-
Philippe Canal authored
There is now one per branch and it will contain more information than just the index.
-
Philippe Canal authored
-
Philippe Canal authored
-
Philippe Canal authored
-