- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
7 Posted Topics
Hi guys, I developed JIT compiler for Python. It compiles simplified Python code directly to x86 native code. Focus here is usage on SIMD instructions. With SIMDy you can easily outperform C++ in compute intensive tasks like monte carlo simulations, rendering, fluid simulations, etc... Web(WIP): www.tahir007.com I would like to …
Yes I have some real-life experience but i just begin exploring AVX. AVX add support for 256-bit wide registers but only for floating point operations. Integer operations are limited to 128-bit like before. If you are using 128-bit operations speed of AVX and SSE is almost identical. Programming is AVX …
[QUOTE=tonyjv;1251650]You are right the original works if run directly and like normally the speed of execution is little faster, not so much different than some other occasions though. Here would be nice piece to test actually the announcement of today: Assembly code module. Are you handy with SSE instructions? ([url]http://www.tahir007.com/?view=examples[/url]) …
I can recommended to take a look on [url]www.tahir007.com[/url] for Tdasm assembler because with this assembler you can easily programming your own GUI that will be multiplatform (Linux, Windows, Mac). Mixing Python and assembler is very easy so you can program low-level drawing routine in assembler and logic in Python. …
Don't use emulator you can't damage you computer. If you want to learn assembly language I can advocate for TDAsm assembler. It's like regular assembler but you must use it from python. You can quickly write assembly code and execute it from python. I think this way you can quickly …
[QUOTE=funfullson;1257365]hi dears. I am using Emu8086. I need to generating an array of random numbers. Are there any ready procedure or intrupt? if there are not, how can I do it? thanks.[/QUOTE] This is simple formula for basic LCG random generator. k = 30903 * (k & 65535) k is …
Hi, I develop dynamic in-line assembler for python. Its very easy to use it from python and know you can optimize some routine in assembly language and use it directly from python. Its support both windows and Linux. If you are interest you can take look on web-page, [url]http://www.tahir007.com[/url] If …
The End.
Tahir007