jansel / opentuner

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

Bug report: Unicode is not supported for call_program() #133

Open wangx173 opened 5 years ago

wangx173 commented 5 years ago

In https://github.com/jansel/opentuner/commit/c9db469889b9b504d1f7affe2374b2750adafe88, I noticed the following change in interface.py

+ if type(cmd) in (str, unicode):
-  if type(cmd) in (str, str):

is it a bug since unicode is not supported anymore?