HUJI-Deep / simnets-tf

SimNets implementation in TensorFlow
MIT License
7 stars 3 forks source link

Tests fail on school's computers #1

Closed orsharir closed 7 years ago

orsharir commented 7 years ago

I've tried again to compile the project. Compilation was successful, but when running make test_simnet_ops, all of the tests fail. Here is the log of running this command: simnets-tf-errors.txt

It appears that the failed tests are all related to the gpu -- or the cpu isn't tested when running this command?

elhanan7 commented 7 years ago

None of the gpu stuff worked so I suspected it had something to do with the different cuda architecture on the school computers. When I took the architecture flags from the tensorflow cmake project I got the tests to pass on gsm. fixed with commit a697275e02940cbc27c1588440dab915b8f01b51 simnet_tests

orsharir commented 7 years ago

Indeed now all the tests pass. Thanks!