trochscript模型初次執行過慢解決方法

2021-10-11 02:46:29 字數 578 閱讀 7537

在c++中首次使用torchscript的模型時會進行一些優化處理,導致首次執行時間過慢,可通過如下設定遮蔽優化處理,從而避免過慢問題

c++ 示例

#include // one-stop header.

#include torch::jit::getprofilingmode() = false;

torch::jit::getexecutormode() = false;

torch::jit::setgraphexecutoroptimize(false);

std::shared_ptrmodule_ = std::make_shared(

torch::jit::load(

workspace +

"../superglue/models/model/superglue_indoor.pt",

device_));

python中對應命令
torch._c._jit_set_profiling_mode(

)torch.jit.optimized_execution(

)

初次使用activeMQ主題模型的一點配置分享

最近由於剛練手訊息中介軟體,就拿了乙個activemq試試,在練習的過程中遇到了比較明顯的問題 就是主題模型下的訊息佇列,持久化訂閱者的實現。具體表象就是,我的接收者重啟後接收不到傳送者已傳送而未消費的訊息,非得接收者先啟動好,然後傳送者推送訊息,才可以接收到。這不是我想要的,實際是要求接收者重啟後...

mysql 初次進入 怎麼初次進入mysql

1.登入mysql 登入mysql的命令是mysql,mysql 的使用語法如下 mysql u username h host p password dbname username 與 password 分別是 mysql 的使用者名稱與密碼,mysql的初始管理帳號是root,沒有密碼,注意 這...

Linux初次學習

1 define first tss entry 4 2 define first ldt entry first tss entry 1 3 define tss n unsigned long n 4 first tss entry 3 4 define ldt n unsigned long ...