Skip to content

Commit d99e01a

Browse files
committed
Add seed to FCPS
1 parent 5ae996f commit d99e01a

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

Clustering_conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metric_collectors:
2424
software_environment: "fcps"
2525
repository:
2626
url: https://github.com/imallona/clustering_report
27-
commit: df50d47 #75d799b # 1d6bdf5
27+
commit: ccdaf84
2828
inputs:
2929
- metrics.scores
3030
outputs:
@@ -165,7 +165,7 @@ stages:
165165
software_environment: "fcps"
166166
repository:
167167
url: https://github.com/imallona/clustbench_fcps
168-
commit: 272fa5f
168+
commit: 8a47a0d
169169
parameters:
170170
# - values: ["--method", "FCPS_AdaptiveDensityPeak"] # not in conda
171171
- values: ["--method", "FCPS_Minimax"]

Clustering_oras.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ metric_collectors:
2424
software_environment: "fcps"
2525
repository:
2626
url: https://github.com/imallona/clustering_report
27-
commit: df50d47 # 75d799b # 1d6bdf5
27+
commit: ccdaf84
2828
inputs:
2929
- metrics.scores
3030
outputs:
@@ -165,7 +165,7 @@ stages:
165165
software_environment: "fcps"
166166
repository:
167167
url: https://github.com/imallona/clustbench_fcps
168-
commit: 272fa5f
168+
commit: 8a47a0d
169169
parameters:
170170
# - values: ["--method", "FCPS_AdaptiveDensityPeak"] # not in conda
171171
- values: ["--method", "FCPS_Minimax"]

Makefile

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1-
MAX_CORES ?= 12
1+
MAX_CORES ?= 50
22

33
# with continue on error (-k)
44
OB_CMD=ob run benchmark -k --local --cores ${MAX_CORES} --yes
55

66
# prepare_apptainer_env:
77
# cd envs && bash build_singularity.sh
88

9-
run_with_apptainer_unpinned_oras:
10-
${OB_CMD} -b Clustering_oras.yml
11-
mv out out_singularity_$(shell date +'%Y%m%d%H%M')
12-
run_with_conda:
9+
all: run_with_default_conda run_with_unpinned_oras
10+
11+
run_with_default_conda:
1312
${OB_CMD} -b Clustering_conda.yml
1413
mv out out_conda_$(shell date +'%Y%m%d%H%M')
1514

15+
run_with_unpinned_oras:
16+
${OB_CMD} -b Clustering_oras.yml
17+
mv out out_singularity_$(shell date +'%Y%m%d%H%M')
18+
19+
1620
## knit_marks_report:

0 commit comments

Comments
 (0)