-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR contains the code allowing the nightly automated runs of benchmarks for `cuML`. Authors: - Victor Lafargue (https://github.com/viclafargue) - Nanthini (https://github.com/Nanthini10) Approvers: - Dante Gama Dessavre (https://github.com/dantegd) URL: #4414
- Loading branch information
1 parent
fcad23f
commit 1dd32dc
Showing
21 changed files
with
1,466 additions
and
148 deletions.
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
Empty file.
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,68 @@ | ||
# | ||
# Copyright (c) 2021-2022, NVIDIA CORPORATION. | ||
# | ||
# Licensed 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 pytest | ||
from .utils.utils import _benchmark_algo, fixture_generation_helper | ||
from .utils.utils import bench_step # noqa: F401 | ||
from .. import datagen | ||
|
||
# | ||
# Core tests | ||
# | ||
|
||
|
||
@pytest.fixture(**fixture_generation_helper({ | ||
'n_samples': [1000, 10000], | ||
'n_features': [5, 500] | ||
})) | ||
def classification(request): | ||
data = datagen.gen_data( | ||
'classification', | ||
'cupy', | ||
n_samples=request.param['n_samples'], | ||
n_features=request.param['n_features'] | ||
) | ||
return data, { | ||
'dataset_type': 'classification', | ||
**request.param | ||
} | ||
|
||
|
||
def bench_logistic_regression(gpubenchmark, bench_step, # noqa: F811 | ||
classification): | ||
_benchmark_algo(gpubenchmark, 'LogisticRegression', | ||
bench_step, classification) | ||
|
||
|
||
def bench_mbsgcclf(gpubenchmark, bench_step, classification): # noqa: F811 | ||
_benchmark_algo(gpubenchmark, 'MBSGDClassifier', | ||
bench_step, classification) | ||
|
||
|
||
def bench_knnclassifier(gpubenchmark, bench_step, # noqa: F811 | ||
classification): | ||
_benchmark_algo(gpubenchmark, 'KNeighborsClassifier', | ||
bench_step, classification) | ||
|
||
|
||
def bench_svc_linear(gpubenchmark, bench_step, classification): # noqa: F811 | ||
_benchmark_algo(gpubenchmark, 'SVC-Linear', | ||
bench_step, classification) | ||
|
||
|
||
def bench_svc_rbf(gpubenchmark, bench_step, classification): # noqa: F811 | ||
_benchmark_algo(gpubenchmark, 'SVC-RBF', | ||
bench_step, classification) |
Oops, something went wrong.