-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
Description
Hi, I'm a student interested in GPU data processing.
I appreciate your great effort for implementing RDMA using GPU Direct. It is very useful for studying that research area.
By the way, while trying to run the project, I have met some problems.
The current case is:
Trying to send data from SSD to GPU directly, without using smartio
Below is my make command line
cmake .. -DCMAKE_BUILD_TYPE=Release -Dno_smartio=true -Dno_smartio_samples=true -Dno_smartio_benchmarks=true
And I tried to run nvm-latency-benchmark program with below options
- ./nvm-latency-bench --input test.in --verify --ctrl=/dev/libnvm0 --blocks 1000 --count 1 --iterations=1000 --queue 'no=1,depth=1'
- ./nvm-latency-bench --input test.in --verify --ctrl=/dev/libnvm0 --blocks 1000 --count 1 --iterations=1000 --queue 'no=1,depth=1 --gpu 0'
When I run the program, both shows
Verifying buffers... FAIL
Unexpected runtime error: Memory buffer differ from file content
Can you please give some advice?
Thank you.