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

fix: update readme

parent 1a8ddcca
......@@ -73,3 +73,4 @@ sh run_tests.sh
针对 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)));``
+ lietorch/eigen/Eigen/src/Core/MathFunctions.h:578 行将 ``EIGEN_USING_STD(arg);`` 修改为 ``using std::arg;``
\ 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