Files
rocm-systems/projects/clr/hipamd/tests
Evgeny Mankov a17733dd80 Device property memoryBusWidth implementation.
+ Device property memoryBusWidth is added to hipDeviceProp_t struct.
+ Device attribute hipDeviceAttributeMemoryBusWidth is added to hipDeviceAttribute_t struct.
+ Tests update.


[ROCm/clr commit: da8169dd89]
2016-02-18 18:15:01 +03:00
..
2016-02-11 13:06:58 +05:30

Tests uses CMAKE as teh build infrastructure.

Use :

mkdir build cd build cmake ../src make make test

#-----

How to add a new test;

edit src/CMakeFiles to add the test:

add the executable and list of required CPP files, ie:

make_test (EXE CPP_FILES)

make_hip_executable (hipMemset hipMemset.cpp)

Add to automated Test framework:

make_test (TESTNAME ARGS)

make_test(hipMemset " ")

Running tests:

make test

Run a specific test:

./hipMemset