We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building NuPIC Core from source on 32 bit Linux, the SimpleTwoRegionNetworkIntrospection test case for nupic.bindings fails:
_____________ NetworkTest.testSimpleTwoRegionNetworkIntrospection ______________ self = <tests.network_test.NetworkTest testMethod=testSimpleTwoRegionNetworkIntrospection> def testSimpleTwoRegionNetworkIntrospection(self): # Create Network instance network = engine.Network() # Add two TestNode regions to network network.addRegion("region1", "TestNode", "") network.addRegion("region2", "TestNode", "") # Set dimensions on first region region1 = network.getRegions().getByName("region1") > region1.setDimensions(engine.Dimensions([1, 1])) network_test.py:89: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <nupic.bindings.engine_internal.Dimensions; >, args = ([1, 1],) def __init__(self, *args): """ __init__(self) -> Dimensions __init__(self, v) -> Dimensions __init__(self, x) -> Dimensions __init__(self, x, y) -> Dimensions __init__(self, x, y, z) -> Dimensions """ > this = _engine_internal.new_Dimensions(*args) E NotImplementedError: Wrong number or type of arguments for overloaded function 'new_Dimensions'. E Possible C/C++ prototypes are: E nupic::Dimensions::Dimensions() E nupic::Dimensions::Dimensions(std::vector< size_t,std::allocator< size_t > >) E nupic::Dimensions::Dimensions(size_t) E nupic::Dimensions::Dimensions(size_t,size_t) E nupic::Dimensions::Dimensions(size_t,size_t,size_t) ../src/nupic/bindings/engine_internal.py:613: NotImplementedError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When building NuPIC Core from source on 32 bit Linux, the SimpleTwoRegionNetworkIntrospection test case for nupic.bindings fails:
The text was updated successfully, but these errors were encountered: