Skip to content

jrivers96/fast_count

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fast_count

Usage Example: iquery -aq "fast_count(A)"

How does the fast count handle overlapping arrays?

In SciDB, in "Array.cpp: ConstChunk* ConstChunk::materialize() const "

if (!getArrayDesc().hasOverlap()) { materializedChunk->setCount(count); }

Therefore, the count is only set if there array does not have overlap. If the count is not set, the chunks are counted via an iterator.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 61.8%
  • Makefile 21.2%
  • Shell 11.1%
  • CMake 5.9%