Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Activity for elgonzo‭

Type On... Excerpt Status Date
Comment Post #283170 That said, fast division in HW is still a topic for research papers. As an example here a paper from 2005: https://www.researchgate.net/publication/4156467_A_hardware_algorithm_for_integer_division (disclaimer: I haven't read that paper, so i don't know whether it is a good paper or just hot garbage....
(more)
almost 3 years ago
Comment Post #283170 Actually, trying to brute-force division with a bunch of subtractions alone is slow like molasses (like it would if doing multiply with adders alone). For some idea wrt to hardware division look for example here: https://electronics.stackexchange.com/questions/155899/implementing-integer-division-in-...
(more)
almost 3 years ago
Comment Post #283170 Multiplication in hardware is a combination of adders and bit shifting. Thus multiplying two 64-bit numbers, however large, only takes 64 bit shifts plus at max. 64 additions. This is not only incredibly fast, but also cheap in circuitry. You only need an 128 bit adder, a 128-bit shift register, anot...
(more)
almost 3 years ago
Comment Post #283170 Just as an aside, the reason you usually only find adders and not subtractors is because using two's complement, you only need one instance of logic block (adder) in a circuit to do both operations. Consider that die space is usually prime real estate that to a large extent determines the price of a ...
(more)
almost 3 years ago