-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
framework/e2e/PaddleLT_new/yaml/dy^dy2stcinn_train_inputspec_benchmark.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# 暂时没有开发dy2st_train_cinn_inputspec_perf | ||
testings: | ||
dy_train_perf: | ||
model_dtype: "float32" | ||
Loss: | ||
loss_name: "diy.loss.diy_loss.mean_loss" | ||
optimizer: | ||
optimizer_name: "diy.optimizer.diy_opt.naive_opt" | ||
params: | ||
opt_api: "paddle.optimizer.SGD" | ||
learning_rate: 0.00001 | ||
step: 1 | ||
|
||
dy2st_train_cinn_inputspec_perf: | ||
model_dtype: "float32" | ||
Loss: | ||
loss_name: "diy.loss.diy_loss.mean_loss" | ||
optimizer: | ||
optimizer_name: "diy.optimizer.diy_opt.naive_opt" | ||
params: | ||
opt_api: "paddle.optimizer.SGD" | ||
learning_rate: 0.00001 | ||
step: 1 | ||
|
||
compare: | ||
- | ||
baseline: 'dy_train_perf' | ||
latest: 'dy2st_train_cinn_inputspec_perf' |
28 changes: 28 additions & 0 deletions
28
framework/e2e/PaddleLT_new/yaml/dy^dy_train^export_st_inputspec^ppinfer_new_exc_pir.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
testings: | ||
dy_train: | ||
model_dtype: "float32" | ||
Loss: | ||
loss_name: "diy.loss.diy_loss.mean_loss" | ||
optimizer: | ||
optimizer_name: "diy.optimizer.diy_opt.naive_opt" | ||
params: | ||
opt_api: "paddle.optimizer.SGD" | ||
learning_rate: 0.00001 | ||
step: 5 | ||
return_net_instance: "True" # 测试engine会返回模型实例 | ||
|
||
jit_save_static_inputspec: | ||
use_upstream_net_instance: "True" # 获取上游模型实例而不是重新构建模型实例 | ||
model_dtype: "float32" | ||
|
||
paddle_infer_new_exc_pir: | ||
jit_save_type: "jit_save_static_inputspec" | ||
|
||
compare: | ||
- | ||
baseline: 'dy2st_train_static_inputspec' | ||
latest: 'paddle_infer_new_exc_pir' | ||
compare_method: "infer_compare" | ||
precision: | ||
delta: 0.00001 | ||
rtol: 0.000001 |