Commit c9f7f675 authored by fengzch-das's avatar fengzch-das
Browse files

update:update readme

parent e867de79
...@@ -69,5 +69,7 @@ Type "help", "copyright", "credits" or "license" for more information. ...@@ -69,5 +69,7 @@ Type "help", "copyright", "credits" or "license" for more information.
sh run_tests.sh sh run_tests.sh
``` ```
## Known Issue ## 注意
- 针对 eigen 需要做下面几处修改:
+ lietorch/eigen/Eigen/src/Core/arch/Default/Half.h:669 行将 ``return half(::hlog(a)); 修改为 return half(::hlog(float(a)));``
+ lietorch/eigen/Eigen/src/Core/arch/Default/Half.h:776 行将 ``return x + (y-x) * half(float(std::rand()) / float(RAND_MAX));`` 修改为 ``return half(x + (y-x) * half(float(std::rand()) / float(RAND_MAX)));``
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment