-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No performance improvement in PIM as compared to cpu #10
Comments
Do you find the corresponding dynamic feedback source code? I can not find it in source code, it may not be implemented. |
./build/X86/gem5.opt –debug-flags=PIM configs/example/se.py –cpu-type=TimingSimpleCPU –cpu-clock=2GHz –caches –l2cache –l1d_size=32kB –l1i_size=32kB –l2_size=2MB –l1d_assoc=4 –l1i_assoc=4 –l2_assoc=8 –enable-pim –pim-type=hybrid –kernel-type=adder –num-pim-kernels=16 –mem-size=512MB –coherence granularity=64B -c tests/test-progs/pim-hello/hellopim I am trying this code, but it gives me an error that I'm trying to implement Hybrid without first configuring it. Can anyone tell me how to configure it? |
I want to know why you say that pimkernels access DRAM with shorter time, I think pimkernels are also put outside the memory and they access DRAM through membus, am i right? |
May I ask how do you use PIM CPUs and what is the source code of your "example_pim/test_cpu" program? |
./build/X86/gem5.opt --debug-flags=PIM configs/example/se.py --cpu-type=TimingSimpleCPU --cpu-clock=2GHz --caches --l2cache --l1d_size=32kB --l1i_size=32kB --l2_size=2MB --l1d_assoc=4 --l1i_assoc=4 --l2_assoc=8 --enable-pim --pim-type=cpu --kernel-type=adder --num-pim-kernels=16 --mem-size=512MB --coherence-granularity=64B -c ./tests/test-progs/example_pim/test_cpu
gives no. of ticks=4356369500
./build/X86/gem5.opt --debug-flags=PIM configs/example/se.py --cpu-type=TimingSimpleCPU --cpu-clock=2GHz --caches --l2cache --l1d_size=32kB --l1i_size=32kB --l2_size=2MB --l1d_assoc=4 --l1i_assoc=4 --l2_assoc=8 --enable-pim --pim-type=kernel --kernel-type=adder --num-pim-kernels=16 --mem-size=512MB --coherence-granularity=64B -c ./tests/test-progs/example_pim/test_pim
gives no. of ticks=4890508500
Why is there more no. of ticks in case of PIM as compared to CPU?
The text was updated successfully, but these errors were encountered: