From 5a0e82af29e206cc29f89ffb0a49079f52474be1 Mon Sep 17 00:00:00 2001 From: MRXLT Date: Tue, 7 Jul 2020 13:30:47 +0800 Subject: [PATCH] fix ci --- .../grpc_impl_example/criteo_ctr_with_cube/test_server.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python/examples/grpc_impl_example/criteo_ctr_with_cube/test_server.py b/python/examples/grpc_impl_example/criteo_ctr_with_cube/test_server.py index 361d5a59..8a3bee4e 100755 --- a/python/examples/grpc_impl_example/criteo_ctr_with_cube/test_server.py +++ b/python/examples/grpc_impl_example/criteo_ctr_with_cube/test_server.py @@ -33,5 +33,9 @@ server = Server() server.set_op_sequence(op_seq_maker.get_op_sequence()) server.set_num_threads(4) server.load_model_config(sys.argv[1], sys.argv[2]) -server.prepare_server(workdir="work_dir1", port=9292, device="cpu") +server.prepare_server( + workdir="work_dir1", + port=9292, + device="cpu", + cube_conf="./cube/conf/cube.conf") server.run_server() -- GitLab