[gem5-users] flit payload extraction

2024-09-11 Thread Ojas Sharma via gem5-users
Hi everyone, I'm trying to access the corresponding payload associated with a flit in gem5. But within the class flit, there is no such thing as a payload. These are the data members within the flit class: protected: int m_packet_id; int m_id; int m_vnet; int m_vc; RouteInfo m_r

[gem5-users] getting/converting a flit into stream of bits in gem5 garnet

2024-08-30 Thread Ojas Sharma via gem5-users
dear all, I hope this email reaches you. It would be really helpful if someone can guide me regarding an issue I've been facing. I would like to get the flits as a stream of bits because I would like to do some operations such as comparisons on a set of flits in gem5. I apologize if this problem m

[gem5-users] getting a flit as a stream of bits in gem5

2024-08-30 Thread Ojas Sharma via gem5-users
Dear all, ___ gem5-users mailing list -- gem5-users@gem5.org To unsubscribe send an email to gem5-users-le...@gem5.org

[gem5-users] Re: Disk Image Management

2024-05-04 Thread Ojas Sharma via gem5-users
please take a look at the tutorial on how to run parsec benchmark on gem5 within the gem5 documentation. In that, they teach you the method to make the relevant disk-image. You can use that as a reference to make your own disk image. On Sat, 4 May, 2024, 11:46 pm Pau Galindo Figuerola via gem5-use

[gem5-users] Flit to bitstream conversion

2024-05-04 Thread Ojas Sharma via gem5-users
Hi, Is there any way to convert the flits to a bitstream? I want to calculate the hamming distance between two flits. For that, I need to do this operation. Can anyone help me with this? Regards, Ojas ___ gem5-users mailing list -- gem5-users@gem5.org To

[gem5-users] Where exactly are the flits generated

2024-05-03 Thread Ojas Sharma via gem5-users
Hi, Can someone please tell me where exactly the flits are generated? I want to do some operations on the flits when they are generated, for example i want to add a field say sequence number to the flit and send them in that a certain sequence using that data, but for that i would have to add the s

[gem5-users] fs mode

2024-03-21 Thread Ojas Sharma via gem5-users
i want to run parsec blackscholes in fs mode with simsmall inputs in gem5 with these configurations : --num-cpus=64 --num-dirs=64 --cpu-type=O3CPU --cpu-clock=2GHz --caches --l1d_size=16kB --l1i_size=16kB --l2cache --num-l2cache=64 --mem-type=SimpleMemory --mem-size=2GB --ruby --network=garnet --t

[gem5-users] capturing/tracing flits to measure message flow through Ruby memory system

2024-03-01 Thread Ojas Sharma via gem5-users
For my defined system, I am using debug-flags = RubyNetwork and debug-file = . And then I'm extracting the [flit:: ...] data from this . But, the problem is, is very big when I'm running the parsec benchmarks on it. Are there any better ways to capture these flits? Do I need to modify the NetworkI