question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Error on testing test_multibit_multitile in bismo/src/main/resources/cpp/app/BISMOTests.hpp

See original GitHub issue

Hello,

First thank you for your effort on developing bismo accelerator and all runtime lib. I face some test failure on bismo testing.

The following is my situation (I use PYNQ Z1 board with v2.4 pynq image):

[1bit config output error] When I config bismo to run alexnet 96, 363, 3025, 256, 2400, 729, 384, 2304, 169, 384, 3456, 169, 256, 3456, 169, 4096, 9216, 1, 4096, 4096, 1, 1000, 4096, 1

// Following is my code

  cout << "AlexNet START" << endl;
  all_OK &= test("layer1", 96, 363, 3025, 1, 1);
  all_OK &= test("layer2", 256, 2400, 729, 1, 1);
  all_OK &= test("layer3", 384, 2304, 169, 1, 1);
  all_OK &= test("layer4", 384, 3456, 169, 1, 1);
  all_OK &= test("layer5", 256, 3456, 169, 1, 1);
  all_OK &= test("layer6", 4096, 9216, 1, 1, 1);
  all_OK &= test("layer7", 4096, 4096, 1, 1, 1);
  all_OK &= test("layer8", 1000, 4096, 1, 1, 1);
  cout << "AlexNet END" << endl;

layers 384, 2304, 169, 384, 3456, 169, 256, 3456, 169 all cannot pass test And when pynq runned to 4096, 9216, 1 Pynq stalls and simply disconnected to host

[8bit Config output Error] Again when I config bismo to run alexnet 8b It says it is RHS is too big and cannot be supported by current runtime

Exception: RHS is too large and not currently supported in runtime library.

Could you help fix this issue? I think runtime lib should able to handle configuration from a commonly used network architecture for completeness.

Many Thanks, Yun-Chen

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:11

github_iconTop GitHub Comments

1reaction
yunchenlocommented, Dec 26, 2019

I am using LD_LIBRARY_PATH=$(pwd) ./testapp i , which is interactive mode for benchmarking. Thank you for such professional and detailed answer! I did look into those files before. I will definitely look into those files more closely again and maybe double check my understanding with you later.

Please feel free to close this issue!

Sincerely, Yun-Chen

1reaction
maltanarcommented, Dec 19, 2019

Those errors are because fpga-tidbits is missing, it is a submodule – it looks like you need to make a new clone of that branch with the --recurse-submodules flag with something this:

git clone --recurse-submodules --branch dynamic_fetch https://github.com/kathjo/bismo.git

or go into the existing cloned folder and run git submodule init; git submodule update

Read more comments on GitHub >

github_iconTop Results From Across the Web

Boost Test Error: main already defined - Stack Overflow
When I compile the project I get a link error that's saying that main is already defined. I noticed that main file is...
Read more >
ERROR ON TESTING - WordPress.org
Hi, reinstalled my wordpress and now I have this error, when I try to test via given ip (i hide my ip): “Technical...
Read more >
3000s - Application Error Messages
Error number Error message Additional info and instruction 3093 File name missing error Contact Pearson Support. 3105 You must use the TestNav app to take...
Read more >
boost/test/utils/runtime/errors.hpp - 1.64.0
This is the documentation for an old version of Boost. Click here to view this page for the latest version. boost/test/utils/runtime/errors.
Read more >
HP PCs - Testing for hardware failures in Windows 10
1. In Windows, search for and open the HP PC Hardware Diagnostics for Windows app. 2. On the main menu, click System Tests....
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found