Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
  • Sign in / Register
O
opencv
  • Project
    • Project
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Packages
    • Packages
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • submodule
  • opencv
  • Repository

Switch branch/tag
  • opencv
  • modules
  • gpu
  • perf
  • perf_main.cpp
Find file
BlameHistoryPermalink
  • Vladislav Vinogradov's avatar
    created wrappers for new NPP functions · 2d304809
    Vladislav Vinogradov authored 13 years ago
    removed void integral(const GpuMat& src, GpuMat& sum, GpuMat& sqsum, Stream& stream) - it fails with NPP_NOT_IMPLEMENTED error
    updated docs, accuracy and performance tests
    2d304809
perf_main.cpp 311 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#include "perf_precomp.hpp"

#ifdef HAVE_CUDA

int main(int argc, char **argv)
{
    testing::InitGoogleTest(&argc, argv);
    perf::TestBase::Init(argc, argv);
    return RUN_ALL_TESTS();
}

#else

int main()
{
    printf("OpenCV was built without CUDA support\n");
    return 0;
}

#endif

Replace perf_main.cpp

Attach a file by drag & drop or click to upload


Cancel
A new branch will be created in your fork and a new merge request will be started.