You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by wa...@apache.org on 2018/05/20 15:18:46 UTC

[1/2] incubator-singa git commit: SINGA-364 V1.2 Release Preparation

Repository: incubator-singa
Updated Branches:
  refs/heads/master c5b454d1e -> c761dc858


SINGA-364 V1.2 Release Preparation

Add license headers


Project: http://git-wip-us.apache.org/repos/asf/incubator-singa/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-singa/commit/760df2f6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-singa/tree/760df2f6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-singa/diff/760df2f6

Branch: refs/heads/master
Commit: 760df2f6dd080b7213d4d0a5e05c2473c56a2572
Parents: c5b454d
Author: wang wei <wa...@comp.nus.edu.sg>
Authored: Sun May 20 20:37:34 2018 +0700
Committer: wang wei <wa...@comp.nus.edu.sg>
Committed: Sun May 20 20:42:08 2018 +0700

----------------------------------------------------------------------
 examples/autograd/mlp.py       | 19 +++++++++++++++++++
 examples/autograd/mnist_cnn.py | 19 +++++++++++++++++++
 python/singa/autograd.py       | 18 ++++++++++++++++++
 tool/conda/cpu/meta.yaml       | 20 ++++++++++++++++++++
 tool/conda/gpu/meta.yaml       | 19 +++++++++++++++++++
 tool/conda/singa/meta.yaml     | 19 +++++++++++++++++++
 6 files changed, 114 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/760df2f6/examples/autograd/mlp.py
----------------------------------------------------------------------
diff --git a/examples/autograd/mlp.py b/examples/autograd/mlp.py
index 0e42d63..3910369 100644
--- a/examples/autograd/mlp.py
+++ b/examples/autograd/mlp.py
@@ -1,3 +1,22 @@
+#
+# 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.
+#
+
 from singa import tensor
 from singa.tensor import Tensor
 from singa import autograd

http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/760df2f6/examples/autograd/mnist_cnn.py
----------------------------------------------------------------------
diff --git a/examples/autograd/mnist_cnn.py b/examples/autograd/mnist_cnn.py
index 3ab8b62..7b72c75 100644
--- a/examples/autograd/mnist_cnn.py
+++ b/examples/autograd/mnist_cnn.py
@@ -1,3 +1,22 @@
+#
+# 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 numpy as np
 import argparse
 import os

http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/760df2f6/python/singa/autograd.py
----------------------------------------------------------------------
diff --git a/python/singa/autograd.py b/python/singa/autograd.py
index fc438ab..83362e2 100644
--- a/python/singa/autograd.py
+++ b/python/singa/autograd.py
@@ -1,3 +1,21 @@
+#
+# 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.
+#
 
 from __future__ import division
 

http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/760df2f6/tool/conda/cpu/meta.yaml
----------------------------------------------------------------------
diff --git a/tool/conda/cpu/meta.yaml b/tool/conda/cpu/meta.yaml
index d24e085..0c7a38d 100644
--- a/tool/conda/cpu/meta.yaml
+++ b/tool/conda/cpu/meta.yaml
@@ -1,3 +1,23 @@
+#
+# 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.
+#
+
+
 package:
   name: singa-cpu
   version: 1.1.1

http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/760df2f6/tool/conda/gpu/meta.yaml
----------------------------------------------------------------------
diff --git a/tool/conda/gpu/meta.yaml b/tool/conda/gpu/meta.yaml
index 96435d5..7c1a9a5 100644
--- a/tool/conda/gpu/meta.yaml
+++ b/tool/conda/gpu/meta.yaml
@@ -1,3 +1,22 @@
+#
+# 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.
+#
+
 package:
   name: singa-gpu
   version: 1.1.1

http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/760df2f6/tool/conda/singa/meta.yaml
----------------------------------------------------------------------
diff --git a/tool/conda/singa/meta.yaml b/tool/conda/singa/meta.yaml
index de542cd..997341c 100644
--- a/tool/conda/singa/meta.yaml
+++ b/tool/conda/singa/meta.yaml
@@ -1,3 +1,22 @@
+#
+# 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.
+#
+
 package:
   name: singa
   version: "{{ GIT_DESCRIBE_TAG }}"


[2/2] incubator-singa git commit: SINGA-364 V1.2 Release Preparation

Posted by wa...@apache.org.
SINGA-364 V1.2 Release Preparation

Add the release note file for v1.2


Project: http://git-wip-us.apache.org/repos/asf/incubator-singa/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-singa/commit/c761dc85
Tree: http://git-wip-us.apache.org/repos/asf/incubator-singa/tree/c761dc85
Diff: http://git-wip-us.apache.org/repos/asf/incubator-singa/diff/c761dc85

Branch: refs/heads/master
Commit: c761dc8580ca18dd97b986dd63c362bbd2dc63e6
Parents: 760df2f
Author: wang wei <wa...@comp.nus.edu.sg>
Authored: Sun May 20 22:15:16 2018 +0700
Committer: wang wei <wa...@comp.nus.edu.sg>
Committed: Sun May 20 22:15:16 2018 +0700

----------------------------------------------------------------------
 doc/en/releases/RELEASE_NOTES_1.2.0.md | 55 +++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-singa/blob/c761dc85/doc/en/releases/RELEASE_NOTES_1.2.0.md
----------------------------------------------------------------------
diff --git a/doc/en/releases/RELEASE_NOTES_1.2.0.md b/doc/en/releases/RELEASE_NOTES_1.2.0.md
new file mode 100644
index 0000000..87261d5
--- /dev/null
+++ b/doc/en/releases/RELEASE_NOTES_1.2.0.md
@@ -0,0 +1,55 @@
+# singa-incubating-1.2.0 Release Notes
+
+---
+
+SINGA is a general distributed deep learning platform for training big deep
+learning models over large datasets.
+
+This release includes following features:
+
+  * Core components
+      * [SINGA-290] Upgrade to Python 3
+      * [SINGA-341] Added stride functionality to tensors for CPP
+      * [SINGA-347] Create a function that supports einsum
+      * [SINGA-351] Added stride support and cudnn codes to cuda
+
+  * Model components
+      * [SINGA-300] Add residual networks for imagenet classification
+      * [SINGA-312] Rename layer parameters
+      * [SINGA-313] Add L2 norm layer
+      * [SINGA-315] Reduce memory footprint by Python generator for parameter
+      * [SINGA-316] Add SigmoidCrossEntropy
+      * [SINGA-324] Extend RNN layer to accept variant seq length across batches
+      * [SINGA-328] Add VGG models for ImageNet classification
+      * [SINGA-329] Support layer freezing during training (fine-tuning)
+      * [SINGA-346] Update cudnn from V5 to V7
+      * [SINGA-349] Create layer operations for autograd
+
+  * Utility functions and CI
+      * [SINGA-274] Improve Debian packaging with CPack
+      * [SINGA-303] Create conda packages
+      * [SINGA-326] Add Inception V4 for ImageNet classification
+      * [SINGA-337] Add test cases for code
+      * [SINGA-348] Support autograd MLP Example
+      * [SINGA-345] Update Jenkins and fix bugs in compliation
+      * [SINGA-354] Update travis scripts to use conda-build for all platforms
+      * [SINGA-358] Consolidated RUN steps and cleaned caches in Docker containers
+      * [SINGA-359] Create alias for conda packages
+
+  * Documentation and usability
+      * [SINGA-223] Fix side navigation menu in the website
+      * [SINGA-294] Add instructions to run CUDA unit tests on Windows
+      * [SINGA-305] Add jupyter notebooks for SINGA V1 tutorial
+      * [SINGA-319] Fix link errors on the index page
+      * [SINGA-352] Complete SINGA documentation in Chinese version
+      * [SINGA-361] Add git instructions for contributors and committers
+      * [SINGA-363] Add DenseNet for Imagenet classification
+
+  * Bugs fixed
+      * [Singa-330] fix openblas building on i7 7700k
+      * [SINGA-331] Fix the bug of tensor division operation
+      * [SINGA-350] Error from python3 test
+      * [SINGA-356] Error using travis tool to build SINGA on mac os
+      * [SINGA-363] Fix some bugs in imagenet examples
+      * [SINGA-368] Fix the bug in Cifar10 examples
+      * [SINGA-369] the errors of examples in testing