1config BR2_PACKAGE_CLPEAK 2 bool "clpeak" 3 depends on BR2_PACKAGE_HAS_LIBOPENCL 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11 6 select BR2_PACKAGE_OPENCL_CLHPP 7 help 8 clpeak is a tool that profiles OpenCL devices 9 to find their peak capacities 10 11 https://github.com/krrishnarraj/clpeak 12 13comment "clpeak needs an OpenCL provider, a toolchain w/ C++, gcc >= 4.8" 14 depends on !BR2_PACKAGE_HAS_LIBOPENCL \ 15 || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 16