3 Questions 7 Answers 0 Followers
Questions related from Priyankar Roychowdhury
If there is an Optical Interconnect from Top-of-Rack Switch of one Rack to Top-of-Rack Switch of another Rack, what are the receiving and sending delays in the Optical Interconnect Cable?...
16 May 2017 7,231 1 View
Hello, I want to find out Throughput of an Optical Interconnection Network by with the help of a simulator like Booksim2 / Sniper. By definition, throughput is no. of bits ( or bytes) per second...
07 March 2017 1,466 4 View
This is the verilog code of RS latch. The code is working. module RS_latch_gate(r,s,q,qbar); input r,s; output q,qbar;wire q_i,qbar_i; nor (q, r, qbar);nor (qbar, s, q); assign q_i = q;assign...
15 July 2016 9,640 4 View