krrishnarraj / clpeak

A tool which profiles OpenCL devices to find their peak capacities
Apache License 2.0
396 stars 111 forks source link

Is there a usage guide of this tool from build to use? #44

Closed ysh329 closed 7 years ago

ysh329 commented 7 years ago

I want to measure OpenCL peak of my device. But I'm new to C/C++ project. I just executed these line below:

cd clpeak
mkdir build
cd build
cmake ..

eh,

krrishnarraj commented 7 years ago

followed by:

make ./clpeak

There is no usage guide as yet

ysh329 commented 7 years ago

Thanks

ysh329 commented 7 years ago

@krrishnarraj I tried, but failed

ysh329@firefly:~/code/clpeak$ make
make: *** No targets specified and no makefile found.  Stop.
krrishnarraj commented 7 years ago

make is to be done on build folder

mkdir build
cd build
cmake ..
make
./clpeak
ysh329 commented 7 years ago

Thanks, my big brother! :rofl: