Repository: systemml Updated Branches: refs/heads/gh-pages 135cf394c -> ddce20266
[MINOR] Fixed failing GPU tests and updated the documentation. Project: http://git-wip-us.apache.org/repos/asf/systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/systemml/commit/ddce2026 Tree: http://git-wip-us.apache.org/repos/asf/systemml/tree/ddce2026 Diff: http://git-wip-us.apache.org/repos/asf/systemml/diff/ddce2026 Branch: refs/heads/gh-pages Commit: ddce2026683e9e7213f0656b28aef6468496309c Parents: 135cf39 Author: Niketan Pansare <[email protected]> Authored: Thu Aug 16 09:56:42 2018 -0700 Committer: Niketan Pansare <[email protected]> Committed: Thu Aug 16 09:56:42 2018 -0700 ---------------------------------------------------------------------- dml-language-reference.md | 2 ++ index.md | 1 + 2 files changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/systemml/blob/ddce2026/dml-language-reference.md ---------------------------------------------------------------------- diff --git a/dml-language-reference.md b/dml-language-reference.md index 8a89d99..924336a 100644 --- a/dml-language-reference.md +++ b/dml-language-reference.md @@ -1525,6 +1525,8 @@ Hence, the images are internally represented as a matrix with dimension (N, C * | batch_norm2d | input | [batch_size X num_channels* height_image* width_image] | | [batch_size X num_channels* height_image* width_image] | scale, shift, exponentialMovingAverage_Mean, exponentialMovingAverage_Variance, mode, epsilon, momentum | Performs batch normalization operation (outputs: updated exponential moving average mean and variance, cache of the batch mean and variance) | | batch_norm2d_backward | input, dout | [batch_size X num_channels* height_image* width_image] | [batch_size X num_channels* height_image* width_image] | [batch_size X num_channels* height_image* width_image] | scale, epsilon, cache_mean (from forward), cache_inv_var (from forward) | Computed backpropagation error for batch normalization operation | +Note: the builtin functions `batch_norm2d` and `batch_norm2d_backward` are deprecated and will be removed in the next release. The `lstm` builtin function is in experimental phase and is only supported for the GPU backend. + Examples: | Function | Parameters | Visualization / Equivalent DML | http://git-wip-us.apache.org/repos/asf/systemml/blob/ddce2026/index.md ---------------------------------------------------------------------- diff --git a/index.md b/index.md index fdb0d8b..8117735 100644 --- a/index.md +++ b/index.md @@ -82,3 +82,4 @@ command-line interface. * [Troubleshooting Guide](troubleshooting-guide) - Troubleshoot various issues related to SystemML. * [Release Process](release-process) - Description of the SystemML release process. * [Using Native BLAS](native-backend) in SystemML. +* [Using GPU backend](gpu) in SystemML.
