Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Unable to build samples #44

Open
elvisdukaj opened this issue Nov 13, 2017 · 5 comments
Open

Unable to build samples #44

elvisdukaj opened this issue Nov 13, 2017 · 5 comments
Assignees
Labels

Comments

@elvisdukaj
Copy link

I'm using Ubuntu Zesty and I've tried to build SyclParallelSTL with GCC-6 (the default one) but I'm unable to build.

I'm using TriSYCL 2dd925b

My cmake is able to find the following:

  • Found OpenCL: /usr/lib/x86_64-linux-gnu/libOpenCL.so (found version "2.0")
  • -- Performing Test OpenMP_FLAG_DETECTED - Success
  • -- Boost version: 1.65.1
  • -- triSYCL include directory - Found /home/score05/projects/triSYCL/include

Here is how I called cmake: ./build.sh --trisycl -DTRISYCL_INCLUDE_DIR=/home/score05/projects/triSYCL/include -DTRISYCL_OPENCL=On

What's wrong?

I've the following output:

build.sh entering mode: triSYCL
Already up-to-date.
make: Nothing to be done for 'all'.
~/projects/SyclParallelSTL/build ~/projects/SyclParallelSTL
-- The C compiler identification is GNU 6.3.0
-- The CXX compiler identification is GNU 6.3.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
--  Path to CMAKE source directory: /home/score05/projects/SyclParallelSTL 
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE  
--  Using triSYCL CMake
-- host compiler - gcc 6.3.0
-- Looking for CL_VERSION_2_0
-- Looking for CL_VERSION_2_0 - found
-- Found OpenCL: /usr/lib/x86_64-linux-gnu/libOpenCL.so (found version "2.0") 
-- Try OpenMP C flag = [-fopenmp]
-- Performing Test OpenMP_FLAG_DETECTED
-- Performing Test OpenMP_FLAG_DETECTED - Success
-- Try OpenMP CXX flag = [-fopenmp]
-- Performing Test OpenMP_FLAG_DETECTED
-- Performing Test OpenMP_FLAG_DETECTED - Success
-- Found OpenMP: -fopenmp  
-- Boost version: 1.65.1
-- Found the following Boost libraries:
--   chrono
--   log
--   system
--   date_time
--   log_setup
--   filesystem
--   thread
--   regex
--   atomic
-- triSYCL include directory - Found /home/score05/projects/triSYCL/include
--  Getting /home/score05/projects/SyclParallelSTL/examples/./parallel_execpol_general.cpp 
--  Adding parallel_execpol_general 
--  Getting /home/score05/projects/SyclParallelSTL/examples/./sycl_sample_00.cpp 
--  Adding sycl_sample_00 
--  Getting /home/score05/projects/SyclParallelSTL/examples/./sycl_sample_01.cpp 
--  Adding sycl_sample_01 
--  GoogleMock found in /home/score05/projects/SyclParallelSTL/external/googletest/googlemock/ , building tests 
--  Adding buffer_unique_ptr 
--  Adding count_if 
--  Adding exclusive_scan 
--  Adding fill 
--  Adding find 
--  Adding for_each 
--  Adding for_each_n 
--  Adding inclusive_scan 
--  Adding inner_product 
--  Adding invalid_vector_iterators 
--  Adding reduce 
--  Adding sort 
--  Adding transform 
--  Adding transform_reduce 
--  Adding vector 
--  Adding basic 
--  Adding montecarloPI 
--  Adding nbody 
--  Adding std_foreach_saxpy 
--  Adding std_sort 
--  Adding std_transform_saxpy 
--  Adding sycl_exclusive_scan 
--  Adding sycl_foreach_saxpy 
--  Adding sycl_inclusive_scan 
--  Adding sycl_reduce 
--  Adding sycl_sort 
--  Adding sycl_transform_het_saxpy 
--  Adding sycl_transform_reduce_saxpy 
--  Adding sycl_transform_saxpy 
--  Adding word_count 
-- Configuring done
-- Generating done
-- Build files have been written to: /home/score05/projects/SyclParallelSTL/build
~/projects/SyclParallelSTL
~/projects/SyclParallelSTL/build ~/projects/SyclParallelSTL
Scanning dependencies of target SyclSTL
Scanning dependencies of target test_for_each_n
Scanning dependencies of target test_exclusive_scan
Scanning dependencies of target sycl_sample_01
Scanning dependencies of target test_transform
Scanning dependencies of target parallel_execpol_general
Scanning dependencies of target sycl_sample_00
Scanning dependencies of target test_vector
[  1%] Building CXX object src/CMakeFiles/SyclSTL.dir/policies.cpp.o
[  2%] Building CXX object examples/CMakeFiles/parallel_execpol_general.dir/parallel_execpol_general.cpp.o
[  4%] Building CXX object examples/CMakeFiles/sycl_sample_01.dir/sycl_sample_01.cpp.o
[  5%] Building CXX object examples/CMakeFiles/sycl_sample_00.dir/sycl_sample_00.cpp.o
[  7%] Building CXX object tests/CMakeFiles/test_exclusive_scan.dir/exclusive_scan.cpp.o
[  8%] Building CXX object tests/CMakeFiles/test_vector.dir/vector.cpp.o
[ 10%] Building CXX object tests/CMakeFiles/test_transform.dir/transform.cpp.o
[ 11%] Building CXX object tests/CMakeFiles/test_for_each_n.dir/for_each_n.cpp.o
[ 13%] Linking CXX static library libSyclSTL.a
[ 13%] Built target SyclSTL
Scanning dependencies of target test_inner_product
[ 14%] Linking CXX executable parallel_execpol_general
[ 14%] Built target parallel_execpol_general
Scanning dependencies of target test_transform_reduce
[ 16%] Building CXX object tests/CMakeFiles/test_inner_product.dir/inner_product.cpp.o
[ 17%] Building CXX object tests/CMakeFiles/test_transform_reduce.dir/transform_reduce.cpp.o
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/examples/sycl_sample_01.cpp:32:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/examples/sycl_sample_01.cpp:32:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/examples/sycl_sample_00.cpp:31:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/examples/sycl_sample_00.cpp:31:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/tests/exclusive_scan.cpp:33:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/tests/exclusive_scan.cpp:33:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/tests/for_each_n.cpp:32:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/tests/for_each_n.cpp:32:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/tests/transform.cpp:34:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/tests/transform.cpp:34:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/tests/vector.cpp:33:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/tests/vector.cpp:33:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/tests/inner_product.cpp:37:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/tests/inner_product.cpp:37:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:51:0,
				from /home/score05/projects/SyclParallelSTL/tests/transform_reduce.cpp:34:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:198:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/sort.hpp:259:39: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
			cl::sycl::id<1> id = it.get();
									^~~
In file included from /home/score05/projects/SyclParallelSTL/include/sycl/algorithm/inner_product.hpp:36:0,
				from /home/score05/projects/SyclParallelSTL/include/sycl/execution_policy:53,
				from /home/score05/projects/SyclParallelSTL/tests/transform_reduce.cpp:34:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:200:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:295:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:407:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:420:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:451:31: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id  = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:468:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp: In lambda function:
/home/score05/projects/SyclParallelSTL/include/sycl/algorithm/buffer_algorithms.hpp:515:30: error: ‘class cl::sycl::item<1>’ has no member named ‘get’; did you mean ‘set’?
		size_t local_id = id.get(0) % d.nb_work_item;
							^~~
examples/CMakeFiles/sycl_sample_00.dir/build.make:62: recipe for target 'examples/CMakeFiles/sycl_sample_00.dir/sycl_sample_00.cpp.o' failed
make[2]: *** [examples/CMakeFiles/sycl_sample_00.dir/sycl_sample_00.cpp.o] Error 1
CMakeFiles/Makefile2:218: recipe for target 'examples/CMakeFiles/sycl_sample_00.dir/all' failed
make[1]: *** [examples/CMakeFiles/sycl_sample_00.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....
examples/CMakeFiles/sycl_sample_01.dir/build.make:62: recipe for target 'examples/CMakeFiles/sycl_sample_01.dir/sycl_sample_01.cpp.o' failed
make[2]: *** [examples/CMakeFiles/sycl_sample_01.dir/sycl_sample_01.cpp.o] Error 1
CMakeFiles/Makefile2:144: recipe for target 'examples/CMakeFiles/sycl_sample_01.dir/all' failed
make[1]: *** [examples/CMakeFiles/sycl_sample_01.dir/all] Error 2
tests/CMakeFiles/test_vector.dir/build.make:62: recipe for target 'tests/CMakeFiles/test_vector.dir/vector.cpp.o' failed
make[2]: *** [tests/CMakeFiles/test_vector.dir/vector.cpp.o] Error 1
CMakeFiles/Makefile2:338: recipe for target 'tests/CMakeFiles/test_vector.dir/all' failed
make[1]: *** [tests/CMakeFiles/test_vector.dir/all] Error 2
tests/CMakeFiles/test_transform.dir/build.make:62: recipe for target 'tests/CMakeFiles/test_transform.dir/transform.cpp.o' failed
make[2]: *** [tests/CMakeFiles/test_transform.dir/transform.cpp.o] Error 1
CMakeFiles/Makefile2:301: recipe for target 'tests/CMakeFiles/test_transform.dir/all' failed
make[1]: *** [tests/CMakeFiles/test_transform.dir/all] Error 2
tests/CMakeFiles/test_for_each_n.dir/build.make:62: recipe for target 'tests/CMakeFiles/test_for_each_n.dir/for_each_n.cpp.o' failed
make[2]: *** [tests/CMakeFiles/test_for_each_n.dir/for_each_n.cpp.o] Error 1
CMakeFiles/Makefile2:412: recipe for target 'tests/CMakeFiles/test_for_each_n.dir/all' failed
make[1]: *** [tests/CMakeFiles/test_for_each_n.dir/all] Error 2
tests/CMakeFiles/test_inner_product.dir/build.make:62: recipe for target 'tests/CMakeFiles/test_inner_product.dir/inner_product.cpp.o' failed
make[2]: *** [tests/CMakeFiles/test_inner_product.dir/inner_product.cpp.o] Error 1
CMakeFiles/Makefile2:449: recipe for target 'tests/CMakeFiles/test_inner_product.dir/all' failed
make[1]: *** [tests/CMakeFiles/test_inner_product.dir/all] Error 2
tests/CMakeFiles/test_exclusive_scan.dir/build.make:62: recipe for target 'tests/CMakeFiles/test_exclusive_scan.dir/exclusive_scan.cpp.o' failed
make[2]: *** [tests/CMakeFiles/test_exclusive_scan.dir/exclusive_scan.cpp.o] Error 1
CMakeFiles/Makefile2:375: recipe for target 'tests/CMakeFiles/test_exclusive_scan.dir/all' failed
make[1]: *** [tests/CMakeFiles/test_exclusive_scan.dir/all] Error 2
tests/CMakeFiles/test_transform_reduce.dir/build.make:62: recipe for target 'tests/CMakeFiles/test_transform_reduce.dir/transform_reduce.cpp.o' failed
make[2]: *** [tests/CMakeFiles/test_transform_reduce.dir/transform_reduce.cpp.o] Error 1
CMakeFiles/Makefile2:486: recipe for target 'tests/CMakeFiles/test_transform_reduce.dir/all' failed
make[1]: *** [tests/CMakeFiles/test_transform_reduce.dir/all] Error 2
Makefile:94: recipe for target 'all' failed
make: *** [all] Error 2
~/projects/SyclParallelSTL
~/projects/SyclParallelSTL/build/tests ~/projects/SyclParallelSTL
Test project /home/score05/projects/SyclParallelSTL/build/tests
	Start  1: test_buffer_unique_ptr
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_buffer_unique_ptr
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_buffer_unique_ptr
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Release/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Release/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Development/test_buffer_unique_ptr
home/score05/projects/SyclParallelSTL/build/tests/Development/test_buffer_unique_ptr
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_buffer_unique_ptr
1/15 Test  #1: test_buffer_unique_ptr ...........***Not Run   0.00 sec
	Start  2: test_count_if
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_count_if
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_count_if
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Release/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Release/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Development/test_count_if
home/score05/projects/SyclParallelSTL/build/tests/Development/test_count_if
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_count_if
2/15 Test  #2: test_count_if ....................***Not Run   0.00 sec
	Start  3: test_exclusive_scan
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_exclusive_scan
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_exclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Release/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Release/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Development/test_exclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Development/test_exclusive_scan
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_exclusive_scan
3/15 Test  #3: test_exclusive_scan ..............***Not Run   0.00 sec
	Start  4: test_fill
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_fill
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_fill
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_fill
home/score05/projects/SyclParallelSTL/build/tests/test_fill
home/score05/projects/SyclParallelSTL/build/tests/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Release/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Release/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_fill
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_fill
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_fill
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_fill
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Development/test_fill
home/score05/projects/SyclParallelSTL/build/tests/Development/test_fill
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_fill
4/15 Test  #4: test_fill ........................***Not Run   0.00 sec
	Start  5: test_find
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_find
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_find
/home/score05/projects/SyclParallelSTL/build/tests/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_find
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_find
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_find
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_find
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_find
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_find
home/score05/projects/SyclParallelSTL/build/tests/test_find
home/score05/projects/SyclParallelSTL/build/tests/test_find
home/score05/projects/SyclParallelSTL/build/tests/Release/test_find
home/score05/projects/SyclParallelSTL/build/tests/Release/test_find
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_find
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_find
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_find
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_find
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_find
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_find
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_find
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_find
home/score05/projects/SyclParallelSTL/build/tests/Development/test_find
home/score05/projects/SyclParallelSTL/build/tests/Development/test_find
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_find
5/15 Test  #5: test_find ........................***Not Run   0.00 sec
	Start  6: test_for_each
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_for_each
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each
home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_for_each
6/15 Test  #6: test_for_each ....................***Not Run   0.00 sec
	Start  7: test_for_each_n
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_for_each_n
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each_n
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Release/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each_n
home/score05/projects/SyclParallelSTL/build/tests/Development/test_for_each_n
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_for_each_n
7/15 Test  #7: test_for_each_n ..................***Not Run   0.00 sec
	Start  8: test_inclusive_scan
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_inclusive_scan
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_inclusive_scan
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Release/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Release/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Development/test_inclusive_scan
home/score05/projects/SyclParallelSTL/build/tests/Development/test_inclusive_scan
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_inclusive_scan
8/15 Test  #8: test_inclusive_scan ..............***Not Run   0.00 sec
	Start  9: test_inner_product
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_inner_product
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_inner_product
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Release/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Release/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Development/test_inner_product
home/score05/projects/SyclParallelSTL/build/tests/Development/test_inner_product
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_inner_product
9/15 Test  #9: test_inner_product ...............***Not Run   0.00 sec
	Start 10: test_invalid_vector_iterators
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_invalid_vector_iterators
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_invalid_vector_iterators
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Release/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Release/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Development/test_invalid_vector_iterators
home/score05/projects/SyclParallelSTL/build/tests/Development/test_invalid_vector_iterators
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_invalid_vector_iterators
10/15 Test #10: test_invalid_vector_iterators ....***Not Run   0.00 sec
	Start 11: test_reduce
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_reduce
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Release/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Release/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Development/test_reduce
home/score05/projects/SyclParallelSTL/build/tests/Development/test_reduce
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_reduce
11/15 Test #11: test_reduce ......................***Not Run   0.00 sec
	Start 12: test_sort
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_sort
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_sort
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_sort
home/score05/projects/SyclParallelSTL/build/tests/test_sort
home/score05/projects/SyclParallelSTL/build/tests/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Release/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Release/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_sort
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_sort
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_sort
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_sort
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Development/test_sort
home/score05/projects/SyclParallelSTL/build/tests/Development/test_sort
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_sort
12/15 Test #12: test_sort ........................***Not Run   0.00 sec
	Start 13: test_transform
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_transform
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform
home/score05/projects/SyclParallelSTL/build/tests/test_transform
home/score05/projects/SyclParallelSTL/build/tests/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform
home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_transform
13/15 Test #13: test_transform ...................***Not Run   0.00 sec
	Start 14: test_transform_reduce
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_transform_reduce
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform_reduce
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Release/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform_reduce
home/score05/projects/SyclParallelSTL/build/tests/Development/test_transform_reduce
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_transform_reduce
14/15 Test #14: test_transform_reduce ............***Not Run   0.00 sec
	Start 15: test_vector
Could not find executable /home/score05/projects/SyclParallelSTL/build/tests/test_vector
Looked in the following places:
/home/score05/projects/SyclParallelSTL/build/tests/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Release/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Debug/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_vector
/home/score05/projects/SyclParallelSTL/build/tests/Development/test_vector
home/score05/projects/SyclParallelSTL/build/tests/test_vector
home/score05/projects/SyclParallelSTL/build/tests/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Release/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Release/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Debug/test_vector
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_vector
home/score05/projects/SyclParallelSTL/build/tests/MinSizeRel/test_vector
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_vector
home/score05/projects/SyclParallelSTL/build/tests/RelWithDebInfo/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Deployment/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Development/test_vector
home/score05/projects/SyclParallelSTL/build/tests/Development/test_vector
Unable to find executable: /home/score05/projects/SyclParallelSTL/build/tests/test_vector
15/15 Test #15: test_vector ......................***Not Run   0.00 sec

0% tests passed, 15 tests failed out of 15

Total Test time (real) =   0.00 sec

The following tests FAILED:
	1 - test_buffer_unique_ptr (Not Run)
	2 - test_count_if (Not Run)
	3 - test_exclusive_scan (Not Run)
	4 - test_fill (Not Run)
	5 - test_find (Not Run)
	6 - test_for_each (Not Run)
	7 - test_for_each_n (Not Run)
	8 - test_inclusive_scan (Not Run)
	9 - test_inner_product (Not Run)
	10 - test_invalid_vector_iterators (Not Run)
	11 - test_reduce (Not Run)
	12 - test_sort (Not Run)
	13 - test_transform (Not Run)
	14 - test_transform_reduce (Not Run)
	15 - test_vector (Not Run)
Errors while running CTest
@keryell
Copy link
Member

keryell commented Nov 18, 2017

Ah i see...
We made some changes on triSYCL recently...
You should try with an older version of triSYCL, up to triSYCL/triSYCL@c629dbf while waiting some reconvergence.
Or even better you could use ComputeCpp, because the PSTL cannot work with OpenCL with triSYCL yet. Only in CPU mode...

@keryell
Copy link
Member

keryell commented Jan 8, 2018

I have added #53 and updated https://github.com/triSYCL/triSYCL with a few more SYCL 1.2.1 features to have it working back.

Sorry for the inconvenience.

@keryell
Copy link
Member

keryell commented Mar 15, 2018

I think everything is back to normal now.

@keryell keryell added the bug label Mar 15, 2018
@keryell keryell self-assigned this Mar 15, 2018
@keryell
Copy link
Member

keryell commented Mar 15, 2018

Ah actually it should work with Ubuntu 17.10 & GCC 7 or Clang 5

@keryell
Copy link
Member

keryell commented Aug 2, 2018

I guess this is solved with a recent environment, such as 18.04 ?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants