1. 09 3月, 2021 2 次提交
  2. 18 2月, 2021 1 次提交
  3. 02 12月, 2020 1 次提交
  4. 10 11月, 2020 1 次提交
  5. 16 10月, 2020 1 次提交
  6. 07 10月, 2020 1 次提交
  7. 06 10月, 2020 1 次提交
  8. 21 7月, 2020 1 次提交
  9. 29 6月, 2020 1 次提交
  10. 03 4月, 2020 1 次提交
  11. 02 4月, 2020 1 次提交
  12. 11 3月, 2020 1 次提交
  13. 26 2月, 2020 1 次提交
  14. 07 2月, 2020 2 次提交
  15. 02 2月, 2020 1 次提交
  16. 31 1月, 2020 1 次提交
  17. 26 12月, 2019 1 次提交
  18. 20 11月, 2019 1 次提交
    • V
      Post-PR fixes · 825b8d11
      Vasily Nemkov 提交于
       * value_type => ValueType for ColumnVector and ColumnDecimal
       * minor formatting fixes
       * removed `extern template`
      825b8d11
  19. 06 11月, 2019 1 次提交
  20. 30 9月, 2019 1 次提交
  21. 24 9月, 2019 1 次提交
    • A
      Do not use iterators in find() and emplace() methods of hash tables. · f3bde19b
      Alexander Kuzmenkov 提交于
      Instead, these methods return a pointer to the required data as they are
      stored inside the hash table. The caller uses overloaded functions to
      get the key and "mapped" values from this pointer. Such an interface
      avoids the need for constructing iterator-like wrapper objects, which is
      especially important for compound hash tables such as the future
      StringHashMap.
      f3bde19b
  22. 24 8月, 2019 1 次提交
  23. 21 8月, 2019 1 次提交
  24. 06 7月, 2019 1 次提交
  25. 05 7月, 2019 3 次提交
  26. 19 5月, 2019 1 次提交
  27. 11 3月, 2019 1 次提交
  28. 08 3月, 2019 1 次提交
  29. 01 3月, 2019 1 次提交
    • A
      A Proper lookup table that uses HashTable's API · 26ab5dd7
      Amos Bird 提交于
      This is the first step of allowing heterogeneous cells in hash tables.
      
      performance test results are
      
      ```
      
      1. HashMap<UInt16, UInt8, TrivialHash, HashTableFixedGrower<16>>;
      2. NewLookupMap<UInt16, UInt8>
      
      ResolutionWidth 30000 1 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................223550276.46
      ResolutionWidth 30000 2 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................248772721.24
      Best: 2 - 24877272124
      
      ResolutionWidth 100000 1 ..........................................................................................................................................................................................................................................................238498413.99
      ResolutionWidth 100000 2 ..........................................................................................................................................................................................................................................................261808889.98
      Best: 2 - 26180888998
      
      ResolutionWidth 300000 1 ...................................................................................239307348.81
      ResolutionWidth 300000 2 ...................................................................................257592761.30
      Best: 2 - 25759276130
      
      ResolutionWidth 1000000 1 .........................240144759.26
      ResolutionWidth 1000000 2 .........................257093531.91
      Best: 2 - 25709353191
      
      ResolutionWidth 5000000 1 .....241573260.35
      ResolutionWidth 5000000 2 .....259314162.79
      Best: 2 - 25931416279
      
      ResolutionDepth 30000 1 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................217108119.84
      ResolutionDepth 30000 2 .................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................249459504.41
      Best: 2 - 24945950441
      
      ResolutionDepth 100000 1 ..........................................................................................................................................................................................................................................................229065162.17
      ResolutionDepth 100000 2 ..........................................................................................................................................................................................................................................................253769105.64
      Best: 2 - 25376910564
      
      ResolutionDepth 300000 1 ...................................................................................233079225.18
      ResolutionDepth 300000 2 ...................................................................................256316273.78
      Best: 2 - 25631627378
      
      ResolutionDepth 1000000 1 .........................234184633.51
      ResolutionDepth 1000000 2 .........................261100491.57
      Best: 2 - 26110049157
      
      ResolutionDepth 5000000 1 .....233118795.66
      ResolutionDepth 5000000 2 .....252436160.41
      Best: 2 - 25243616041
      
      ```
      26ab5dd7
  30. 27 2月, 2019 1 次提交
  31. 20 2月, 2019 1 次提交
  32. 19 2月, 2019 1 次提交
  33. 11 2月, 2019 1 次提交
  34. 10 2月, 2019 1 次提交
  35. 24 1月, 2019 1 次提交
  36. 21 11月, 2018 1 次提交