G.create_formats_() doesn't work

Hi, I found the g.create_formats_() doesn’t work.
Does anyone else have this problem?

>>> g.formats()  
 {'created': ['csc'], 'not created': []}
>>> g.create_formats_()
>>> g.formats()
{'created': ['csc'], 'not created': []}
>>> g.is_homogeneous
False
>>> g.is_block
False
>>> dgl.__version__
'0.6.1'

You can use g.formats(['csc', 'coo', 'csr']) to remove the format restriction. And then use g.create_formats_() to materialize the formats you wanted

1 Like

It works !
Thank you very much.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.