"git@developer.sourcefind.cn:OpenDAS/ollama.git" did not exist on "5f74d1fd47ec396ba40f60aee0a1a585ad0fcb4f"
Commit 6ce0d6a5 authored by fengzch-das's avatar fengzch-das
Browse files

Merge branch 'fzc-dev' into 'master'

fix: update readme

See merge request !2
parents 563e40d8 dc6f5efe
...@@ -72,4 +72,5 @@ sh run_tests.sh ...@@ -72,4 +72,5 @@ sh run_tests.sh
## 注意 ## 注意
针对 eigen 需要做下面几处修改: 针对 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: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/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 + 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