Skip to content

Contribution wiki

chunying edited this page Dec 8, 2020 · 1 revision
  1. 提交代码前,检查是否有出现 100644 → 100755, 出现的原因是执行了"chmod +x", 我们只关心源代码的文本内容,因此chmod产生的变化应该忽略,如果你已经commit,解决办法如下:
  • how to revert 100644 → 100755 commits
on your repo's root, run : find . -type f | xargs chmod -x
commit this change on files : commit -n -m 'fix: files permission from 100755 to 100644'
then with vim .git/config, set filemode option to false
[core]
        filemode = false

或者直接

git config --add core.filemode false
  1. 关于新注册op的测试, 教程中src/op目录下的代码用于自测op_gen生成代码的正确性,该自测代码不用提交。提交的测试代码参照 test/test_pool.cpp. 提交时可在网络中验证正确性,通过环境变量export DEBUG_INFO=1,显示"[INFO]: runing Autokernel AutoKernel_Func...",提交时附上截图。

Getting Started

Articles

Contribution

Communication

  • Coming soon
Clone this wiki locally