From 8a52634155f4cb90b0752b2dd70098de94bf0730 Mon Sep 17 00:00:00 2001 From: Rong Ma Date: Tue, 17 Dec 2024 14:39:27 +0000 Subject: [PATCH] remove unused --- .../workload/benchmark_velox/analysis/run.py | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 tools/workload/benchmark_velox/analysis/run.py diff --git a/tools/workload/benchmark_velox/analysis/run.py b/tools/workload/benchmark_velox/analysis/run.py deleted file mode 100644 index 7dedb1210201..000000000000 --- a/tools/workload/benchmark_velox/analysis/run.py +++ /dev/null @@ -1,26 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -import fire -import papermill as pm - -def exec(inputnb, outputnb, appid, disk, nic, tz, base_dir, name, comp_appid='', comp_base_dir='', comp_name='', proxy=''): - return pm.execute_notebook( - inputnb, - outputnb, - parameters=dict(appid=appid,disk=disk,nic=nic,tz=tz,base_dir=base_dir,name=name,comp_appid=comp_appid,comp_base_dir=comp_base_dir,comp_name=comp_name,proxy=proxy)) - -if __name__ == '__main__': - fire.Fire(exec)