Sable / HorsePower

Optimizing database queries with array programming
18 stars 6 forks source link

Potential performance issues [2019-03] #14

Open wukefe opened 5 years ago

wukefe commented 5 years ago

Overview

The source file, profile-q5-single.txt, contains the profiled information generated by callgrind/cachegrind for query 5. After looking into the result, we identify several potential issues as shown below.

List of Potential Issues

wukefe commented 5 years ago

Update

Use bit shift instead of basic arithmetic operations, e.g. use size>>4 instead of size%16.