Sky007FR

Results 1 comments of Sky007FR

You have to saturate to 2^30 and not 2^31. It works with this code : ``` @property def affinity_mask(self): return str(2**self.index) if self.index < 31 else str(2**30) ``` 0 to...