Baunsgaard commented on code in PR #2093:
URL: https://github.com/apache/systemds/pull/2093#discussion_r1742388945


##########
src/main/python/systemds/operator/nodes/matrix.py:
##########
@@ -522,5 +522,12 @@ def replace(self, pattern: VALID_INPUT_TYPES, replacement: 
VALID_INPUT_TYPES) ->
         """
         return Matrix(self.sds_context, "replace", 
named_input_nodes={"target": self, "pattern": pattern, "replacement": 
replacement})
 
+    def cumsum(self) -> 'Matrix':
+        """ Column prefix-sum. (For row-prefix sum, use X.t().cumsum().t())

Review Comment:
   interesting, do we not support cumulative sum on rows?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@systemds.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to