原创 安裝glibc

下載glibc-2.23.tar.gz到服務器 1、先運行下面命令解壓到當前路徑: tar -zxvf glibc-2.17.tar.gz 在 https://ftp.gnu.org/gnu/glibc/ 或者 http://

原创 Python自定義包在linux服務器導入錯誤的解決辦法

在本地機器上跑python代碼,自己定義的文件進行導包運行是沒有問題,但是放到linux服務器上的時候就會提示 ImportError:No module named xxxx(要導入的文件包名) 在python導包的時候有三條

原创 NodeJS、NPM安裝配置步驟(windows版本)+Vue項目從搭建環境到打包上線

一、安裝教程 參考百度經驗 https://jingyan.baidu.com/article/48b37f8dd141b41a646488bc.html 轉載自https://blog.csdn.net/qq_41328247

原创 並行算法2-Introduction to High Performance Computing Something 高性能計算導論

The serial RAM model.串行內存模型 There is a single serial processor connected to memory. This processor issues instructi

原创 並行算法學習-1課程介紹

Syllabus The course topics are centered on three different ideas or extensions to the usual serial RAM model you en

原创 ModuleNotFoundError: No module named 'fused_layer_norm_cuda'

ModuleNotFoundError: No module named ‘fused_layer_norm_cuda’ 是apex安裝出了問題 安裝apex步驟如下, git clone https://github.com/N

原创 服務器OSError: [Errno 98] Address already in use

一直顯示服務器地址被佔用 查看了進程有哪些以及關閉可能的進程 查看當前進程 ps -fA | grep python 關閉正在佔用的進程 kill 16962 但是最後發現是學長使用了5000端口,所以我換一個端口就可以了 使用

原创 Linux啓動flask-app服務時提示錯誤:OSError: [Errno 98] Address already in use

Linux啓動服務時提示錯誤:Address already in use OSError: [Errno 98] Address already in use 解決方法: netstat命令 1、查看佔用端口進程的PID: n

原创 python和java使用grpc報錯io.grpc.StatusRuntimeException: UNIMPLEMENTED: Method not found!

從github上更新代碼以後,在IDEA中已經Maven中已經compile/install, 開啓python後臺和java後臺,但仍在新寫的接口報錯io.grpc.StatusRuntimeException: UNIMPLE

原创 github切換賬號

如果不知道現在本地Git用的帳號是什麼,你可以輸入 git config user.name 查看用戶名 git config user.email 查看用戶郵箱 修改用戶名和郵箱的命令 git config --global

原创 OpenMP--parallel computing 並行計算

B站,OpenMP介紹 B站-Introduction to OpenMP OpenMP 1、OpenMp是並已被廣泛接受的,用於共享內存並行系統的多處理器程序設計的一套指導性的編譯處理方案。 2、OpenMP支持的編程語言包括C

原创 什麼是接口

原创 Jupyter notebook文件默認保存路徑以及修改方法

https://www.cnblogs.com/zwt20120701/p/11253297.html 點贊 收藏 分享 文章舉報 huangq_qiao 發佈了18

原创 生成項目依賴包文件requirements.txt

將項目中所用到的依賴包列出,方便項目參與者環境的安裝 在當前項目目錄下 生成requirements文件:pip freeze >requirements.txt 執行requirements文件,安裝依賴包:pip instal

原创 linux 中的 nohup 命令(設置後臺進程): nohup: ignoring input and appending output to ‘nohup.out’

https://blog.csdn.net/jiangyu1013/article/details/81476184 https://www.cnblogs.com/bymo/p/7373349.html 點贊