Inclusive scan using OpenCL 2.0

I have a work group of 64 items, and a local array of 64 uints.
I would like to perform an inclusive
prefix scan on each group of 8 locations in array:

i) inclusive scan of locations 0,1,2,…7
i) inclusive scan of locations 8,9,10,…15
.
.
.
i) inclusive scan of locations 56,57,58,…63

I can do this in my own method, but is it possible to use the new “work_group_scan_inclusive”
operation to do this ?