Idein / py-videocore

Python library for GPGPU on Raspberry Pi
MIT License
792 stars 89 forks source link

execute /tests functions and print the Y results #38

Closed SimonBataille closed 6 years ago

SimonBataille commented 6 years ago

Hi,

I'm currently developing on VideoCore GPU and your project is really interesting. Sadly I'm a totally Python beginner.

Could you send me a command-line to execute the "test_per_elmt_imm()" function in "test_alu.py" and print the result in my raspberry terminal. I'm using a raspian lite OS.

Thanks :)

Terminus-IMRC commented 6 years ago

nosetests -v tests/test_alu.py:test_per_elmt_imm

Terminus-IMRC commented 6 years ago

(If you add print functions to test_per_elmt_imm, do nosetests -v -s tests/test_alu.py:test_per_elmt_imm.)

SimonBataille commented 6 years ago

Thank you a lot ;)