Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
~15.2K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for Tahir007

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 …

0
189
Member Avatar for zalia64

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 …

Member Avatar for Tahir007
0
866
Member Avatar for vegaseat

[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]) …

Member Avatar for TrustyTony
3
7K
Member Avatar for SnowyCloud

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. …

Member Avatar for mathematician
0
151
Member Avatar for timogoosen

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 …

Member Avatar for timogoosen
0
209
Member Avatar for funfullson

[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 …

Member Avatar for Tahir007
0
6K
Member Avatar for Tahir007

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 …

Member Avatar for Beat_Slayer
1
145

The End.