"net->routingRecord(returnMsg->source(),returnMsg->destiny(),xdelta, ydelta,zdelta,returnMsg->isOrdered());"
But if we can send message from router to router in the TPZinjectorFlow.cpp file then off-chip network can also be simulated. So please help me how can I make sure to send the message router to router instead of on-chip fixed source and destination.
Thanks....
--
You received this message because you are subscribed to the Google Groups "topaz-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to topaz-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
<Sample.pdf>
Boolean TPZInjectorFlowCT :: outputWriting()
and inside this function below line is responsible for sending message-
TPZMessage* msg = getNextFlitToSend();
So if I change this function for every router destination like- delx = abs(sX - dX) and call the getNextFlitToSend( ) function with new source Node repeatedly, it should be able to send message for every router. Now another question is that is it will make another unknown issue.
---------
Thanks
getMessageQueue().elementAt(0,topMessage) // inside the function of getNextFlitToSend();
before I call function this function I need to set the 0 element of getMessageQueue using the last sent msg.
So please tell me how I can create function as setMessageQueue() which will set the last router msg as the 0 element of getMessageQueue.
Otherwise I am getting the segmentation fault 11.
--