You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/12/15 14:09:53 UTC

[23/50] [abbrv] ignite git commit: IGNITE-7118 performance measurement for distributed k-means clustering

IGNITE-7118 performance measurement for distributed k-means clustering

this closes #3211


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/9a8b95ed
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/9a8b95ed
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/9a8b95ed

Branch: refs/heads/ignite-zk-ce
Commit: 9a8b95ed3762aef1ee4b63aa203971ab6db156a0
Parents: 156e167
Author: Oleg Ignatenko <oi...@gridgain.com>
Authored: Tue Dec 12 17:19:38 2017 +0300
Committer: Yury Babak <yb...@gridgain.com>
Committed: Tue Dec 12 17:19:38 2017 +0300

----------------------------------------------------------------------
 modules/yardstick/config/benchmark-ml.properties                  | 1 +
 .../yardstick/ml/math/IgniteAbstractMatrixMulBenchmark.java       | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/9a8b95ed/modules/yardstick/config/benchmark-ml.properties
----------------------------------------------------------------------
diff --git a/modules/yardstick/config/benchmark-ml.properties b/modules/yardstick/config/benchmark-ml.properties
index ef20773..dbf90dd 100644
--- a/modules/yardstick/config/benchmark-ml.properties
+++ b/modules/yardstick/config/benchmark-ml.properties
@@ -75,6 +75,7 @@ sm=PRIMARY_SYNC
 # Note that each benchmark is set to run for 300 seconds (5 min) with warm-up set to 60 seconds (1 minute).
 CONFIGS="\
 -cfg ${SCRIPT_DIR}/../config/ignite-localhost-config.xml -nn ${nodesNum} -b ${b} -w ${w} -d ${d} -t ${t} -sm ${sm} -dn IgniteKMeansLocalClustererBenchmark -sn IgniteNode -ds ${ver}kmeans-local-clusterer-${b}-backup,\
+-cfg ${SCRIPT_DIR}/../config/ignite-localhost-config.xml -nn ${nodesNum} -b ${b} -w ${w} -d ${d} -t ${t} -sm ${sm} -dn IgniteKMeansDistributedClustererBenchmark -sn IgniteNode -ds ${ver}kmeans-distributed-clusterer-${b}-backup,\
 -cfg ${SCRIPT_DIR}/../config/ignite-localhost-config.xml -nn ${nodesNum} -b ${b} -w ${w} -d ${d} -t ${t} -sm ${sm} -dn IgniteOLSMultipleLinearRegressionBenchmark -sn IgniteNode -ds ${ver}ols-multiple-linear-regression-${b}-backup,\
 -cfg ${SCRIPT_DIR}/../config/ignite-localhost-config.xml -nn ${nodesNum} -b ${b} -w ${w} -d ${d} -t ${t} -sm ${sm} -dn IgniteSingularValueDecompositionBenchmark -sn IgniteNode -ds ${ver}singular-value-decomposition-${b}-backup,\
 -cfg ${SCRIPT_DIR}/../config/ignite-localhost-config.xml -nn ${nodesNum} -b ${b} -w ${w} -d ${d} -t ${t} -sm ${sm} -dn IgniteCholeskyDecompositionBenchmark -sn IgniteNode -ds ${ver}cholesky-decomposition-${b}-backup,\

http://git-wip-us.apache.org/repos/asf/ignite/blob/9a8b95ed/modules/yardstick/src/main/ml/org/apache/ignite/yardstick/ml/math/IgniteAbstractMatrixMulBenchmark.java
----------------------------------------------------------------------
diff --git a/modules/yardstick/src/main/ml/org/apache/ignite/yardstick/ml/math/IgniteAbstractMatrixMulBenchmark.java b/modules/yardstick/src/main/ml/org/apache/ignite/yardstick/ml/math/IgniteAbstractMatrixMulBenchmark.java
index 31162c3..9921e36 100644
--- a/modules/yardstick/src/main/ml/org/apache/ignite/yardstick/ml/math/IgniteAbstractMatrixMulBenchmark.java
+++ b/modules/yardstick/src/main/ml/org/apache/ignite/yardstick/ml/math/IgniteAbstractMatrixMulBenchmark.java
@@ -42,8 +42,9 @@ abstract class IgniteAbstractMatrixMulBenchmark extends IgniteAbstractBenchmark
     private double[][] dataRect2 = createAndFill(SIZE, SIZE / 2);
 
     /** */
+    @SuppressWarnings("unused")
     @IgniteInstanceResource
-    Ignite ignite;
+    private Ignite ignite;
 
     /** {@inheritDoc} */
     @Override public boolean test(Map<Object, Object> ctx) throws Exception {