jansel / opentuner

An extensible framework for program autotuning
http://opentuner.org/
MIT License
382 stars 112 forks source link

PatternSearch bug #148

Closed YanChurkin closed 3 years ago

YanChurkin commented 3 years ago

Hi! Here was fixed a PatterSearch technique bug.

https://github.com/jansel/opentuner/commit/001c61c6a3d08ad75987bb7cda12c894e7e50b20

Can you please explain this bug nature in more detail, I cannot find another issues in this repo?

jansel commented 3 years ago

.sort(cmp=...) no longer works in python3. The cmp= keywork arg was removed. That diff is a refactor to not use cmp=

YanChurkin commented 3 years ago

.sort(cmp=...) no longer works in python3. The cmp= keywork arg was removed. That diff is a refactor to not use cmp=

Thank you for explanation! Good luck!