access2rohit commented on a change in pull request #15868: fixing problem with 
existing Singleton Caching
URL: https://github.com/apache/incubator-mxnet/pull/15868#discussion_r313178184
 
 

 ##########
 File path: python/mxnet/runtime.py
 ##########
 @@ -77,11 +77,9 @@ class Features(collections.OrderedDict):
     def __new__(cls):
         if cls.instance is None:
             cls.instance = super(Features, cls).__new__(cls)
+            super(Features, cls.instance).__init__([(f.name, f) for f in 
feature_list()])
         return cls.instance
 
-    def __init__(self):
 
 Review comment:
   discussed offline. resolving!

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to