File size: 29,031 Bytes
be903e2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 | # This is the CMakeCache file. # For build in directory: /content/ncnn/build # It was generated by CMake: /usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake # You can edit this file to change values found and used by cmake. # If you do not want to change any of the values, simply exit the editor. # If you do want to change a value, simply edit, save, and exit the editor. # The syntax for the file is as follows: # KEY:TYPE=VALUE # KEY is the name of a variable in the cache. # TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. # VALUE is the current value for the KEY. ######################## # EXTERNAL cache entries ######################## //Path to a program. CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line //Path to a program. CMAKE_AR:FILEPATH=/usr/bin/ar //Choose the type of build, options are: None Debug Release RelWithDebInfo // MinSizeRel ... CMAKE_BUILD_TYPE:STRING=Release //Enable/Disable color output during build. CMAKE_COLOR_MAKEFILE:BOOL=ON //CXX compiler CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 //A wrapper around 'ranlib' adding the appropriate '--plugin' option // for the GCC compiler CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 //Flags used by the CXX compiler during all build types. CMAKE_CXX_FLAGS:STRING= //Flags used by the CXX compiler during DEBUG builds. CMAKE_CXX_FLAGS_DEBUG:STRING=-g //Flags used by the CXX compiler during MINSIZEREL builds. CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG //Flags used by the CXX compiler during RELEASE builds. CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG //Flags used by the CXX compiler during RELWITHDEBINFO builds. CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG //C compiler CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc //A wrapper around 'ar' adding the appropriate '--plugin' option // for the GCC compiler CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-11 //A wrapper around 'ranlib' adding the appropriate '--plugin' option // for the GCC compiler CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-11 //Flags used by the C compiler during all build types. CMAKE_C_FLAGS:STRING= //Flags used by the C compiler during DEBUG builds. CMAKE_C_FLAGS_DEBUG:STRING=-g //Flags used by the C compiler during MINSIZEREL builds. CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG //Flags used by the C compiler during RELEASE builds. CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG //Flags used by the C compiler during RELWITHDEBINFO builds. CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG //Path to a program. CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND //Flags used by the linker during all build types. CMAKE_EXE_LINKER_FLAGS:STRING= //Flags used by the linker during DEBUG builds. CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during MINSIZEREL builds. CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during RELEASE builds. CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during RELWITHDEBINFO builds. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Enable/Disable output of compile commands during generation. CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= //Value Computed by CMake. CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/content/ncnn/build/CMakeFiles/pkgRedirects //User executables (bin) CMAKE_INSTALL_BINDIR:PATH=bin //Read-only architecture-independent data (DATAROOTDIR) CMAKE_INSTALL_DATADIR:PATH= //Read-only architecture-independent data root (share) CMAKE_INSTALL_DATAROOTDIR:PATH=share //Documentation root (DATAROOTDIR/doc/PROJECT_NAME) CMAKE_INSTALL_DOCDIR:PATH= //C header files (include) CMAKE_INSTALL_INCLUDEDIR:PATH=include //Info documentation (DATAROOTDIR/info) CMAKE_INSTALL_INFODIR:PATH= //Object code libraries (lib) CMAKE_INSTALL_LIBDIR:PATH=lib //Program executables (libexec) CMAKE_INSTALL_LIBEXECDIR:PATH=libexec //Locale-dependent data (DATAROOTDIR/locale) CMAKE_INSTALL_LOCALEDIR:PATH= //Modifiable single-machine data (var) CMAKE_INSTALL_LOCALSTATEDIR:PATH=var //Man documentation (DATAROOTDIR/man) CMAKE_INSTALL_MANDIR:PATH= //C header files for non-gcc (/usr/include) CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include //Installation Directory CMAKE_INSTALL_PREFIX:PATH=/content/ncnn/build/install //Run-time variable data (LOCALSTATEDIR/run) CMAKE_INSTALL_RUNSTATEDIR:PATH= //System admin executables (sbin) CMAKE_INSTALL_SBINDIR:PATH=sbin //Modifiable architecture-independent data (com) CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com //Read-only single-machine data (etc) CMAKE_INSTALL_SYSCONFDIR:PATH=etc //Path to a program. CMAKE_LINKER:FILEPATH=/usr/bin/ld //Path to a program. CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/gmake //Flags used by the linker during the creation of modules during // all build types. CMAKE_MODULE_LINKER_FLAGS:STRING= //Flags used by the linker during the creation of modules during // DEBUG builds. CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during the creation of modules during // MINSIZEREL builds. CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during the creation of modules during // RELEASE builds. CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during the creation of modules during // RELWITHDEBINFO builds. CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Path to a program. CMAKE_NM:FILEPATH=/usr/bin/nm //Path to a program. CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy //Path to a program. CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump //Value Computed by CMake CMAKE_PROJECT_DESCRIPTION:STATIC= //Value Computed by CMake CMAKE_PROJECT_HOMEPAGE_URL:STATIC= //Value Computed by CMake CMAKE_PROJECT_NAME:STATIC=ncnn //Path to a program. CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib //Path to a program. CMAKE_READELF:FILEPATH=/usr/bin/readelf //Flags used by the linker during the creation of shared libraries // during all build types. CMAKE_SHARED_LINKER_FLAGS:STRING= //Flags used by the linker during the creation of shared libraries // during DEBUG builds. CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during the creation of shared libraries // during MINSIZEREL builds. CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during the creation of shared libraries // during RELEASE builds. CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during the creation of shared libraries // during RELWITHDEBINFO builds. CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= //If set, runtime paths are not added when installing shared libraries, // but are added when building. CMAKE_SKIP_INSTALL_RPATH:BOOL=NO //If set, runtime paths are not added when using shared libraries. CMAKE_SKIP_RPATH:BOOL=NO //Flags used by the linker during the creation of static libraries // during all build types. CMAKE_STATIC_LINKER_FLAGS:STRING= //Flags used by the linker during the creation of static libraries // during DEBUG builds. CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= //Flags used by the linker during the creation of static libraries // during MINSIZEREL builds. CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= //Flags used by the linker during the creation of static libraries // during RELEASE builds. CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= //Flags used by the linker during the creation of static libraries // during RELWITHDEBINFO builds. CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= //Path to a program. CMAKE_STRIP:FILEPATH=/usr/bin/strip //Path to a program. CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND //If this value is on, makefiles will be generated without the // .SILENT directive, and all commands will be echoed to the console // during the make. This is useful for debugging only. With Visual // Studio IDE projects all commands are done without /nologo. CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE //build for address sanitizer NCNN_ASAN:BOOL=OFF //optimize x86 platform with avx extension NCNN_AVX:BOOL=ON //optimize x86 platform with avx2 extension NCNN_AVX2:BOOL=ON //optimize x86 platform with avx512 extension NCNN_AVX512:BOOL=ON //optimize x86 platform with avx512 vnni extension NCNN_AVX512VNNI:BOOL=ON //optimize x86 platform with avx vnni extension NCNN_AVXVNNI:BOOL=ON //print benchmark information for every layer NCNN_BENCHMARK:BOOL=OFF //bf16 inference NCNN_BF16:BOOL=ON //build benchmark NCNN_BUILD_BENCHMARK:BOOL=ON //build examples NCNN_BUILD_EXAMPLES:BOOL=ON //build tests NCNN_BUILD_TESTS:BOOL=OFF //build tools NCNN_BUILD_TOOLS:BOOL=ON //print verbose cmake messages NCNN_CMAKE_VERBOSE:BOOL=OFF //build for coverage NCNN_COVERAGE:BOOL=OFF //build with C api NCNN_C_API:BOOL=ON //disable exception NCNN_DISABLE_EXCEPTION:BOOL=OFF //disable position-independent code NCNN_DISABLE_PIC:BOOL=OFF //disable rtti NCNN_DISABLE_RTTI:BOOL=OFF //enable link-time optimization NCNN_ENABLE_LTO:BOOL=OFF //optimize x86 platform with f16c extension NCNN_F16C:BOOL=ON //optimize x86 platform with fma extension NCNN_FMA:BOOL=ON //force inline some function NCNN_FORCE_INLINE:BOOL=ON //optimize platform with gnu style inline assembly NCNN_GNU_INLINE_ASM:BOOL=ON //install ncnn library and headers NCNN_INSTALL_SDK:BOOL=ON //int8 inference NCNN_INT8:BOOL=ON //openmp support NCNN_OPENMP:BOOL=OFF //convert and resize from/to image pixel NCNN_PIXEL:BOOL=ON //warp affine image pixel NCNN_PIXEL_AFFINE:BOOL=ON //draw basic figure and text NCNN_PIXEL_DRAWING:BOOL=ON //rotate image pixel orientation NCNN_PIXEL_ROTATE:BOOL=ON //build with platform api candy NCNN_PLATFORM_API:BOOL=ON //build python api NCNN_PYTHON:BOOL=OFF //runtime dispatch cpu routines NCNN_RUNTIME_CPU:BOOL=ON //shared library support NCNN_SHARED_LIB:BOOL=OFF //minimal opencv structure emulation NCNN_SIMPLEOCV:BOOL=OFF //minimal openmp runtime emulation NCNN_SIMPLEOMP:BOOL=OFF //minimal cpp stl structure emulation NCNN_SIMPLESTL:BOOL=OFF //optimize x86 platform with sse2 extension NCNN_SSE2:BOOL=ON //load model from external file NCNN_STDIO:BOOL=ON //plain and verbose string NCNN_STRING:BOOL=ON //use system glslang library NCNN_SYSTEM_GLSLANG:BOOL=OFF //build with threads NCNN_THREADS:BOOL=ON //vulkan compute support NCNN_VULKAN:BOOL=OFF //optimize x86 platform with xop extension NCNN_XOP:BOOL=ON //The directory containing a CMake configuration file for OpenCV. OpenCV_DIR:PATH=/usr/lib/x86_64-linux-gnu/cmake/opencv4 //Path to a file. Protobuf_INCLUDE_DIR:PATH=/usr/include //Path to a library. Protobuf_LIBRARY_DEBUG:FILEPATH=/usr/lib/x86_64-linux-gnu/libprotobuf.so //Path to a library. Protobuf_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libprotobuf.so //Path to a library. Protobuf_LITE_LIBRARY_DEBUG:FILEPATH=/usr/lib/x86_64-linux-gnu/libprotobuf-lite.so //Path to a library. Protobuf_LITE_LIBRARY_RELEASE:FILEPATH=/usr/lib/x86_64-linux-gnu/libprotobuf-lite.so //The Google Protocol Buffers Compiler Protobuf_PROTOC_EXECUTABLE:FILEPATH=/usr/bin/protoc //Path to a library. Protobuf_PROTOC_LIBRARY_DEBUG:FILEPATH=Protobuf_PROTOC_LIBRARY_DEBUG-NOTFOUND //Path to a library. Protobuf_PROTOC_LIBRARY_RELEASE:FILEPATH=Protobuf_PROTOC_LIBRARY_RELEASE-NOTFOUND //build with layer absval WITH_LAYER_absval:BOOL=ON //build with layer argmax WITH_LAYER_argmax:BOOL=OFF //build with layer batchnorm WITH_LAYER_batchnorm:BOOL=ON //build with layer bias WITH_LAYER_bias:BOOL=ON //build with layer binaryop WITH_LAYER_binaryop:BOOL=ON //build with layer bnll WITH_LAYER_bnll:BOOL=ON //build with layer cast WITH_LAYER_cast:BOOL=ON //build with layer celu WITH_LAYER_celu:BOOL=ON //build with layer clip WITH_LAYER_clip:BOOL=ON //build with layer concat WITH_LAYER_concat:BOOL=ON //build with layer convolution WITH_LAYER_convolution:BOOL=ON //build with layer convolution1d WITH_LAYER_convolution1d:BOOL=ON //build with layer convolution3d WITH_LAYER_convolution3d:BOOL=ON //build with layer convolutiondepthwise WITH_LAYER_convolutiondepthwise:BOOL=ON //build with layer convolutiondepthwise1d WITH_LAYER_convolutiondepthwise1d:BOOL=ON //build with layer convolutiondepthwise3d WITH_LAYER_convolutiondepthwise3d:BOOL=ON //build with layer copyto WITH_LAYER_copyto:BOOL=ON //build with layer crop WITH_LAYER_crop:BOOL=ON //build with layer cumulativesum WITH_LAYER_cumulativesum:BOOL=ON //build with layer deconvolution WITH_LAYER_deconvolution:BOOL=ON //build with layer deconvolution1d WITH_LAYER_deconvolution1d:BOOL=ON //build with layer deconvolution3d WITH_LAYER_deconvolution3d:BOOL=ON //build with layer deconvolutiondepthwise WITH_LAYER_deconvolutiondepthwise:BOOL=ON //build with layer deconvolutiondepthwise1d WITH_LAYER_deconvolutiondepthwise1d:BOOL=ON //build with layer deconvolutiondepthwise3d WITH_LAYER_deconvolutiondepthwise3d:BOOL=ON //build with layer deepcopy WITH_LAYER_deepcopy:BOOL=ON //build with layer deformableconv2d WITH_LAYER_deformableconv2d:BOOL=ON //build with layer dequantize WITH_LAYER_dequantize:BOOL=ON //build with layer detectionoutput WITH_LAYER_detectionoutput:BOOL=ON //build with layer diag WITH_LAYER_diag:BOOL=ON //build with layer dropout WITH_LAYER_dropout:BOOL=ON //build with layer einsum WITH_LAYER_einsum:BOOL=ON //build with layer eltwise WITH_LAYER_eltwise:BOOL=ON //build with layer elu WITH_LAYER_elu:BOOL=ON //build with layer embed WITH_LAYER_embed:BOOL=ON //build with layer erf WITH_LAYER_erf:BOOL=ON //build with layer exp WITH_LAYER_exp:BOOL=ON //build with layer expanddims WITH_LAYER_expanddims:BOOL=ON //build with layer flatten WITH_LAYER_flatten:BOOL=ON //build with layer fold WITH_LAYER_fold:BOOL=ON //build with layer gelu WITH_LAYER_gelu:BOOL=ON //build with layer gemm WITH_LAYER_gemm:BOOL=ON //build with layer glu WITH_LAYER_glu:BOOL=ON //build with layer gridsample WITH_LAYER_gridsample:BOOL=ON //build with layer groupnorm WITH_LAYER_groupnorm:BOOL=ON //build with layer gru WITH_LAYER_gru:BOOL=ON //build with layer hardsigmoid WITH_LAYER_hardsigmoid:BOOL=ON //build with layer hardswish WITH_LAYER_hardswish:BOOL=ON //build with layer innerproduct WITH_LAYER_innerproduct:BOOL=ON //build with layer input WITH_LAYER_input:BOOL=ON //build with layer instancenorm WITH_LAYER_instancenorm:BOOL=ON //build with layer interp WITH_LAYER_interp:BOOL=ON //build with layer layernorm WITH_LAYER_layernorm:BOOL=ON //build with layer log WITH_LAYER_log:BOOL=ON //build with layer lrn WITH_LAYER_lrn:BOOL=ON //build with layer lstm WITH_LAYER_lstm:BOOL=ON //build with layer matmul WITH_LAYER_matmul:BOOL=ON //build with layer memorydata WITH_LAYER_memorydata:BOOL=ON //build with layer mish WITH_LAYER_mish:BOOL=ON //build with layer multiheadattention WITH_LAYER_multiheadattention:BOOL=ON //build with layer mvn WITH_LAYER_mvn:BOOL=ON //build with layer noop WITH_LAYER_noop:BOOL=ON //build with layer normalize WITH_LAYER_normalize:BOOL=ON //build with layer packing WITH_LAYER_packing:BOOL=ON //build with layer padding WITH_LAYER_padding:BOOL=ON //build with layer permute WITH_LAYER_permute:BOOL=ON //build with layer pixelshuffle WITH_LAYER_pixelshuffle:BOOL=ON //build with layer pooling WITH_LAYER_pooling:BOOL=ON //build with layer pooling1d WITH_LAYER_pooling1d:BOOL=ON //build with layer pooling3d WITH_LAYER_pooling3d:BOOL=ON //build with layer power WITH_LAYER_power:BOOL=ON //build with layer prelu WITH_LAYER_prelu:BOOL=ON //build with layer priorbox WITH_LAYER_priorbox:BOOL=ON //build with layer proposal WITH_LAYER_proposal:BOOL=ON //build with layer psroipooling WITH_LAYER_psroipooling:BOOL=ON //build with layer quantize WITH_LAYER_quantize:BOOL=ON //build with layer reduction WITH_LAYER_reduction:BOOL=ON //build with layer relu WITH_LAYER_relu:BOOL=ON //build with layer reorg WITH_LAYER_reorg:BOOL=ON //build with layer requantize WITH_LAYER_requantize:BOOL=ON //build with layer reshape WITH_LAYER_reshape:BOOL=ON //build with layer rnn WITH_LAYER_rnn:BOOL=ON //build with layer roialign WITH_LAYER_roialign:BOOL=ON //build with layer roipooling WITH_LAYER_roipooling:BOOL=ON //build with layer scale WITH_LAYER_scale:BOOL=ON //build with layer selu WITH_LAYER_selu:BOOL=ON //build with layer shufflechannel WITH_LAYER_shufflechannel:BOOL=ON //build with layer sigmoid WITH_LAYER_sigmoid:BOOL=ON //build with layer slice WITH_LAYER_slice:BOOL=ON //build with layer softmax WITH_LAYER_softmax:BOOL=ON //build with layer softplus WITH_LAYER_softplus:BOOL=ON //build with layer split WITH_LAYER_split:BOOL=ON //build with layer spp WITH_LAYER_spp:BOOL=OFF //build with layer squeeze WITH_LAYER_squeeze:BOOL=ON //build with layer statisticspooling WITH_LAYER_statisticspooling:BOOL=ON //build with layer swish WITH_LAYER_swish:BOOL=ON //build with layer tanh WITH_LAYER_tanh:BOOL=ON //build with layer threshold WITH_LAYER_threshold:BOOL=ON //build with layer tile WITH_LAYER_tile:BOOL=ON //build with layer unaryop WITH_LAYER_unaryop:BOOL=ON //build with layer unfold WITH_LAYER_unfold:BOOL=ON //build with layer yolodetectionoutput WITH_LAYER_yolodetectionoutput:BOOL=ON //build with layer yolov3detectionoutput WITH_LAYER_yolov3detectionoutput:BOOL=ON //Value Computed by CMake ncnn_BINARY_DIR:STATIC=/content/ncnn/build //Value Computed by CMake ncnn_IS_TOP_LEVEL:STATIC=ON //Value Computed by CMake ncnn_SOURCE_DIR:STATIC=/content/ncnn //The directory containing a CMake configuration file for protobuf. protobuf_DIR:PATH=protobuf_DIR-NOTFOUND ######################## # INTERNAL cache entries ######################## //ADVANCED property for variable: CMAKE_ADDR2LINE CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_AR CMAKE_AR-ADVANCED:INTERNAL=1 //This is the directory where this CMakeCache.txt was created CMAKE_CACHEFILE_DIR:INTERNAL=/content/ncnn/build //Major version of cmake used to create the current loaded cache CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 //Minor version of cmake used to create the current loaded cache CMAKE_CACHE_MINOR_VERSION:INTERNAL=27 //Patch version of cmake used to create the current loaded cache CMAKE_CACHE_PATCH_VERSION:INTERNAL=4 //ADVANCED property for variable: CMAKE_COLOR_MAKEFILE CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 //Path to CMake executable. CMAKE_COMMAND:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cmake //Path to cpack program executable. CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/bin/cpack //Path to ctest program executable. CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/bin/ctest //ADVANCED property for variable: CMAKE_CXX_COMPILER CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_COMPILER_AR CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_COMPILER CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_COMPILER_AR CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_DLLTOOL CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 //Executable file format CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 //Name of external makefile project generator. CMAKE_EXTRA_GENERATOR:INTERNAL= //Name of generator. CMAKE_GENERATOR:INTERNAL=Unix Makefiles //Generator instance identifier. CMAKE_GENERATOR_INSTANCE:INTERNAL= //Name of generator platform. CMAKE_GENERATOR_PLATFORM:INTERNAL= //Name of generator toolset. CMAKE_GENERATOR_TOOLSET:INTERNAL= //Test CMAKE_HAVE_LIBC_PTHREAD CMAKE_HAVE_LIBC_PTHREAD:INTERNAL=1 //Source directory with the top level CMakeLists.txt file for this // project CMAKE_HOME_DIRECTORY:INTERNAL=/content/ncnn //ADVANCED property for variable: CMAKE_INSTALL_BINDIR CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_DATADIR CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_DOCDIR CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_INFODIR CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_LIBDIR CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_MANDIR CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_SBINDIR CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1 //Install .so files without execute permission. CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 //ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_LINKER CMAKE_LINKER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MAKE_PROGRAM CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_NM CMAKE_NM-ADVANCED:INTERNAL=1 //number of local generators CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=10 //ADVANCED property for variable: CMAKE_OBJCOPY CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_OBJDUMP CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 //Platform information initialized CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 //ADVANCED property for variable: CMAKE_RANLIB CMAKE_RANLIB-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_READELF CMAKE_READELF-ADVANCED:INTERNAL=1 //Path to CMake installation. CMAKE_ROOT:INTERNAL=/usr/local/lib/python3.10/dist-packages/cmake/data/share/cmake-3.27 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_SKIP_RPATH CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_STRIP CMAKE_STRIP-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_TAPI CMAKE_TAPI-ADVANCED:INTERNAL=1 //uname command CMAKE_UNAME:INTERNAL=/usr/bin/uname //ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 //Compiler support for a deprecated attribute COMPILER_HAS_DEPRECATED:INTERNAL=1 //Test COMPILER_HAS_DEPRECATED_ATTR COMPILER_HAS_DEPRECATED_ATTR:INTERNAL=1 //Test COMPILER_HAS_HIDDEN_INLINE_VISIBILITY COMPILER_HAS_HIDDEN_INLINE_VISIBILITY:INTERNAL=1 //Test COMPILER_HAS_HIDDEN_VISIBILITY COMPILER_HAS_HIDDEN_VISIBILITY:INTERNAL=1 //Details about finding Protobuf FIND_PACKAGE_MESSAGE_DETAILS_Protobuf:INTERNAL=[/usr/lib/x86_64-linux-gnu/libprotobuf.so][/usr/include][v3.12.4()] //Details about finding Threads FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] //Test NCNN_COMPILER_SUPPORT_GNU_INLINE_ASM NCNN_COMPILER_SUPPORT_GNU_INLINE_ASM:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_AVX NCNN_COMPILER_SUPPORT_X86_AVX:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_AVX2 NCNN_COMPILER_SUPPORT_X86_AVX2:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_AVX512 NCNN_COMPILER_SUPPORT_X86_AVX512:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_AVX512_BF16 NCNN_COMPILER_SUPPORT_X86_AVX512_BF16:INTERNAL= //Test NCNN_COMPILER_SUPPORT_X86_AVX512_FP16 NCNN_COMPILER_SUPPORT_X86_AVX512_FP16:INTERNAL= //Test NCNN_COMPILER_SUPPORT_X86_AVX512_VNNI NCNN_COMPILER_SUPPORT_X86_AVX512_VNNI:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_AVX_VNNI NCNN_COMPILER_SUPPORT_X86_AVX_VNNI:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_F16C NCNN_COMPILER_SUPPORT_X86_F16C:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_FMA NCNN_COMPILER_SUPPORT_X86_FMA:INTERNAL=1 //Test NCNN_COMPILER_SUPPORT_X86_XOP NCNN_COMPILER_SUPPORT_X86_XOP:INTERNAL=1 //ADVANCED property for variable: Protobuf_INCLUDE_DIR Protobuf_INCLUDE_DIR-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_LIBRARY_DEBUG Protobuf_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_LIBRARY_RELEASE Protobuf_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_LITE_LIBRARY_DEBUG Protobuf_LITE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_LITE_LIBRARY_RELEASE Protobuf_LITE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_PROTOC_EXECUTABLE Protobuf_PROTOC_EXECUTABLE-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_PROTOC_LIBRARY_DEBUG Protobuf_PROTOC_LIBRARY_DEBUG-ADVANCED:INTERNAL=1 //ADVANCED property for variable: Protobuf_PROTOC_LIBRARY_RELEASE Protobuf_PROTOC_LIBRARY_RELEASE-ADVANCED:INTERNAL=1 //linker supports push/pop state _CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE //CMAKE_INSTALL_PREFIX during last run _GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=/content/ncnn/build/install |