You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mnemonic.apache.org by ga...@apache.org on 2017/12/12 22:54:48 UTC

mnemonic git commit: MNEMONIC-429: Update README files to reflect TLP status

Repository: mnemonic
Updated Branches:
  refs/heads/master 82ddcaeb5 -> 81c9021f3


MNEMONIC-429: Update README files to reflect TLP status


Project: http://git-wip-us.apache.org/repos/asf/mnemonic/repo
Commit: http://git-wip-us.apache.org/repos/asf/mnemonic/commit/81c9021f
Tree: http://git-wip-us.apache.org/repos/asf/mnemonic/tree/81c9021f
Diff: http://git-wip-us.apache.org/repos/asf/mnemonic/diff/81c9021f

Branch: refs/heads/master
Commit: 81c9021f3817f9c3f2b26a3dace85cd1dc3ae633
Parents: 82ddcae
Author: Wang, Gang(Gary) <ga...@intel.com>
Authored: Tue Dec 12 14:53:50 2017 -0800
Committer: Wang, Gang(Gary) <ga...@intel.com>
Committed: Tue Dec 12 14:53:50 2017 -0800

----------------------------------------------------------------------
 README.md                                              | 4 ++--
 docker/README.md                                       | 8 ++++----
 mnemonic-benches/mnemonic-spark-kmeans-bench/README.md | 4 ++--
 mnemonic-examples/README.md                            | 4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mnemonic/blob/81c9021f/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 4786b84..fc11199 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,8 @@
-<img src="https://mnemonic.incubator.apache.org/img/mnemonic_logo.png" width=200 />
+<img src="https://mnemonic.apache.org/img/mnemonic_logo.png" width=200 />
 
 ================================
 
-## <a href="https://mnemonic.incubator.apache.org/" target="_blank">Mnemonic Official Website</a>
+## <a href="https://mnemonic.apache.org/" target="_blank">Mnemonic Official Website</a>
 
 [![Build Status](https://travis-ci.org/NonVolatileComputing/incubator-mnemonic.svg?branch=master)](https://travis-ci.org/NonVolatileComputing/incubator-mnemonic)
 

http://git-wip-us.apache.org/repos/asf/mnemonic/blob/81c9021f/docker/README.md
----------------------------------------------------------------------
diff --git a/docker/README.md b/docker/README.md
index f81c4a1..9af6bde 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -1,4 +1,4 @@
-<img src="https://mnemonic.incubator.apache.org/img/mnemonic_logo.png" width=200 />
+<img src="https://mnemonic.apache.org/img/mnemonic_logo.png" width=200 />
 
 ================================ 
 
@@ -33,8 +33,8 @@ For old version docker v1.10 below, Please replace ARG with ENV and set its valu
 Build from git repository
 
 ```bash
-  $ docker build -t NAME[:TAG] https://github.com/apache/incubator-mnemonic.git#:docker/docker-CentOS
-  $ docker build -t NAME[:TAG] https://github.com/apache/incubator-mnemonic.git#:docker/docker-Ubuntu
+  $ docker build -t NAME[:TAG] https://github.com/apache/mnemonic.git#:docker/docker-CentOS
+  $ docker build -t NAME[:TAG] https://github.com/apache/mnemonic.git#:docker/docker-Ubuntu
 ```
 
 -- OR --
@@ -68,7 +68,7 @@ Run image:
 ### Sharing host project folder to Dock container for IDEs e.g. Eclipse, Intellij IDEA
 
 ```bash
-  $ docker run -v <hostdir>/incubator-mnemonic:/ws/incubator-mnemonic -it NAME[:TAG]
+  $ docker run -v <hostdir>/mnemonic:/ws/mnemonic -it NAME[:TAG]
 ```
 Note: this command will override the container's project folder, you can use another name to avoid it.
 

http://git-wip-us.apache.org/repos/asf/mnemonic/blob/81c9021f/mnemonic-benches/mnemonic-spark-kmeans-bench/README.md
----------------------------------------------------------------------
diff --git a/mnemonic-benches/mnemonic-spark-kmeans-bench/README.md b/mnemonic-benches/mnemonic-spark-kmeans-bench/README.md
index fd345ec..2fc16c6 100644
--- a/mnemonic-benches/mnemonic-spark-kmeans-bench/README.md
+++ b/mnemonic-benches/mnemonic-spark-kmeans-bench/README.md
@@ -30,8 +30,8 @@ spark.jars <dir>/target/service-dist/mnemonic-pmalloc-service-<version>-linux-x8
 
 ```bash
   # regular version
-  $ $SPARK_HOME/bin/spark-submit --class org.apache.mnemonic.bench.RegularKMeans --conf spark.durable-basedir=./mne incubator-mnemonic/mnemonic-benches/mnemonic-spark-kmeans-bench/target/mnemonic-spark-kmeans-bench-<version>.jar <path-to-dataset-file>
+  $ $SPARK_HOME/bin/spark-submit --class org.apache.mnemonic.bench.RegularKMeans --conf spark.durable-basedir=./mne mnemonic/mnemonic-benches/mnemonic-spark-kmeans-bench/target/mnemonic-spark-kmeans-bench-<version>.jar <path-to-dataset-file>
 
   # durable version
-  $ $SPARK_HOME/bin/spark-submit --class org.apache.mnemonic.bench.DurableKMeans --conf spark.durable-basedir=./mne incubator-mnemonic/mnemonic-benches/mnemonic-spark-kmeans-bench/target/mnemonic-spark-kmeans-bench-<version>.jar <path-to-dataset-file>
+  $ $SPARK_HOME/bin/spark-submit --class org.apache.mnemonic.bench.DurableKMeans --conf spark.durable-basedir=./mne mnemonic/mnemonic-benches/mnemonic-spark-kmeans-bench/target/mnemonic-spark-kmeans-bench-<version>.jar <path-to-dataset-file>
 ```

http://git-wip-us.apache.org/repos/asf/mnemonic/blob/81c9021f/mnemonic-examples/README.md
----------------------------------------------------------------------
diff --git a/mnemonic-examples/README.md b/mnemonic-examples/README.md
index b4d6af6..c023b50 100644
--- a/mnemonic-examples/README.md
+++ b/mnemonic-examples/README.md
@@ -1,6 +1,6 @@
 # Mnemonic Examples
 
-The examples demonstrate how to use the [Mnemonic](http://mnemonic.incubator.apache.org/).
+The examples demonstrate how to use the [Mnemonic](http://mnemonic.apache.org/).
 
 To run the default example [Main](src/main/java/org/apache/mnemonic/examples/Main.java):
 ```bash
@@ -15,4 +15,4 @@ To run a specific example by providing the example name under the [examples](src
 ```
 
 
-For how to run the examples in the [Docker](https://www.docker.com), please refer to the [Docker usage](http://mnemonic.incubator.apache.org/docs/docker.html) at the documentation of Mnemonic.
+For how to run the examples in the [Docker](https://www.docker.com), please refer to the [Docker usage](http://mnemonic.apache.org/docs/docker.html) at the documentation of Mnemonic.