Mahmood Naderan

Results 17 comments of Mahmood Naderan

I ran BFS. According to the outputs: Delaunay_n24 ``` Degree 0: 0 (0.000000 %) Degree 2^0: 0 (0.000000 %) Degree 2^1: 188843 (1.125592 %) Degree 2^2: 14423880 (85.973024 %) Degree...

Thanks. In that file, this kernel is called by `ComputeOutputLength()` Looking at the code, I see the blockSize is a fixed value which is 512. ``` int block_size = 512;...

Excuse me, I removed the comment for [util::DisplayDeviceResults](https://github.com/gunrock/gunrock/blob/master/gunrock/oprtr/advance/advance_base.cuh#L178) but I get these compilation errors: error: no instance of overloaded function "gunrock::util::DisplayDeviceResults" matches the argument list error: identifier "frontier_attribute" is undefined...

What is the difference between using and not using DevIL then? Is it mandatory?

I don't have root access. I have built it in this location ``` mn@fury0:/mnt/local/mn/op$ ls DevIL/DevIL_build/include/IL/ il.h ilu.h ilut.h mn@fury0:/mnt/local/mn/op$ ls DevIL/DevIL_build/lib/ libIL.so libIL.so.1 libILU.so libILU.so.1 libILUT.so libILUT.so.1 pkgconfig ```...

It seems that the default system boost version is 1.63 and insufficient. Although I have set a custom path to 1.65 in `cmake/FindBoostHeaders.cmake` as below ``` list(APPEND _boost_INCLUDE_SEARCH_DIRS PATHS /storage/users/mnaderan/boost_1_65_1...

Still I get the same error although I have commented Boost ``` $ cmake -DGUNROCK_GENCODE_SM61=ON .. -- The C compiler identification is GNU 4.8.5 -- The CXX compiler identification is...

In fact there is no `__CUDACC_VER__` in gunrock files. ``` $ grep -r CUDACC_VER . ./gunrock/oprtr/1D_oprtr/for.cuh:#if (__CUDACC_VER_MAJOR__ >= 9) ./gunrock/oprtr/1D_oprtr/for.cuh:#if (__CUDACC_VER_MAJOR__ >= 9) ./gunrock/oprtr/1D_oprtr/for.cuh:#if (__CUDACC_VER_MAJOR__ >= 10) ./gunrock/oprtr/1D_oprtr/for.cuh:#if (__CUDACC_VER_MAJOR__ >=...

Please leave this open. I will try that and let you know the result.

@neoblizz I tried on another system. On a system which has no "libboost-all-dev", I commented the lines you said [here ](https://github.com/gunrock/gunrock/issues/597#issuecomment-531132721). The "cmake .." was fine, but "make" failed with...