Zhanwen Chen
Zhanwen Chen
I'm not sure if TensorFlow works with CUDA 9.1 at all. I tried CUDA 9.2 with tf r1.9 and r1.10, which failed (using tf.app.run) because tf was looking for libcublas.so.9.0...
It seems I need to verify building with CUDA 9.1. I'm pretty sure it doesn't work with 9.2 because I reinstalled Ubuntu when I tried that.
@ltupin exactly what happened to me. @evdcush at this point I'm pretty sure it's not a CUDA installation/version error as the only CUDA I ever installed was 9.2.
At this point I'm sure that tensorflow-gpu doesn't support anything other than CUDA 9.0. The reason anyone is not getting errors is that they had already had CUDA 9.0 before...
@jaredhanson Mongoose and Sequelize prefer promises over callbacks now, so in a `passport-local` strategy, the common pattern will become ```javascript // strategy.js ... User.findOne({ where: { email }) .then((existingUser) =>...
Same problem. The code here makes no sense because `re.search(regex_pattern, string_to_search)` takes two arguments but on line 310 here there is only the `pattern` argument, so of course the code...
@yuce After some digging, I think a deeper problem is that `pyswip` doesn't support SWI-Prolog 8.x, because the version-seeking functions in `pyswip/core.py` look for `libswipl.xx` and `libpl.xx` but those no...
I finally found a solution: the only SWI-Prolog version that has worked for me is Homebrew's `swi-prolog` 7.6.4 (latest 7.x.x stable release). Because Homebrew does not keep track of different...
If someone is still having the problem for torch-related issue together with create_extension, you should try this article: https://blog.csdn.net/cyy01234/article/details/112747610?ops_request_misc=&request_id=&biz_id=102&utm_term=TypeError:%20dist%20must%20be%20a%20Dist&utm_medium=distribute.pc_search_result.none-task-blog-2~all~sobaiduweb~default-6-112747610.pc_search_result_control_group&spm=1018.2226.3001.4187
Thank you! Your fix (https://github.com/Alameen688/fix-udacimak) totally worked for me!