Skip to content

Commit

Permalink
Add configurable parameters to geonames operations (#498)
Browse files Browse the repository at this point in the history
* add configurable params to leftover operations in geonames

Signed-off-by: Michael Oviedo <[email protected]>

* remove client operations

Signed-off-by: Michael Oviedo <[email protected]>

---------

Signed-off-by: Michael Oviedo <[email protected]>
(cherry picked from commit 1d3443a)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Nov 14, 2024
1 parent 6cb0a17 commit de13027
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions geonames/test_procedures/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -449,27 +449,27 @@
},
{
"operation": "significant_text_selective",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 2
"warmup-iterations": {{ significant_text_selective_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ significant_text_selective_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ significant_text_selective_target_throughput or target_throughput | default(2) | tojson }}
},
{
"operation": "significant_text_sampled_selective",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 20
"warmup-iterations": {{ significant_text_sampled_selective_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ significant_text_sampled_selective_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ significant_text_sampled_selective_target_throughput or target_throughput | default(20) | tojson }}
},
{
"operation": "significant_text_unselective",
"warmup-iterations": 50,
"iterations": 20,
"target-throughput": 0.04
"warmup-iterations": {{ significant_text_unselective_warmup_iterations or warmup_iterations | default(50) | tojson }},
"iterations": {{ significant_text_unselective_iterations or iterations | default(20) | tojson }},
"target-throughput": {{ significant_text_unselective_target_throughput or target_throughput | default(0.04) | tojson }}
},
{
"operation": "significant_text_sampled_unselective",
"warmup-iterations": 200,
"iterations": 100,
"target-throughput": 6
"warmup-iterations": {{ significant_text_sampled_unselective_warmup_iterations or warmup_iterations | default(200) | tojson }},
"iterations": {{ significant_text_sampled_unselective_iterations or iterations | default(100) | tojson }},
"target-throughput": {{ significant_text_sampled_unselective_target_throughput or target_throughput | default(6) | tojson }}
}
]
}

0 comments on commit de13027

Please sign in to comment.