#pragma once #include "data.hpp" void test_working(const size_t&) noexcept; void test_working_2d(const size_t&, const size_t&) noexcept; void test_working_3d(const size_t&, const size_t&, const size_t&) noexcept; np::Array<uint32_t> set_integral_image_gpu(const np::Array<uint8_t>&) noexcept; np::Array<int32_t> apply_features_gpu(const np::Array<uint8_t>&, const np::Array<uint32_t>&) noexcept; np::Array<float64_t> train_weak_clf_gpu(const np::Array<int32_t>& X_feat, const np::Array<uint16_t>& X_feat_argsort, const np::Array<uint8_t>& y, const np::Array<float64_t>& weights) noexcept; np::Array<uint16_t> argsort_2d_gpu(const np::Array<int32_t>& X_feat) noexcept;