├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── 3rdparty ├── cub │ ├── CHANGE_LOG.TXT │ ├── LICENSE.TXT │ ├── README.md │ ├── common.mk │ ├── cub │ │ ├── agent │ │ │ ├── agent_histogram.cuh │ │ │ ├── agent_radix_sort_downsweep.cuh │ │ │ ├── agent_radix_sort_upsweep.cuh │ │ │ ├── agent_reduce.cuh │ │ │ ├── agent_reduce_by_key.cuh │ │ │ ├── agent_rle.cuh │ │ │ ├── agent_scan.cuh │ │ │ ├── agent_segment_fixup.cuh │ │ │ ├── agent_select_if.cuh │ │ │ ├── agent_spmv_csrt.cuh │ │ │ ├── agent_spmv_orig.cuh │ │ │ ├── agent_spmv_row_based.cuh │ │ │ └── single_pass_scan_operators.cuh │ │ ├── block │ │ │ ├── block_adjacent_difference.cuh │ │ │ ├── block_discontinuity.cuh │ │ │ ├── block_exchange.cuh │ │ │ ├── block_histogram.cuh │ │ │ ├── block_load.cuh │ │ │ ├── block_radix_rank.cuh │ │ │ ├── block_radix_sort.cuh │ │ │ ├── block_raking_layout.cuh │ │ │ ├── block_reduce.cuh │ │ │ ├── block_scan.cuh │ │ │ ├── block_shuffle.cuh │ │ │ ├── block_store.cuh │ │ │ └── specializations │ │ │ │ ├── block_histogram_atomic.cuh │ │ │ │ ├── block_histogram_sort.cuh │ │ │ │ ├── block_reduce_raking.cuh │ │ │ │ ├── block_reduce_raking_commutative_only.cuh │ │ │ │ ├── block_reduce_warp_reductions.cuh │ │ │ │ ├── block_scan_raking.cuh │ │ │ │ ├── block_scan_warp_scans.cuh │ │ │ │ ├── block_scan_warp_scans2.cuh │ │ │ │ └── block_scan_warp_scans3.cuh │ │ ├── cub.cuh │ │ ├── device │ │ │ ├── device_histogram.cuh │ │ │ ├── device_partition.cuh │ │ │ ├── device_radix_sort.cuh │ │ │ ├── device_reduce.cuh │ │ │ ├── device_run_length_encode.cuh │ │ │ ├── device_scan.cuh │ │ │ ├── device_segmented_radix_sort.cuh │ │ │ ├── device_segmented_reduce.cuh │ │ │ ├── device_select.cuh │ │ │ ├── device_spmv.cuh │ │ │ └── dispatch │ │ │ │ ├── dispatch_histogram.cuh │ │ │ │ ├── dispatch_radix_sort.cuh │ │ │ │ ├── dispatch_reduce.cuh │ │ │ │ ├── dispatch_reduce_by_key.cuh │ │ │ │ ├── dispatch_rle.cuh │ │ │ │ ├── dispatch_scan.cuh │ │ │ │ ├── dispatch_select_if.cuh │ │ │ │ ├── dispatch_spmv_csrt.cuh │ │ │ │ ├── dispatch_spmv_orig.cuh │ │ │ │ └── dispatch_spmv_row_based.cuh │ │ ├── grid │ │ │ ├── grid_barrier.cuh │ │ │ ├── grid_even_share.cuh │ │ │ ├── grid_mapping.cuh │ │ │ └── grid_queue.cuh │ │ ├── host │ │ │ └── mutex.cuh │ │ ├── iterator │ │ │ ├── arg_index_input_iterator.cuh │ │ │ ├── cache_modified_input_iterator.cuh │ │ │ ├── cache_modified_output_iterator.cuh │ │ │ ├── constant_input_iterator.cuh │ │ │ ├── counting_input_iterator.cuh │ │ │ ├── discard_output_iterator.cuh │ │ │ ├── tex_obj_input_iterator.cuh │ │ │ ├── tex_ref_input_iterator.cuh │ │ │ └── transform_input_iterator.cuh │ │ ├── thread │ │ │ ├── thread_load.cuh │ │ │ ├── thread_operators.cuh │ │ │ ├── thread_reduce.cuh │ │ │ ├── thread_scan.cuh │ │ │ ├── thread_search.cuh │ │ │ └── thread_store.cuh │ │ ├── util_allocator.cuh │ │ ├── util_arch.cuh │ │ ├── util_debug.cuh │ │ ├── util_device.cuh │ │ ├── util_macro.cuh │ │ ├── util_namespace.cuh │ │ ├── util_ptx.cuh │ │ ├── util_type.cuh │ │ └── warp │ │ │ ├── specializations │ │ │ ├── warp_reduce_shfl.cuh │ │ │ ├── warp_reduce_smem.cuh │ │ │ ├── warp_scan_shfl.cuh │ │ │ └── warp_scan_smem.cuh │ │ │ ├── warp_reduce.cuh │ │ │ └── warp_scan.cuh │ ├── eclipse code style profile.xml │ ├── examples │ │ ├── block │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── example_block_radix_sort.cu │ │ │ ├── example_block_reduce.cu │ │ │ ├── example_block_scan.cu │ │ │ └── reduce_by_key.cu │ │ └── device │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── example_device_partition_flagged.cu │ │ │ ├── example_device_partition_if.cu │ │ │ ├── example_device_radix_sort.cu │ │ │ ├── example_device_reduce.cu │ │ │ ├── example_device_scan.cu │ │ │ ├── example_device_select_flagged.cu │ │ │ ├── example_device_select_if.cu │ │ │ ├── example_device_select_unique.cu │ │ │ └── example_device_sort_find_non_trivial_runs.cu │ ├── experimental │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── defunct │ │ │ ├── example_coo_spmv.cu │ │ │ └── test_device_seg_reduce.cu │ │ ├── histogram │ │ │ ├── histogram_cub.h │ │ │ ├── histogram_gmem_atomics.h │ │ │ └── histogram_smem_atomics.h │ │ ├── histogram_compare.cu │ │ ├── sparse_matrix.h │ │ ├── spmv_compare.cu │ │ └── spmv_script.sh │ ├── test │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── link_a.cu │ │ ├── link_b.cu │ │ ├── link_main.cpp │ │ ├── mersenne.h │ │ ├── test_allocator.cu │ │ ├── test_block_histogram.cu │ │ ├── test_block_load_store.cu │ │ ├── test_block_radix_sort.cu │ │ ├── test_block_reduce.cu │ │ ├── test_block_scan.cu │ │ ├── test_device_histogram.cu │ │ ├── test_device_radix_sort.cu │ │ ├── test_device_reduce.cu │ │ ├── test_device_reduce_by_key.cu │ │ ├── test_device_run_length_encode.cu │ │ ├── test_device_scan.cu │ │ ├── test_device_select_if.cu │ │ ├── test_device_select_unique.cu │ │ ├── test_grid_barrier.cu │ │ ├── test_iterator.cu │ │ ├── test_util.h │ │ ├── test_warp_reduce.cu │ │ └── test_warp_scan.cu │ └── tune │ │ ├── .gitignore │ │ ├── Makefile │ │ └── tune_device_reduce.cu ├── googletest │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── appveyor.yml │ ├── googlemock │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── DesignDoc.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ ├── KnownIssues.md │ │ │ ├── v1_5 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── v1_6 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ └── v1_7 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ └── gmock-port.h │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── 2005 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcproj │ │ │ │ ├── gmock_config.vsprops │ │ │ │ ├── gmock_main.vcproj │ │ │ │ └── gmock_test.vcproj │ │ │ ├── 2010 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ │ └── 2015 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ ├── scripts │ │ │ ├── fuse_gmock_files.py │ │ │ ├── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ │ ├── gmock-config.in │ │ │ ├── gmock_doctor.py │ │ │ ├── upload.py │ │ │ └── upload_gmock.py │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-generated-actions_test.cc │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers_test.cc │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── googletest │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.md │ │ │ └── XcodeGuide.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── release_docs.py │ │ │ ├── test │ │ │ │ └── Makefile │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ └── travis.sh └── openmp │ ├── .arcconfig │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CREDITS.txt │ ├── LICENSE.txt │ ├── libomptarget │ ├── Build_With_CMake.txt │ ├── CMakeLists.txt │ ├── README.txt │ ├── cmake │ │ └── Modules │ │ │ ├── LibomptargetGetDependencies.cmake │ │ │ ├── LibomptargetUtils.cmake │ │ │ └── config-ix.cmake │ ├── exports │ ├── plugins │ │ ├── CMakeLists.txt │ │ ├── aarch64 │ │ │ └── CMakeLists.txt │ │ ├── common │ │ │ └── elf_common.c │ │ ├── cuda │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ │ └── rtl.cpp │ │ ├── exports │ │ ├── generic-elf-64bit │ │ │ └── src │ │ │ │ └── rtl.cpp │ │ ├── ppc64 │ │ │ └── CMakeLists.txt │ │ ├── ppc64le │ │ │ └── CMakeLists.txt │ │ └── x86_64 │ │ │ └── CMakeLists.txt │ ├── src │ │ ├── omptarget.cpp │ │ ├── omptarget.h │ │ └── omptargetplugin.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── lit.cfg │ │ ├── lit.site.cfg.in │ │ └── offloading │ │ ├── offloading_success.c │ │ └── offloading_success.cpp │ ├── offload │ ├── Makefile │ ├── README.txt │ ├── doc │ │ ├── Reference.pdf │ │ └── doxygen │ │ │ ├── config │ │ │ └── header.tex │ └── src │ │ ├── cean_util.cpp │ │ ├── cean_util.h │ │ ├── coi │ │ ├── coi_client.cpp │ │ ├── coi_client.h │ │ ├── coi_server.cpp │ │ └── coi_server.h │ │ ├── compiler_if_host.cpp │ │ ├── compiler_if_host.h │ │ ├── compiler_if_target.cpp │ │ ├── compiler_if_target.h │ │ ├── dv_util.cpp │ │ ├── dv_util.h │ │ ├── liboffload_error.c │ │ ├── liboffload_error_codes.h │ │ ├── liboffload_msg.c │ │ ├── liboffload_msg.h │ │ ├── mic_lib.f90 │ │ ├── offload.h │ │ ├── offload_common.cpp │ │ ├── offload_common.h │ │ ├── offload_engine.cpp │ │ ├── offload_engine.h │ │ ├── offload_env.cpp │ │ ├── offload_env.h │ │ ├── offload_host.cpp │ │ ├── offload_host.h │ │ ├── offload_myo_host.cpp │ │ ├── offload_myo_host.h │ │ ├── offload_myo_target.cpp │ │ ├── offload_myo_target.h │ │ ├── offload_omp_host.cpp │ │ ├── offload_omp_target.cpp │ │ ├── offload_orsl.cpp │ │ ├── offload_orsl.h │ │ ├── offload_table.cpp │ │ ├── offload_table.h │ │ ├── offload_target.cpp │ │ ├── offload_target.h │ │ ├── offload_target_main.cpp │ │ ├── offload_timer.h │ │ ├── offload_timer_host.cpp │ │ ├── offload_timer_target.cpp │ │ ├── offload_trace.cpp │ │ ├── offload_trace.h │ │ ├── offload_util.cpp │ │ ├── offload_util.h │ │ ├── ofldbegin.cpp │ │ ├── ofldend.cpp │ │ ├── orsl-lite │ │ ├── include │ │ │ └── orsl-lite.h │ │ ├── lib │ │ │ └── orsl-lite.c │ │ └── version.txt │ │ ├── rdtsc.h │ │ ├── use_mpss2.txt │ │ └── use_mpss_win.txt │ ├── runtime │ ├── .clang-format │ ├── Build_With_CMake.txt │ ├── CMakeLists.txt │ ├── README.txt │ ├── cmake │ │ ├── LibompCheckFortranFlag.cmake │ │ ├── LibompCheckLinkerFlag.cmake │ │ ├── LibompDefinitions.cmake │ │ ├── LibompExports.cmake │ │ ├── LibompGetArchitecture.cmake │ │ ├── LibompHandleFlags.cmake │ │ ├── LibompMicroTests.cmake │ │ ├── LibompUtils.cmake │ │ └── config-ix.cmake │ ├── doc │ │ ├── Reference.pdf │ │ └── doxygen │ │ │ ├── config │ │ │ ├── header.tex │ │ │ └── libomp_interface.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── dllexports │ │ ├── exports_so.txt │ │ ├── extractExternal.cpp │ │ ├── i18n │ │ │ └── en_US.txt │ │ ├── include │ │ │ ├── 30 │ │ │ │ ├── omp.h.var │ │ │ │ ├── omp_lib.f.var │ │ │ │ ├── omp_lib.f90.var │ │ │ │ ├── omp_lib.h.var │ │ │ │ └── ompt.h.var │ │ │ ├── 40 │ │ │ │ ├── omp.h.var │ │ │ │ ├── omp_lib.f.var │ │ │ │ ├── omp_lib.f90.var │ │ │ │ ├── omp_lib.h.var │ │ │ │ └── ompt.h.var │ │ │ ├── 45 │ │ │ │ ├── omp.h.var │ │ │ │ ├── omp_lib.f.var │ │ │ │ ├── omp_lib.f90.var │ │ │ │ ├── omp_lib.h.var │ │ │ │ └── ompt.h.var │ │ │ └── 50 │ │ │ │ ├── omp.h.var │ │ │ │ ├── omp_lib.f.var │ │ │ │ ├── omp_lib.f90.var │ │ │ │ ├── omp_lib.h.var │ │ │ │ └── ompt.h.var │ │ ├── kmp.h │ │ ├── kmp_affinity.cpp │ │ ├── kmp_affinity.h │ │ ├── kmp_alloc.cpp │ │ ├── kmp_atomic.cpp │ │ ├── kmp_atomic.h │ │ ├── kmp_barrier.cpp │ │ ├── kmp_cancel.cpp │ │ ├── kmp_config.h.cmake │ │ ├── kmp_csupport.cpp │ │ ├── kmp_debug.cpp │ │ ├── kmp_debug.h │ │ ├── kmp_debugger.cpp │ │ ├── kmp_debugger.h │ │ ├── kmp_dispatch.cpp │ │ ├── kmp_environment.cpp │ │ ├── kmp_environment.h │ │ ├── kmp_error.cpp │ │ ├── kmp_error.h │ │ ├── kmp_ftn_cdecl.cpp │ │ ├── kmp_ftn_entry.h │ │ ├── kmp_ftn_extra.cpp │ │ ├── kmp_ftn_os.h │ │ ├── kmp_ftn_stdcall.cpp │ │ ├── kmp_global.cpp │ │ ├── kmp_gsupport.cpp │ │ ├── kmp_i18n.cpp │ │ ├── kmp_i18n.h │ │ ├── kmp_import.cpp │ │ ├── kmp_io.cpp │ │ ├── kmp_io.h │ │ ├── kmp_itt.cpp │ │ ├── kmp_itt.h │ │ ├── kmp_itt.inl │ │ ├── kmp_lock.cpp │ │ ├── kmp_lock.h │ │ ├── kmp_omp.h │ │ ├── kmp_os.h │ │ ├── kmp_platform.h │ │ ├── kmp_runtime.cpp │ │ ├── kmp_safe_c_api.h │ │ ├── kmp_sched.cpp │ │ ├── kmp_settings.cpp │ │ ├── kmp_settings.h │ │ ├── kmp_stats.cpp │ │ ├── kmp_stats.h │ │ ├── kmp_stats_timing.cpp │ │ ├── kmp_stats_timing.h │ │ ├── kmp_str.cpp │ │ ├── kmp_str.h │ │ ├── kmp_stub.cpp │ │ ├── kmp_stub.h │ │ ├── kmp_taskdeps.cpp │ │ ├── kmp_tasking.cpp │ │ ├── kmp_taskq.cpp │ │ ├── kmp_threadprivate.cpp │ │ ├── kmp_utility.cpp │ │ ├── kmp_version.cpp │ │ ├── kmp_version.h │ │ ├── kmp_wait_release.cpp │ │ ├── kmp_wait_release.h │ │ ├── kmp_wrapper_getpid.h │ │ ├── kmp_wrapper_malloc.h │ │ ├── libomp.rc.var │ │ ├── ompt-event-specific.h │ │ ├── ompt-general.cpp │ │ ├── ompt-internal.h │ │ ├── ompt-specific.cpp │ │ ├── ompt-specific.h │ │ ├── test-touch.c │ │ ├── thirdparty │ │ │ └── ittnotify │ │ │ │ ├── disable_warnings.h │ │ │ │ ├── ittnotify.h │ │ │ │ ├── ittnotify_config.h │ │ │ │ ├── ittnotify_static.c │ │ │ │ ├── ittnotify_static.h │ │ │ │ ├── ittnotify_types.h │ │ │ │ └── legacy │ │ │ │ └── ittnotify.h │ │ ├── tsan_annotations.cpp │ │ ├── tsan_annotations.h │ │ ├── z_Linux_asm.S │ │ ├── z_Linux_util.cpp │ │ ├── z_Windows_NT-586_asm.asm │ │ ├── z_Windows_NT-586_util.cpp │ │ └── z_Windows_NT_util.cpp │ ├── test │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── has_openmp.c │ │ │ ├── kmp_aligned_malloc.c │ │ │ ├── kmp_set_defaults_lock_bug.c │ │ │ ├── omp_get_num_threads.c │ │ │ ├── omp_get_wtick.c │ │ │ ├── omp_get_wtime.c │ │ │ └── omp_in_parallel.c │ │ ├── atomic │ │ │ └── omp_atomic.c │ │ ├── barrier │ │ │ └── omp_barrier.c │ │ ├── critical │ │ │ └── omp_critical.c │ │ ├── env │ │ │ ├── kmp_aff_disable_hwloc.c │ │ │ ├── kmp_set_dispatch_buf.c │ │ │ └── omp_wait_policy.c │ │ ├── flush │ │ │ └── omp_flush.c │ │ ├── lit.cfg │ │ ├── lit.site.cfg.in │ │ ├── lock │ │ │ ├── omp_init_lock.c │ │ │ ├── omp_lock.c │ │ │ ├── omp_nest_lock.c │ │ │ ├── omp_test_lock.c │ │ │ └── omp_test_nest_lock.c │ │ ├── master │ │ │ ├── omp_master.c │ │ │ └── omp_master_3.c │ │ ├── misc_bugs │ │ │ ├── cancellation_for_sections.c │ │ │ ├── many-microtask-args.c │ │ │ ├── omp_foreign_thread_team_reuse.c │ │ │ └── teams-no-par.c │ │ ├── omp_my_sleep.h │ │ ├── omp_testsuite.h │ │ ├── ompt │ │ │ ├── callback.h │ │ │ ├── parallel │ │ │ │ ├── nested.c │ │ │ │ ├── nested_lwt.c │ │ │ │ ├── nested_serialized.c │ │ │ │ ├── normal.c │ │ │ │ └── serialized.c │ │ │ └── worksharing │ │ │ │ └── for │ │ │ │ ├── auto.c │ │ │ │ ├── auto_serialized.c │ │ │ │ ├── base.h │ │ │ │ ├── base_serialized.h │ │ │ │ ├── dynamic.c │ │ │ │ ├── dynamic_serialized.c │ │ │ │ ├── guided.c │ │ │ │ ├── guided_serialized.c │ │ │ │ ├── runtime.c │ │ │ │ ├── runtime_serialized.c │ │ │ │ ├── static.c │ │ │ │ └── static_serialized.c │ │ ├── parallel │ │ │ ├── omp_nested.c │ │ │ ├── omp_parallel_copyin.c │ │ │ ├── omp_parallel_default.c │ │ │ ├── omp_parallel_firstprivate.c │ │ │ ├── omp_parallel_if.c │ │ │ ├── omp_parallel_num_threads.c │ │ │ ├── omp_parallel_private.c │ │ │ ├── omp_parallel_reduction.c │ │ │ └── omp_parallel_shared.c │ │ ├── tasking │ │ │ ├── bug_nested_proxy_task.c │ │ │ ├── bug_proxy_task_dep_waiting.c │ │ │ ├── bug_serial_taskgroup.c │ │ │ ├── kmp_task_reduction_nest.cpp │ │ │ ├── kmp_taskloop.c │ │ │ ├── nested_parallel_tasking.c │ │ │ ├── nested_task_creation.c │ │ │ ├── omp_task.c │ │ │ ├── omp_task_final.c │ │ │ ├── omp_task_firstprivate.c │ │ │ ├── omp_task_if.c │ │ │ ├── omp_task_imp_firstprivate.c │ │ │ ├── omp_task_priority.c │ │ │ ├── omp_task_private.c │ │ │ ├── omp_task_shared.c │ │ │ ├── omp_taskloop_grainsize.c │ │ │ ├── omp_taskloop_num_tasks.c │ │ │ ├── omp_taskwait.c │ │ │ └── omp_taskyield.c │ │ ├── threadprivate │ │ │ ├── omp_threadprivate.c │ │ │ └── omp_threadprivate_for.c │ │ └── worksharing │ │ │ ├── for │ │ │ ├── bug_set_schedule_0.c │ │ │ ├── kmp_doacross_check.c │ │ │ ├── kmp_sch_simd_guided.c │ │ │ ├── kmp_sch_simd_runtime_api.c │ │ │ ├── kmp_sch_simd_runtime_guided.c │ │ │ ├── kmp_sch_simd_runtime_static.c │ │ │ ├── kmp_set_dispatch_buf.c │ │ │ ├── omp_for_bigbounds.c │ │ │ ├── omp_for_collapse.c │ │ │ ├── omp_for_firstprivate.c │ │ │ ├── omp_for_lastprivate.c │ │ │ ├── omp_for_nowait.c │ │ │ ├── omp_for_ordered.c │ │ │ ├── omp_for_private.c │ │ │ ├── omp_for_reduction.c │ │ │ ├── omp_for_schedule_auto.c │ │ │ ├── omp_for_schedule_dynamic.c │ │ │ ├── omp_for_schedule_guided.c │ │ │ ├── omp_for_schedule_runtime.c │ │ │ ├── omp_for_schedule_static.c │ │ │ ├── omp_for_schedule_static_3.c │ │ │ ├── omp_parallel_for_firstprivate.c │ │ │ ├── omp_parallel_for_if.c │ │ │ ├── omp_parallel_for_lastprivate.c │ │ │ ├── omp_parallel_for_ordered.c │ │ │ ├── omp_parallel_for_private.c │ │ │ └── omp_parallel_for_reduction.c │ │ │ ├── sections │ │ │ ├── omp_parallel_sections_firstprivate.c │ │ │ ├── omp_parallel_sections_lastprivate.c │ │ │ ├── omp_parallel_sections_private.c │ │ │ ├── omp_parallel_sections_reduction.c │ │ │ ├── omp_section_firstprivate.c │ │ │ ├── omp_section_lastprivate.c │ │ │ ├── omp_section_private.c │ │ │ ├── omp_sections_nowait.c │ │ │ └── omp_sections_reduction.c │ │ │ └── single │ │ │ ├── omp_single.c │ │ │ ├── omp_single_copyprivate.c │ │ │ ├── omp_single_nowait.c │ │ │ └── omp_single_private.c │ └── tools │ │ ├── check-depends.pl │ │ ├── check-execstack.pl │ │ ├── check-instruction-set.pl │ │ ├── generate-def.pl │ │ ├── lib │ │ ├── Build.pm │ │ ├── LibOMP.pm │ │ ├── Platform.pm │ │ ├── Uname.pm │ │ └── tools.pm │ │ └── message-converter.pl │ ├── testsuite │ ├── LICENSE │ ├── LLVM-IR │ │ ├── lit.cfg │ │ ├── lit.site.cfg.in │ │ └── lit.tmp │ ├── Makefile │ ├── README_LLVM_OPENMP │ ├── README_OpenMP_Validation_Suite │ ├── adding_xfails.py │ ├── bin │ │ ├── Makefile │ │ ├── distribute.sh │ │ ├── header │ │ ├── lit.cfg │ │ ├── lit.site.cfg.in │ │ └── lit.tmp │ ├── c │ │ ├── has_openmp.c │ │ ├── omp_atomic.c │ │ ├── omp_barrier.c │ │ ├── omp_critical.c │ │ ├── omp_flush.c │ │ ├── omp_for_collapse.c │ │ ├── omp_for_firstprivate.c │ │ ├── omp_for_lastprivate.c │ │ ├── omp_for_nowait.c │ │ ├── omp_for_ordered.c │ │ ├── omp_for_private.c │ │ ├── omp_for_reduction.c │ │ ├── omp_for_schedule_auto.c │ │ ├── omp_for_schedule_dynamic.c │ │ ├── omp_for_schedule_guided.c │ │ ├── omp_for_schedule_static.c │ │ ├── omp_for_schedule_static_3.c │ │ ├── omp_get_num_threads.c │ │ ├── omp_get_wtick.c │ │ ├── omp_get_wtime.c │ │ ├── omp_in_parallel.c │ │ ├── omp_lock.c │ │ ├── omp_master.c │ │ ├── omp_master_3.c │ │ ├── omp_nest_lock.c │ │ ├── omp_nested.c │ │ ├── omp_parallel_copyin.c │ │ ├── omp_parallel_default.c │ │ ├── omp_parallel_firstprivate.c │ │ ├── omp_parallel_for_firstprivate.c │ │ ├── omp_parallel_for_if.c │ │ ├── omp_parallel_for_lastprivate.c │ │ ├── omp_parallel_for_ordered.c │ │ ├── omp_parallel_for_private.c │ │ ├── omp_parallel_for_reduction.c │ │ ├── omp_parallel_if.c │ │ ├── omp_parallel_num_threads.c │ │ ├── omp_parallel_private.c │ │ ├── omp_parallel_reduction.c │ │ ├── omp_parallel_sections_firstprivate.c │ │ ├── omp_parallel_sections_lastprivate.c │ │ ├── omp_parallel_sections_private.c │ │ ├── omp_parallel_sections_reduction.c │ │ ├── omp_parallel_shared.c │ │ ├── omp_section_firstprivate.c │ │ ├── omp_section_lastprivate.c │ │ ├── omp_section_private.c │ │ ├── omp_sections_nowait.c │ │ ├── omp_sections_reduction.c │ │ ├── omp_single.c │ │ ├── omp_single_copyprivate.c │ │ ├── omp_single_nowait.c │ │ ├── omp_single_private.c │ │ ├── omp_task.c │ │ ├── omp_task_final.c │ │ ├── omp_task_firstprivate.c │ │ ├── omp_task_if.c │ │ ├── omp_task_imp_firstprivate.c │ │ ├── omp_task_private.c │ │ ├── omp_task_shared.c │ │ ├── omp_task_untied.c │ │ ├── omp_taskwait.c │ │ ├── omp_taskyield.c │ │ ├── omp_test_lock.c │ │ ├── omp_test_nest_lock.c │ │ ├── omp_threadprivate.c │ │ └── omp_threadprivate_for.c │ ├── common_utility.f │ ├── fortran │ │ ├── OMP1_TEST │ │ ├── OMP2_TEST │ │ ├── common_utility.f │ │ ├── do_collapse.f │ │ ├── do_firstprivate.f │ │ ├── do_lastprivate.f │ │ ├── do_ordered.f │ │ ├── do_private.f │ │ ├── do_reduction.f │ │ ├── do_schedule_dynamic.f │ │ ├── do_schedule_guided.f │ │ ├── do_schedule_static.f │ │ ├── has_openmp.f │ │ ├── omp_atomic.f │ │ ├── omp_barrier.f │ │ ├── omp_copyin.f │ │ ├── omp_critical.f │ │ ├── omp_flush.f │ │ ├── omp_get_num_threads.f │ │ ├── omp_get_wticks.f │ │ ├── omp_in_parallel.f │ │ ├── omp_lock.f │ │ ├── omp_master.f │ │ ├── omp_master_3.f │ │ ├── omp_nest_lock.f │ │ ├── omp_nested.f │ │ ├── omp_num_threads.f │ │ ├── omp_single.f │ │ ├── omp_task.f │ │ ├── omp_task_firstprivate.f │ │ ├── omp_task_if.f │ │ ├── omp_task_private.f │ │ ├── omp_task_shared.f │ │ ├── omp_task_untied.f │ │ ├── omp_taskwait.f │ │ ├── omp_test_nest_lock.f │ │ ├── omp_testlock.f │ │ ├── omp_testsuite.f │ │ ├── omp_threadprivate.f │ │ ├── omp_workshare.f │ │ ├── omp_workshare_default.f │ │ ├── omp_wtime.f │ │ ├── par_do_firstprivate.f │ │ ├── par_do_if.f │ │ ├── par_do_lastprivate.f │ │ ├── par_do_ordered.f │ │ ├── par_do_private.f │ │ ├── par_do_reduction.f │ │ ├── par_section_firstprivate.f │ │ ├── par_section_lastprivate.f │ │ ├── par_section_private.f │ │ ├── par_section_reduct.f │ │ ├── section_firstprivate.f │ │ ├── section_lastprivate.f │ │ ├── section_private.f │ │ ├── section_reduction.f │ │ ├── single_copyprivate.f │ │ ├── single_nowait.f │ │ ├── single_private.f │ │ └── testlist-f.txt │ ├── omp_my_sleep.f │ ├── omp_my_sleep.h │ ├── omp_testsuite.f │ ├── omp_testsuite.h │ ├── ompts-c.conf │ ├── ompts-f.conf │ ├── ompts.conf │ ├── ompts_makeHeader.pl │ ├── ompts_parser.pl │ ├── ompts_parserFunctions.pm │ ├── ompts_standaloneProc.c │ ├── ompts_standaloneProc.f │ ├── runtest.pl │ ├── template_parser_c.pl │ ├── template_parser_fortran.pl │ ├── testlist-c.txt │ ├── testlist-f.txt │ └── tests_to_integrate │ │ ├── omp_set_unset_lock_hinted.c │ │ └── omp_set_unset_lock_hinted.f │ └── www │ ├── README.txt │ ├── Reference.pdf │ ├── content.css │ ├── index.html │ └── menu.css ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTORS.md ├── DISCLAIMER ├── Jenkinsfile ├── KEYS ├── LICENSE ├── MKL_README.md ├── Makefile ├── NEWS.md ├── NOTICE ├── README.md ├── amalgamation ├── .gitignore ├── Makefile ├── README.md ├── amalgamation.py ├── dmlc-minimum0.cc ├── jni │ ├── org │ │ └── dmlc │ │ │ └── mxnet │ │ │ ├── MxnetException.java │ │ │ └── Predictor.java │ ├── org_dmlc_mxnet_Predictor.h │ └── predictor.cc ├── mxnet_predict0.cc ├── prep_nnvm.sh └── python │ └── mxnet_predict.py ├── appveyor.yml ├── benchmark └── python │ └── sparse │ ├── cast_storage.py │ ├── dot.py │ ├── memory_benchmark.py │ ├── sparse_end2end.py │ ├── sparse_op.py │ └── util.py ├── cmake ├── ChooseBlas.cmake ├── FirstClassLangCuda.cmake ├── Modules │ ├── FindAccelerate.cmake │ ├── FindAtlas.cmake │ ├── FindGperftools.cmake │ ├── FindJeMalloc.cmake │ ├── FindMKL.cmake │ └── FindOpenBLAS.cmake └── Utils.cmake ├── cpp-package ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cpp-package.mk ├── example │ ├── CMakeLists.txt │ ├── Makefile │ ├── alexnet.cpp │ ├── charRNN.cpp │ ├── example.mk │ ├── feature_extract │ │ ├── Makefile │ │ ├── README.md │ │ ├── feature_extract.cpp │ │ ├── prepare_data_with_opencv.cpp │ │ └── run.sh │ ├── get_mnist.sh │ ├── googlenet.cpp │ ├── inception_bn.cpp │ ├── lenet.cpp │ ├── lenet_with_mxdataiter.cpp │ ├── mlp.cpp │ ├── mlp_cpu.cpp │ ├── mlp_gpu.cpp │ ├── resnet.cpp │ ├── run_lenet_with_mxdataiter.sh │ └── test_score.cpp ├── include │ └── mxnet-cpp │ │ ├── .gitignore │ │ ├── CPPLINT.cfg │ │ ├── MxNetCpp.h │ │ ├── base.h │ │ ├── executor.h │ │ ├── executor.hpp │ │ ├── initializer.h │ │ ├── io.h │ │ ├── io.hpp │ │ ├── kvstore.h │ │ ├── kvstore.hpp │ │ ├── lr_scheduler.h │ │ ├── metric.h │ │ ├── model.h │ │ ├── monitor.h │ │ ├── monitor.hpp │ │ ├── ndarray.h │ │ ├── ndarray.hpp │ │ ├── op_map.h │ │ ├── op_suppl.h │ │ ├── op_util.h │ │ ├── operator.h │ │ ├── operator.hpp │ │ ├── optimizer.h │ │ ├── optimizer.hpp │ │ ├── shape.h │ │ ├── symbol.h │ │ └── symbol.hpp ├── scripts │ ├── OpWrapperGenerator.py │ └── lint.py └── tests │ ├── ci_test.sh │ └── travis │ ├── run_test.sh │ └── setup.sh ├── dlpack ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── docs │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Doxyfile │ └── Doxyfile.in ├── include │ └── dlpack │ │ ├── dlpack.h │ │ └── dlpackcpp.h └── src │ └── mock.cc ├── dmlc-core ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── cmake │ ├── Modules │ │ ├── FindCrypto.cmake │ │ └── FindHDFS.cmake │ ├── Utils.cmake │ └── lint.cmake ├── doc │ ├── .gitignore │ ├── Doxyfile │ ├── Makefile │ ├── README │ ├── conf.py │ ├── index.md │ ├── parameter.md │ └── sphinx_util.py ├── example │ ├── dmlc_example.mk │ └── parameter.cc ├── include │ └── dmlc │ │ ├── any.h │ │ ├── array_view.h │ │ ├── base.h │ │ ├── blockingconcurrentqueue.h │ │ ├── common.h │ │ ├── concurrency.h │ │ ├── concurrentqueue.h │ │ ├── config.h │ │ ├── data.h │ │ ├── endian.h │ │ ├── input_split_shuffle.h │ │ ├── io.h │ │ ├── json.h │ │ ├── logging.h │ │ ├── lua.h │ │ ├── memory.h │ │ ├── memory_io.h │ │ ├── omp.h │ │ ├── optional.h │ │ ├── parameter.h │ │ ├── recordio.h │ │ ├── registry.h │ │ ├── serializer.h │ │ ├── thread_local.h │ │ ├── threadediter.h │ │ ├── timer.h │ │ └── type_traits.h ├── make │ └── dmlc.mk ├── scripts │ ├── lint.py │ ├── packages.mk │ ├── setup_nvcc.sh │ └── travis │ │ ├── travis_before_cache.sh │ │ ├── travis_osx_install.sh │ │ ├── travis_script.sh │ │ └── travis_setup_env.sh ├── src │ ├── config.cc │ ├── data.cc │ ├── data │ │ ├── basic_row_iter.h │ │ ├── csv_parser.h │ │ ├── disk_row_iter.h │ │ ├── libfm_parser.h │ │ ├── libsvm_parser.h │ │ ├── parser.h │ │ ├── row_block.h │ │ ├── strtonum.h │ │ └── text_parser.h │ ├── io.cc │ ├── io │ │ ├── azure_filesys.cc │ │ ├── azure_filesys.h │ │ ├── cached_input_split.h │ │ ├── filesys.cc │ │ ├── filesys.h │ │ ├── hdfs_filesys.cc │ │ ├── hdfs_filesys.h │ │ ├── indexed_recordio_split.cc │ │ ├── indexed_recordio_split.h │ │ ├── input_split_base.cc │ │ ├── input_split_base.h │ │ ├── line_split.cc │ │ ├── line_split.h │ │ ├── local_filesys.cc │ │ ├── local_filesys.h │ │ ├── recordio_split.cc │ │ ├── recordio_split.h │ │ ├── s3_filesys.cc │ │ ├── s3_filesys.h │ │ ├── single_file_split.h │ │ ├── threaded_input_split.h │ │ └── uri_spec.h │ └── recordio.cc ├── test │ ├── .gitignore │ ├── README.md │ ├── csv_parser_test.cc │ ├── dataiter_test.cc │ ├── dmlc_test.mk │ ├── filesys_test.cc │ ├── iostream_test.cc │ ├── libfm_parser_test.cc │ ├── libsvm_parser_test.cc │ ├── logging_test.cc │ ├── parameter_test.cc │ ├── recordio_test.cc │ ├── registry_test.cc │ ├── split_read_test.cc │ ├── split_repeat_read_test.cc │ ├── split_test.cc │ ├── stream_read_test.cc │ ├── strtonum_test.cc │ └── unittest │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── dmlc_unittest.mk │ │ ├── unittest_any.cc │ │ ├── unittest_array_view.cc │ │ ├── unittest_config.cc │ │ ├── unittest_env.cc │ │ ├── unittest_json.cc │ │ ├── unittest_lockfree.cc │ │ ├── unittest_logging.cc │ │ ├── unittest_main.cc │ │ ├── unittest_optional.cc │ │ ├── unittest_param.cc │ │ ├── unittest_serializer.cc │ │ └── unittest_threaditer.cc ├── tracker │ ├── README.md │ ├── dmlc-submit │ ├── dmlc_tracker │ │ ├── __init__.py │ │ ├── kubernetes.py │ │ ├── launcher.py │ │ ├── local.py │ │ ├── mesos.py │ │ ├── mpi.py │ │ ├── opts.py │ │ ├── sge.py │ │ ├── slurm.py │ │ ├── ssh.py │ │ ├── submit.py │ │ ├── tracker.py │ │ └── yarn.py │ └── yarn │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.bat │ │ ├── build.sh │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── hadoop │ │ └── yarn │ │ └── dmlc │ │ ├── ApplicationMaster.java │ │ ├── Client.java │ │ └── TaskRecord.java └── windows │ ├── .gitignore │ ├── README.md │ ├── dmlc.sln │ └── dmlc │ └── dmlc.vcxproj ├── docker ├── .gitignore ├── Dockerfiles │ ├── Dockerfile.in.julia │ ├── Dockerfile.in.lib.cpu │ ├── Dockerfile.in.lib.gpu │ ├── Dockerfile.in.perl │ ├── Dockerfile.in.python │ ├── Dockerfile.in.r-lang │ ├── Dockerfile.in.scala │ └── License.md ├── README.md ├── install │ ├── cpp.sh │ ├── julia.sh │ ├── perl.sh │ ├── python.sh │ ├── r.sh │ └── scala.sh ├── run.sh └── tool.sh ├── docker_multiarch ├── .gitignore ├── Dockerfile.build.android.arm64 ├── Dockerfile.build.android.armv7 ├── Dockerfile.build.arm64 ├── Dockerfile.build.armv6 ├── Dockerfile.build.armv7 ├── Dockerfile.build.cmake.ubuntu-17.04 ├── Dockerfile.build.ubuntu-16.04-cuda_8.0_cudnn5 ├── Dockerfile.build.ubuntu-17.04 ├── Dockerfile.build.ubuntu-17.04.scala.docker ├── Dockerfile.run.ubuntu-17.04.julia ├── Dockerfile.run.ubuntu-17.04.perl ├── Dockerfile.run.ubuntu-17.04.python ├── Dockerfile.run.ubuntu-17.04.r ├── Dockerfile.test.ubuntu-17.04 ├── License.md ├── README.md ├── arm.crosscompile.android.mk ├── arm.crosscompile.mk └── tool.py ├── docs ├── .dockerignore ├── .gitignore ├── Dockerfile ├── Doxyfile ├── Makefile ├── README.md ├── _static │ ├── cn.svg │ ├── js │ │ ├── auto_module_index.js │ │ ├── clipboard.min.js │ │ ├── copycode.js │ │ ├── navbar.js │ │ ├── options.js │ │ ├── page.js │ │ ├── search.js │ │ └── sidebar.js │ ├── mxnet-theme │ │ ├── footer.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── navbar.html │ │ └── theme.conf │ ├── mxnet.css │ ├── searchtools_custom.js │ ├── selectlang.js │ └── us.svg ├── api │ ├── c++ │ │ └── index.md │ ├── julia │ │ └── index.md │ ├── perl │ │ ├── index.md │ │ ├── io.md │ │ ├── kvstore.md │ │ ├── module.md │ │ ├── ndarray.md │ │ └── symbol.md │ ├── python │ │ ├── autograd │ │ │ └── autograd.md │ │ ├── callback │ │ │ └── callback.md │ │ ├── contrib │ │ │ ├── contrib.md │ │ │ └── text.md │ │ ├── executor │ │ │ └── executor.md │ │ ├── gluon │ │ │ ├── contrib.md │ │ │ ├── data.md │ │ │ ├── gluon.md │ │ │ ├── loss.md │ │ │ ├── model_zoo.md │ │ │ ├── nn.md │ │ │ └── rnn.md │ │ ├── image │ │ │ └── image.md │ │ ├── index.md │ │ ├── io │ │ │ └── io.md │ │ ├── kvstore │ │ │ └── kvstore.md │ │ ├── metric │ │ │ └── metric.md │ │ ├── model.md │ │ ├── module │ │ │ └── module.md │ │ ├── ndarray │ │ │ ├── contrib.md │ │ │ ├── linalg.md │ │ │ ├── ndarray.md │ │ │ ├── random.md │ │ │ └── sparse.md │ │ ├── optimization │ │ │ └── optimization.md │ │ ├── rtc │ │ │ └── rtc.md │ │ ├── symbol │ │ │ ├── contrib.md │ │ │ ├── linalg.md │ │ │ ├── random.md │ │ │ ├── rnn.md │ │ │ ├── sparse.md │ │ │ └── symbol.md │ │ └── symbol_in_pictures │ │ │ └── symbol_in_pictures.md │ ├── r │ │ ├── Makefile │ │ └── index.md │ └── scala │ │ ├── index.md │ │ ├── io.md │ │ ├── kvstore.md │ │ ├── model.md │ │ ├── module.md │ │ ├── ndarray.md │ │ ├── symbol.md │ │ └── symbol_in_pictures.md ├── architecture │ ├── index.md │ ├── note_data_loading.md │ ├── note_engine.md │ ├── note_memory.md │ ├── overview.md │ ├── program_model.md │ ├── release_note_0_9.md │ └── rnn_interface.md ├── build_version_doc │ ├── AddPackageLink.py │ ├── AddVersion.py │ ├── build_all_version.sh │ └── build_doc.sh ├── community │ ├── contribute.md │ ├── index.md │ ├── mxnet_channels.md │ └── powered_by.md ├── conf.py ├── faq │ ├── add_op_in_backend.md │ ├── bucketing.md │ ├── caffe.md │ ├── cloud.md │ ├── develop_and_hack.md │ ├── env_var.md │ ├── faq.md │ ├── finetune.md │ ├── gradient_compression.md │ ├── index.md │ ├── model_parallel_lstm.md │ ├── multi_devices.md │ ├── new_op.md │ ├── nnpack.md │ ├── perf.md │ ├── recordio.md │ ├── s3_integration.md │ ├── security.md │ ├── smart_device.md │ └── visualize_graph.md ├── get_started │ ├── index.md │ └── why_mxnet.md ├── gluon │ └── index.md ├── index.md ├── install │ ├── amazonlinux_setup.md │ ├── build_from_source.md │ ├── centos_setup.md │ ├── index.md │ ├── osx_setup.md │ ├── raspbian_setup.md │ ├── tx2_setup.md │ ├── ubuntu_setup.md │ └── windows_setup.md ├── model_zoo │ └── index.md ├── mxdoc.py └── tutorials │ ├── basic │ ├── data.md │ ├── image_io.md │ ├── module.md │ ├── ndarray.md │ ├── ndarray_indexing.md │ ├── record_io.md │ └── symbol.md │ ├── c++ │ └── basics.md │ ├── embedded │ └── wine_detector.md │ ├── gluon │ ├── autograd.md │ ├── customop.md │ ├── gluon.md │ ├── hybrid.md │ ├── mnist.md │ └── ndarray.md │ ├── index.md │ ├── nlp │ └── cnn.md │ ├── python │ ├── kvstore.md │ ├── linear-regression.md │ ├── matrix_factorization.md │ ├── mnist.md │ └── predict_image.md │ ├── r │ ├── CallbackFunction.md │ ├── CustomIterator.md │ ├── CustomLossFunction.md │ ├── charRnnModel.md │ ├── classifyRealImageWithPretrainedModel.md │ ├── fiveMinutesNeuralNetwork.md │ ├── index.md │ ├── mnistCompetition.md │ ├── ndarray.md │ └── symbol.md │ ├── scala │ ├── char_lstm.md │ ├── mnist.md │ └── mxnet_scala_on_intellij.md │ ├── sparse │ ├── csr.md │ ├── row_sparse.md │ └── train.md │ ├── speech_recognition │ └── ctc.md │ ├── unsupervised_learning │ ├── auto_encoders.md │ └── gan.md │ └── vision │ └── large_scale_classification.md ├── example ├── MXNetTutorialTemplate.ipynb ├── README.md ├── adversary │ ├── README.md │ └── adversary_generation.ipynb ├── autoencoder │ ├── README.md │ ├── autoencoder.py │ ├── data.py │ ├── mnist_sae.py │ ├── model.py │ └── solver.py ├── bayesian-methods │ ├── README.md │ ├── algos.py │ ├── bdk.ipynb │ ├── bdk_demo.py │ ├── data_loader.py │ ├── sgld.ipynb │ └── utils.py ├── bi-lstm-sort │ ├── README.md │ ├── gen_data.py │ ├── infer_sort.py │ ├── lstm.py │ ├── lstm_sort.py │ ├── rnn_model.py │ └── sort_io.py ├── caffe │ ├── README.md │ ├── caffe_net.py │ ├── data.py │ └── train_model.py ├── capsnet │ ├── README.md │ ├── capsulelayers.py │ ├── capsulenet.py │ └── result.PNG ├── captcha │ ├── README.md │ ├── captcha_example.png │ └── mxnet_captcha.R ├── cnn_chinese_text_classification │ ├── README.md │ ├── data_helpers.py │ └── text_cnn.py ├── cnn_text_classification │ ├── .gitignore │ ├── README.md │ ├── data_helpers.py │ └── text_cnn.py ├── ctc │ ├── README.md │ ├── captcha_generator.py │ ├── ctc_metrics.py │ ├── hyperparams.py │ ├── lstm.py │ ├── lstm_ocr_infer.py │ ├── lstm_ocr_train.py │ ├── multiproc_data.py │ ├── ocr_iter.py │ ├── ocr_predict.py │ └── sample.jpg ├── deep-embedded-clustering │ ├── README.md │ ├── autoencoder.py │ ├── data.py │ ├── dec.py │ ├── model.py │ └── solver.py ├── dsd │ ├── README.md │ ├── mlp.py │ └── sparse_sgd.py ├── fcn-xs │ ├── README.md │ ├── data.py │ ├── fcn_xs.py │ ├── image_segmentaion.py │ ├── init_fcnxs.py │ ├── run_fcnxs.sh │ ├── solver.py │ └── symbol_fcnxs.py ├── gan │ └── CGAN_mnist_R │ │ ├── CGAN_mnist_setup.R │ │ ├── CGAN_train.R │ │ └── iterators.R ├── gluon │ ├── actor_critic.py │ ├── data.py │ ├── dcgan.py │ ├── image_classification.py │ ├── kaggle_k_fold_cross_validation.py │ ├── learning_rate_manipulation.py │ ├── lstm_crf.py │ ├── mnist.py │ ├── style_transfer │ │ ├── README.md │ │ ├── data.py │ │ ├── dataset │ │ │ └── download_dataset.py │ │ ├── download_images.py │ │ ├── main.py │ │ ├── models │ │ │ └── download_model.py │ │ ├── net.py │ │ ├── option.py │ │ └── utils.py │ ├── super_resolution.py │ ├── tree_lstm │ │ ├── LICENSE │ │ ├── dataset.cPickle │ │ ├── dataset.py │ │ ├── fetch_and_preprocess.sh │ │ ├── lib │ │ │ ├── CollapseUnaryTransformer.java │ │ │ ├── ConstituencyParse.java │ │ │ └── DependencyParse.java │ │ ├── main.py │ │ ├── scripts │ │ │ ├── download.py │ │ │ └── preprocess-sick.py │ │ └── tree_lstm.py │ └── word_language_model │ │ ├── README.md │ │ ├── data.py │ │ ├── get_ptb_data.sh │ │ ├── get_wikitext2_data.sh │ │ ├── model.py │ │ └── train.py ├── image-classification │ ├── README.md │ ├── __init__.py │ ├── benchmark.py │ ├── benchmark_score.py │ ├── common │ │ ├── __init__.py │ │ ├── data.py │ │ ├── find_mxnet.py │ │ ├── fit.py │ │ ├── modelzoo.py │ │ └── util.py │ ├── data │ │ ├── caltech256.sh │ │ └── imagenet1k-val.sh │ ├── fine-tune.py │ ├── predict-cpp │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ └── image-classification-predict.cc │ ├── score.py │ ├── symbol_alexnet.R │ ├── symbol_googlenet.R │ ├── symbol_inception-bn-28-small.R │ ├── symbol_inception-bn.R │ ├── symbol_inception-resnet-v1.R │ ├── symbol_inception-resnet-v2.R │ ├── symbol_lenet.R │ ├── symbol_mlp.R │ ├── symbol_resnet-28-small.R │ ├── symbol_resnet-v2.R │ ├── symbol_resnet.R │ ├── symbol_vgg.R │ ├── symbols │ │ ├── README.md │ │ ├── __init__.py │ │ ├── alexnet.py │ │ ├── googlenet.py │ │ ├── inception-bn.py │ │ ├── inception-resnet-v2.py │ │ ├── inception-v3.py │ │ ├── inception-v4.py │ │ ├── lenet.py │ │ ├── mlp.py │ │ ├── mobilenet.py │ │ ├── resnet-v1.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ └── vgg.py │ ├── test_score.py │ ├── train_cifar10.R │ ├── train_cifar10.py │ ├── train_imagenet.R │ ├── train_imagenet.py │ ├── train_mnist.R │ ├── train_mnist.py │ └── train_model.R ├── kaggle-ndsb1 │ ├── README.md │ ├── gen_img_list.py │ ├── predict_dsb.py │ ├── submission_dsb.py │ ├── symbol_dsb.py │ ├── train_dsb.py │ └── training_curves.py ├── kaggle-ndsb2 │ ├── Preprocessing.py │ ├── README.md │ ├── Train.R │ └── Train.py ├── memcost │ ├── Makefile │ ├── README.md │ └── inception_memcost.py ├── model-parallel │ ├── lstm │ │ ├── README.md │ │ ├── get_ptb_data.sh │ │ ├── lstm.py │ │ └── lstm_ptb.py │ └── matrix_factorization │ │ ├── README.md │ │ ├── get_data.py │ │ ├── model.py │ │ └── train.py ├── module │ ├── README.md │ ├── mnist_mlp.py │ ├── python_loss.py │ └── sequential_module.py ├── multi-task │ ├── README.md │ └── example_multi_task.py ├── mxnet_adversarial_vae │ ├── README.md │ ├── convert_data.py │ └── vaegan_mxnet.py ├── nce-loss │ ├── README.md │ ├── get_text8.sh │ ├── lstm_net.py │ ├── lstm_word.py │ ├── nce.py │ ├── random_data.py │ ├── text8_data.py │ ├── toy_nce.py │ ├── toy_softmax.py │ ├── wordvec.py │ ├── wordvec_net.py │ └── wordvec_subwords.py ├── neural-style │ ├── .gitignore │ ├── README.md │ ├── checkpoint-viewer.ipynb │ ├── download.sh │ ├── end_to_end │ │ ├── README.md │ │ ├── basic.py │ │ ├── boost_inference.py │ │ ├── boost_train.py │ │ ├── data_processing.py │ │ ├── gen_v3.py │ │ ├── gen_v4.py │ │ └── model_vgg19.py │ ├── find_mxnet.py │ ├── model_vgg19.py │ ├── neuralart.ipynb │ └── nstyle.py ├── notebooks │ └── README.md ├── numpy-ops │ ├── README.md │ ├── custom_softmax.py │ ├── ndarray_softmax.py │ ├── numpy_softmax.py │ └── weighted_logistic_regression.py ├── profiler │ ├── README.md │ ├── profiler_executor.py │ ├── profiler_imageiter.py │ ├── profiler_matmul.py │ └── profiler_ndarray.py ├── python-howto │ ├── README.md │ ├── data_iter.py │ ├── debug_conv.py │ ├── monitor_weights.py │ └── multiple_outputs.py ├── rcnn │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── demo.py │ ├── rcnn │ │ ├── __init__.py │ │ ├── config.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── callback.py │ │ │ ├── loader.py │ │ │ ├── metric.py │ │ │ ├── module.py │ │ │ └── tester.py │ │ ├── cython │ │ │ ├── .gitignore │ │ │ ├── __init__.py │ │ │ ├── bbox.pyx │ │ │ ├── cpu_nms.pyx │ │ │ ├── gpu_nms.hpp │ │ │ ├── gpu_nms.pyx │ │ │ ├── nms_kernel.cu │ │ │ └── setup.py │ │ ├── dataset │ │ │ ├── __init__.py │ │ │ ├── coco.py │ │ │ ├── ds_utils.py │ │ │ ├── imdb.py │ │ │ ├── pascal_voc.py │ │ │ └── pascal_voc_eval.py │ │ ├── io │ │ │ ├── __init__.py │ │ │ ├── image.py │ │ │ ├── rcnn.py │ │ │ └── rpn.py │ │ ├── logger.py │ │ ├── processing │ │ │ ├── __init__.py │ │ │ ├── bbox_regression.py │ │ │ ├── bbox_transform.py │ │ │ ├── generate_anchor.py │ │ │ └── nms.py │ │ ├── pycocotools │ │ │ ├── UPSTREAM_REV │ │ │ ├── __init__.py │ │ │ ├── _mask.pyx │ │ │ ├── coco.py │ │ │ ├── cocoeval.py │ │ │ ├── mask.py │ │ │ ├── maskApi.c │ │ │ ├── maskApi.h │ │ │ └── setup.py │ │ ├── symbol │ │ │ ├── __init__.py │ │ │ ├── proposal.py │ │ │ ├── proposal_target.py │ │ │ ├── symbol_resnet.py │ │ │ └── symbol_vgg.py │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── reeval.py │ │ │ ├── test_rcnn.py │ │ │ ├── test_rpn.py │ │ │ ├── train_rcnn.py │ │ │ └── train_rpn.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── combine_model.py │ │ │ ├── load_data.py │ │ │ ├── load_model.py │ │ │ └── save_model.py │ ├── script │ │ ├── additional_deps.sh │ │ ├── get_coco.sh │ │ ├── get_pretrained_model.sh │ │ ├── get_selective_search.sh │ │ ├── get_voc.sh │ │ ├── resnet_voc07.sh │ │ ├── resnet_voc0712.sh │ │ ├── vgg_alter_voc07.sh │ │ ├── vgg_fast_rcnn.sh │ │ ├── vgg_voc07.sh │ │ └── vgg_voc0712.sh │ ├── test.py │ ├── train_alternate.py │ └── train_end2end.py ├── recommenders │ ├── .gitignore │ ├── README.md │ ├── crossentropy.py │ ├── demo-MF.R │ ├── demo1-MF.ipynb │ ├── demo1-MF2-fancy.ipynb │ ├── demo2-binary.ipynb │ ├── demo3-dssm.ipynb │ ├── matrix_fact.py │ ├── movielens_data.py │ ├── negativesample.py │ ├── randomproj.py │ ├── recotools.py │ └── symbol_alexnet.py ├── reinforcement-learning │ ├── a3c │ │ ├── README.md │ │ ├── a3c.py │ │ ├── launcher.py │ │ ├── rl_data.py │ │ └── sym.py │ ├── ddpg │ │ ├── README.md │ │ ├── ddpg.py │ │ ├── policies.py │ │ ├── qfuncs.py │ │ ├── replay_mem.py │ │ ├── run.py │ │ ├── strategies.py │ │ └── utils.py │ ├── dqn │ │ ├── README.md │ │ ├── atari_game.py │ │ ├── base.py │ │ ├── dqn_demo.py │ │ ├── dqn_run_test.py │ │ ├── game.py │ │ ├── operators.py │ │ ├── replay_memory.py │ │ └── utils.py │ └── parallel_actor_critic │ │ ├── README.md │ │ ├── config.py │ │ ├── envs.py │ │ ├── model.py │ │ └── train.py ├── rnn-time-major │ ├── bucket_io.py │ ├── get_ptb_data.sh │ ├── readme.md │ └── rnn_cell_demo.py ├── rnn │ ├── README.md │ ├── bucket_R │ │ ├── aclImdb_lstm_classification.R │ │ └── data_preprocessing_seq_to_one.R │ ├── bucketing │ │ ├── README.md │ │ ├── cudnn_lstm_bucketing.py │ │ ├── get_ptb_data.sh │ │ └── lstm_bucketing.py │ ├── old │ │ ├── README.md │ │ ├── bucket_io.py │ │ ├── char-rnn.ipynb │ │ ├── get_ptb_data.sh │ │ ├── gru.py │ │ ├── gru_bucketing.py │ │ ├── lstm.py │ │ ├── lstm_bucketing.py │ │ ├── lstm_ptb.R │ │ ├── rnn.py │ │ ├── rnn_cell_demo.py │ │ └── rnn_model.py │ └── word_lm │ │ ├── README.md │ │ ├── data.py │ │ ├── get_ptb_data.sh │ │ ├── model.py │ │ ├── module.py │ │ └── train.py ├── sockeye │ ├── README.md │ ├── dataset │ │ ├── download_iwslt15_en-vi.sh │ │ └── iwslt15_en-vi │ │ │ ├── Makefile │ │ │ ├── train-preproc.en │ │ │ ├── train-preproc.vi │ │ │ ├── train.en │ │ │ ├── train.vi │ │ │ ├── trimer │ │ │ ├── trimer.cpp │ │ │ ├── tst2012.en │ │ │ ├── tst2012.vi │ │ │ ├── tst2013.en │ │ │ ├── tst2013.vi │ │ │ ├── vocab.en │ │ │ └── vocab.vi │ ├── scripts │ │ └── sockeye_1.5-iwslt15_en-vi.sh │ └── source │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── NOTICE │ │ ├── README.md │ │ ├── docs │ │ ├── Makefile │ │ ├── README.md │ │ ├── conf.py │ │ ├── development.md │ │ ├── faq.md │ │ ├── index.rst │ │ ├── make.bat │ │ ├── modules.rst │ │ └── user_documentation.md │ │ ├── pre-commit.sh │ │ ├── pylintrc │ │ ├── pytest.ini │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── sockeye │ │ ├── __init__.py │ │ ├── arguments.py │ │ ├── attention.py │ │ ├── average.py │ │ ├── bleu.py │ │ ├── callback.py │ │ ├── checkpoint_decoder.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── coverage.py │ │ ├── data_io.py │ │ ├── decoder.py │ │ ├── embeddings.py │ │ ├── encoder.py │ │ ├── evaluate.py │ │ ├── inference.py │ │ ├── initializer.py │ │ ├── layers.py │ │ ├── lexicon.py │ │ ├── log.py │ │ ├── loss.py │ │ ├── lr_scheduler.py │ │ ├── model.py │ │ ├── output_handler.py │ │ ├── rnn.py │ │ ├── train.py │ │ ├── training.py │ │ ├── transformer.py │ │ ├── translate.py │ │ ├── utils.py │ │ └── vocab.py │ │ ├── test │ │ ├── __init__.py │ │ ├── common.py │ │ ├── integration │ │ │ ├── __init__.py │ │ │ └── test_seq_copy_int.py │ │ ├── system │ │ │ ├── __init__.py │ │ │ ├── pytest.ini │ │ │ └── test_seq_copy_sys.py │ │ └── unit │ │ │ ├── __init__.py │ │ │ ├── test_arguments.py │ │ │ ├── test_attention.py │ │ │ ├── test_average.py │ │ │ ├── test_bleu.py │ │ │ ├── test_callback.py │ │ │ ├── test_checkpoint.py │ │ │ ├── test_config.py │ │ │ ├── test_coverage.py │ │ │ ├── test_data_io.py │ │ │ ├── test_decoder.py │ │ │ ├── test_encoder.py │ │ │ ├── test_layers.py │ │ │ ├── test_loss.py │ │ │ ├── test_lr_scheduler.py │ │ │ ├── test_output_handler.py │ │ │ ├── test_params.py │ │ │ ├── test_rnn.py │ │ │ ├── test_translate.py │ │ │ ├── test_utils.py │ │ │ └── test_vocab.py │ │ └── typechecked-files ├── sparse │ ├── factorization_machine │ │ ├── README.md │ │ ├── metric.py │ │ ├── model.py │ │ └── train.py │ ├── linear_classification │ │ ├── README.md │ │ ├── data.py │ │ ├── linear_model.py │ │ ├── train.py │ │ └── weighted_softmax_ce.py │ ├── matrix_factorization │ │ ├── README.md │ │ ├── data.py │ │ ├── model.py │ │ └── train.py │ └── wide_deep │ │ ├── README.md │ │ ├── data.py │ │ ├── model.py │ │ └── train.py ├── speech_recognition │ ├── README.md │ ├── arch_deepspeech.py │ ├── config_util.py │ ├── deepspeech.cfg │ ├── default.cfg │ ├── flac_to_wav.sh │ ├── label_util.py │ ├── log_util.py │ ├── main.py │ ├── resources │ │ └── unicodemap_en_baidu.csv │ ├── singleton.py │ ├── stt_bi_graphemes_util.py │ ├── stt_bucketing_module.py │ ├── stt_datagenerator.py │ ├── stt_io_bucketingiter.py │ ├── stt_io_iter.py │ ├── stt_layer_batchnorm.py │ ├── stt_layer_conv.py │ ├── stt_layer_fc.py │ ├── stt_layer_gru.py │ ├── stt_layer_lstm.py │ ├── stt_layer_slice.py │ ├── stt_layer_warpctc.py │ ├── stt_metric.py │ ├── stt_utils.py │ └── train.py ├── ssd │ ├── README.md │ ├── __init__.py │ ├── config │ │ ├── __init__.py │ │ ├── config.py │ │ └── utils.py │ ├── data │ │ └── demo │ │ │ └── download_demo_images.py │ ├── dataset │ │ ├── __init__.py │ │ ├── concat_db.py │ │ ├── imdb.py │ │ ├── iterator.py │ │ ├── mscoco.py │ │ ├── names │ │ │ ├── mscoco.names │ │ │ └── pascal_voc.names │ │ ├── pascal_voc.py │ │ ├── pycocotools │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── coco.py │ │ ├── testdb.py │ │ └── yolo_format.py │ ├── demo.py │ ├── deploy.py │ ├── detect │ │ ├── __init__.py │ │ └── detector.py │ ├── evaluate.py │ ├── evaluate │ │ ├── __init__.py │ │ ├── eval_metric.py │ │ ├── eval_voc.py │ │ └── evaluate_net.py │ ├── init.sh │ ├── model │ │ └── README.md │ ├── symbol │ │ ├── README.md │ │ ├── __init__.py │ │ ├── common.py │ │ ├── inceptionv3.py │ │ ├── legacy_vgg16_ssd_300.py │ │ ├── legacy_vgg16_ssd_512.py │ │ ├── resnet.py │ │ ├── symbol_builder.py │ │ ├── symbol_factory.py │ │ └── vgg16_reduced.py │ ├── tools │ │ ├── __init__.py │ │ ├── caffe_converter │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── caffe.proto │ │ │ ├── caffe_parse │ │ │ │ └── parse_from_protobuf.py │ │ │ ├── caffe_parser.py │ │ │ ├── caffe_proto_utils.py │ │ │ ├── compare_layers.py │ │ │ ├── convert_mean.py │ │ │ ├── convert_model.py │ │ │ ├── convert_symbol.py │ │ │ ├── make_win32.bat │ │ │ └── mean_image.py │ │ ├── find_mxnet.py │ │ ├── prepare_coco.sh │ │ ├── prepare_dataset.py │ │ ├── prepare_pascal.sh │ │ ├── rand_sampler.py │ │ └── visualize_net.py │ ├── train.py │ └── train │ │ ├── __init__.py │ │ ├── metric.py │ │ └── train_net.py ├── stochastic-depth │ ├── README.md │ ├── sd_cifar10.py │ ├── sd_mnist.py │ └── sd_module.py ├── svm_mnist │ ├── README.md │ └── svm_mnist.py ├── utils │ ├── __init__.py │ └── get_data.py └── vae │ ├── README.md │ ├── VAE.py │ └── VAE_example.ipynb ├── hosts ├── include └── mxnet │ ├── base.h │ ├── c_api.h │ ├── c_predict_api.h │ ├── engine.h │ ├── executor.h │ ├── graph_attr_types.h │ ├── imperative.h │ ├── io.h │ ├── kvstore.h │ ├── ndarray.h │ ├── op_attr_types.h │ ├── operator.h │ ├── operator_util.h │ ├── resource.h │ ├── rtc.h │ ├── storage.h │ └── tensor_blob.h ├── make ├── config.mk ├── osx.mk └── readthedocs.mk ├── matlab ├── +mxnet │ ├── model.m │ └── private │ │ ├── callmxnet.m │ │ └── parse_json.m ├── README.md ├── demo.m ├── get_inception_model.sh └── tests │ ├── prepare_data.m │ └── test_prediction.m ├── mshadow ├── .gitignore ├── .travis.yml ├── CHANGES.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake │ ├── Cuda.cmake │ ├── Utils.cmake │ ├── mshadow.cmake │ └── mshadowUtils.cmake ├── doc │ ├── Doxyfile │ ├── README.md │ └── mkdoc.sh ├── guide │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── basic.cpp │ ├── basic_stream.cu │ ├── defop.cpp │ ├── exp-template │ │ ├── .gitignore │ │ ├── Makefile │ │ └── README.md │ ├── mshadow-ps │ │ ├── .gitignore │ │ ├── 2-levels.png │ │ ├── Makefile │ │ ├── README.md │ │ ├── dbstr.h │ │ ├── dist_async_sum-inl.h │ │ ├── dist_async_sum.cpp │ │ ├── local.sh │ │ ├── local_sum-inl.h │ │ ├── local_sum.cpp │ │ └── local_sum.cu │ └── neuralnet │ │ ├── Makefile │ │ ├── README.md │ │ ├── convnet.cu │ │ ├── nnet.cu │ │ ├── nnet_ps.cu │ │ └── util.h ├── make │ ├── README.md │ └── mshadow.mk ├── mshadow-ps │ ├── .gitignore │ ├── README.md │ ├── mshadow_ps.h │ ├── ps_dist-inl.h │ ├── ps_local-inl.h │ ├── ps_rabit-inl.h │ ├── thread.h │ └── thread_util.h ├── mshadow │ ├── README.md │ ├── base.h │ ├── cuda │ │ ├── reduce.cuh │ │ └── tensor_gpu-inl.cuh │ ├── dot_engine-inl.h │ ├── expr_engine-inl.h │ ├── expr_scalar-inl.h │ ├── expression.h │ ├── extension.h │ ├── extension │ │ ├── broadcast.h │ │ ├── broadcast_with_axis.h │ │ ├── channel_pool.h │ │ ├── channel_unpool.h │ │ ├── choose.h │ │ ├── complex.h │ │ ├── concat.h │ │ ├── crop.h │ │ ├── fill.h │ │ ├── flip.h │ │ ├── implicit_gemm.h │ │ ├── mask.h │ │ ├── mirror.h │ │ ├── one_hot.h │ │ ├── pack_col2patch.h │ │ ├── pad.h │ │ ├── range.h │ │ ├── reduce_with_axis.h │ │ ├── reduceto1d.h │ │ ├── reshape.h │ │ ├── slice.h │ │ ├── slice_ex.h │ │ ├── spatial_pool.h │ │ ├── spatial_unpool.h │ │ ├── spatial_upsampling_nearest.h │ │ ├── swapaxis.h │ │ ├── take.h │ │ ├── take_grad.h │ │ ├── transpose.h │ │ └── unpack_patch2col.h │ ├── half.h │ ├── half2.h │ ├── io.h │ ├── logging.h │ ├── packet-inl.h │ ├── packet │ │ ├── plain-inl.h │ │ └── sse-inl.h │ ├── random.h │ ├── stream_gpu-inl.h │ ├── tensor.h │ ├── tensor_container.h │ ├── tensor_cpu-inl.h │ └── tensor_gpu-inl.h ├── scripts │ └── travis_script.sh └── test │ ├── Makefile │ ├── pairtest.cu │ ├── pool.cu │ ├── reshape.cu │ ├── test.cu │ ├── test.h │ └── unpack.cu ├── nnvm ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Jenkinsfile ├── LICENSE ├── Makefile ├── NEWS.md ├── README.md ├── amalgamation │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── amalgamation.py │ └── generate.py ├── cmake │ └── Utils.cmake ├── dmlc-core │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cmake │ │ ├── Modules │ │ │ ├── FindCrypto.cmake │ │ │ └── FindHDFS.cmake │ │ ├── Utils.cmake │ │ └── lint.cmake │ ├── doc │ │ ├── .gitignore │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── README │ │ ├── conf.py │ │ ├── index.md │ │ ├── parameter.md │ │ └── sphinx_util.py │ ├── example │ │ ├── dmlc_example.mk │ │ └── parameter.cc │ ├── include │ │ └── dmlc │ │ │ ├── any.h │ │ │ ├── array_view.h │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── concurrency.h │ │ │ ├── config.h │ │ │ ├── data.h │ │ │ ├── endian.h │ │ │ ├── input_split_shuffle.h │ │ │ ├── io.h │ │ │ ├── json.h │ │ │ ├── logging.h │ │ │ ├── lua.h │ │ │ ├── memory.h │ │ │ ├── memory_io.h │ │ │ ├── omp.h │ │ │ ├── optional.h │ │ │ ├── parameter.h │ │ │ ├── recordio.h │ │ │ ├── registry.h │ │ │ ├── serializer.h │ │ │ ├── thread_local.h │ │ │ ├── threadediter.h │ │ │ ├── timer.h │ │ │ └── type_traits.h │ ├── make │ │ └── dmlc.mk │ ├── scripts │ │ ├── lint.py │ │ ├── packages.mk │ │ ├── setup_nvcc.sh │ │ └── travis │ │ │ ├── travis_before_cache.sh │ │ │ ├── travis_osx_install.sh │ │ │ ├── travis_script.sh │ │ │ └── travis_setup_env.sh │ ├── src │ │ ├── config.cc │ │ ├── data.cc │ │ ├── data │ │ │ ├── basic_row_iter.h │ │ │ ├── csv_parser.h │ │ │ ├── disk_row_iter.h │ │ │ ├── libfm_parser.h │ │ │ ├── libsvm_parser.h │ │ │ ├── parser.h │ │ │ ├── row_block.h │ │ │ ├── strtonum.h │ │ │ └── text_parser.h │ │ ├── io.cc │ │ ├── io │ │ │ ├── azure_filesys.cc │ │ │ ├── azure_filesys.h │ │ │ ├── cached_input_split.h │ │ │ ├── filesys.h │ │ │ ├── hdfs_filesys.cc │ │ │ ├── hdfs_filesys.h │ │ │ ├── indexed_recordio_split.cc │ │ │ ├── indexed_recordio_split.h │ │ │ ├── input_split_base.cc │ │ │ ├── input_split_base.h │ │ │ ├── line_split.cc │ │ │ ├── line_split.h │ │ │ ├── local_filesys.cc │ │ │ ├── local_filesys.h │ │ │ ├── recordio_split.cc │ │ │ ├── recordio_split.h │ │ │ ├── s3_filesys.cc │ │ │ ├── s3_filesys.h │ │ │ ├── single_file_split.h │ │ │ ├── threaded_input_split.h │ │ │ └── uri_spec.h │ │ └── recordio.cc │ ├── test │ │ ├── .gitignore │ │ ├── README.md │ │ ├── csv_parser_test.cc │ │ ├── dataiter_test.cc │ │ ├── dmlc_test.mk │ │ ├── filesys_test.cc │ │ ├── iostream_test.cc │ │ ├── libfm_parser_test.cc │ │ ├── libsvm_parser_test.cc │ │ ├── logging_test.cc │ │ ├── parameter_test.cc │ │ ├── recordio_test.cc │ │ ├── registry_test.cc │ │ ├── split_read_test.cc │ │ ├── split_repeat_read_test.cc │ │ ├── split_test.cc │ │ ├── stream_read_test.cc │ │ ├── strtonum_test.cc │ │ └── unittest │ │ │ ├── .gitignore │ │ │ ├── dmlc_unittest.mk │ │ │ ├── unittest_any.cc │ │ │ ├── unittest_array_view.cc │ │ │ ├── unittest_config.cc │ │ │ ├── unittest_json.cc │ │ │ ├── unittest_logging.cc │ │ │ ├── unittest_main.cc │ │ │ ├── unittest_optional.cc │ │ │ ├── unittest_serializer.cc │ │ │ └── unittest_threaditer.cc │ ├── tracker │ │ ├── README.md │ │ ├── dmlc-submit │ │ ├── dmlc_tracker │ │ │ ├── __init__.py │ │ │ ├── launcher.py │ │ │ ├── local.py │ │ │ ├── mesos.py │ │ │ ├── mpi.py │ │ │ ├── opts.py │ │ │ ├── sge.py │ │ │ ├── slurm.py │ │ │ ├── ssh.py │ │ │ ├── submit.py │ │ │ ├── tracker.py │ │ │ └── yarn.py │ │ └── yarn │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build.bat │ │ │ ├── build.sh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── hadoop │ │ │ └── yarn │ │ │ └── dmlc │ │ │ ├── ApplicationMaster.java │ │ │ ├── Client.java │ │ │ └── TaskRecord.java │ └── windows │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dmlc.sln │ │ └── dmlc │ │ └── dmlc.vcxproj ├── docs │ ├── .gitignore │ ├── Doxyfile │ ├── Makefile │ ├── README.txt │ ├── api │ │ └── python │ │ │ ├── compiler.rst │ │ │ ├── frontend.rst │ │ │ ├── graph.rst │ │ │ ├── index.rst │ │ │ ├── symbol.rst │ │ │ └── top.rst │ ├── conf.py │ ├── dev │ │ ├── index.rst │ │ └── overview.md │ ├── how_to │ │ ├── contribute.md │ │ ├── deploy.md │ │ └── install.md │ ├── index.rst │ ├── json_spec.rst │ └── top.rst ├── examples │ ├── README.md │ └── benchmark │ │ ├── gpu_imagenet_bench.py │ │ └── rasp_imagenet_bench.py ├── include │ └── nnvm │ │ ├── base.h │ │ ├── c_api.h │ │ ├── compiler │ │ ├── contrib_op_param.h │ │ ├── op_attr_types.h │ │ └── packed_func_ext.h │ │ ├── graph.h │ │ ├── graph_attr_types.h │ │ ├── node.h │ │ ├── op.h │ │ ├── op_attr_types.h │ │ ├── pass.h │ │ ├── pass_functions.h │ │ ├── symbolic.h │ │ ├── top │ │ ├── README │ │ ├── nn.h │ │ └── tensor.h │ │ └── tuple.h ├── make │ └── config.mk ├── python │ ├── .gitignore │ ├── conda │ │ ├── build.sh │ │ └── meta.yaml │ ├── nnvm │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── _ctypes │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ └── symbol.py │ │ ├── _cy2 │ │ │ ├── README │ │ │ └── __init__.py │ │ ├── _cy3 │ │ │ ├── README │ │ │ └── __init__.py │ │ ├── _symbol_internal.py │ │ ├── attribute.py │ │ ├── compiler │ │ │ ├── __init__.py │ │ │ ├── build_module.py │ │ │ ├── compile_engine.py │ │ │ ├── graph_attr.py │ │ │ ├── graph_pass.py │ │ │ ├── graph_util.py │ │ │ └── param_dict.py │ │ ├── cython │ │ │ ├── README │ │ │ ├── base.pyi │ │ │ └── symbol.pyx │ │ ├── frontend │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── coreml.py │ │ │ ├── mxnet.py │ │ │ └── onnx.py │ │ ├── graph.py │ │ ├── libinfo.py │ │ ├── name.py │ │ ├── symbol.py │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── init.py │ │ │ ├── mlp.py │ │ │ ├── mobilenet.py │ │ │ ├── resnet.py │ │ │ ├── utils.py │ │ │ └── vgg.py │ │ └── top │ │ │ ├── __init__.py │ │ │ ├── attr_dict.py │ │ │ ├── nn.py │ │ │ ├── reduction.py │ │ │ ├── registry.py │ │ │ ├── tensor.py │ │ │ └── transform.py │ └── setup.py ├── src │ ├── README.md │ ├── c_api │ │ ├── c_api_common.h │ │ ├── c_api_error.cc │ │ ├── c_api_graph.cc │ │ └── c_api_symbolic.cc │ ├── compiler │ │ ├── compile_engine.cc │ │ ├── compile_engine.h │ │ ├── fold_scale_axis.cc │ │ ├── graph_fuse.cc │ │ ├── graph_hash.cc │ │ ├── graph_hash.h │ │ ├── graph_runtime.cc │ │ ├── graph_runtime.h │ │ ├── graph_transform.h │ │ ├── layout_transform.cc │ │ ├── node_attr.h │ │ ├── packed_func_ext.cc │ │ ├── pattern_util.h │ │ ├── precompute_prune.cc │ │ └── simplify_inference.cc │ ├── core │ │ ├── graph.cc │ │ ├── node.cc │ │ ├── op.cc │ │ ├── pass.cc │ │ └── symbolic.cc │ ├── pass │ │ ├── gradient.cc │ │ ├── graph_algorithm.h │ │ ├── infer_shape_type.cc │ │ ├── order_mutation.cc │ │ ├── place_device.cc │ │ ├── plan_memory.cc │ │ ├── print_graph_ir.cc │ │ └── saveload_json.cc │ └── top │ │ ├── elemwise_op_common.h │ │ ├── nn │ │ ├── convolution.cc │ │ ├── nn.cc │ │ ├── nn_common.h │ │ └── pooling.cc │ │ ├── op_common.h │ │ └── tensor │ │ ├── broadcast.cc │ │ ├── elemwise.cc │ │ ├── reduce.cc │ │ └── transform.cc ├── tests │ ├── ci_build │ │ ├── Dockerfile.gpu │ │ ├── Dockerfile.lint │ │ ├── README.md │ │ ├── ci_build.sh │ │ ├── install │ │ │ ├── ubuntu_install_core.sh │ │ │ ├── ubuntu_install_coreml.sh │ │ │ ├── ubuntu_install_llvm.sh │ │ │ ├── ubuntu_install_mxnet.sh │ │ │ ├── ubuntu_install_onnx.sh │ │ │ ├── ubuntu_install_opencl.sh │ │ │ ├── ubuntu_install_python.sh │ │ │ ├── ubuntu_install_python_package.sh │ │ │ └── ubuntu_install_sphinx.sh │ │ └── with_the_same_user │ ├── cpp │ │ ├── .gitignore │ │ ├── op_test.cc │ │ ├── tuple_test.cc │ │ └── unittest.mk │ ├── lint │ │ └── pylintrc │ ├── python │ │ ├── compiler │ │ │ ├── test_build.py │ │ │ ├── test_compiler_cache.py │ │ │ ├── test_fold_axis.py │ │ │ ├── test_graph_pass.py │ │ │ ├── test_op_fusion.py │ │ │ ├── test_param_dict.py │ │ │ ├── test_rpc_exec.py │ │ │ ├── test_simplify_inference.py │ │ │ ├── test_top_level1.py │ │ │ ├── test_top_level2.py │ │ │ └── test_top_level4.py │ │ ├── frontend │ │ │ ├── coreml │ │ │ │ ├── model_zoo │ │ │ │ │ ├── .gitignore │ │ │ │ │ └── __init__.py │ │ │ │ └── test_forward.py │ │ │ ├── mxnet │ │ │ │ ├── model_zoo │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── mlp.py │ │ │ │ │ ├── resnet.py │ │ │ │ │ └── vgg.py │ │ │ │ ├── test_forward.py │ │ │ │ └── test_graph.py │ │ │ └── onnx │ │ │ │ ├── model_zoo │ │ │ │ ├── __init__.py │ │ │ │ └── super_resolution.py │ │ │ │ ├── test_forward.py │ │ │ │ └── test_graph.py │ │ └── unittest │ │ │ ├── test_graph.py │ │ │ ├── test_infer_shape.py │ │ │ ├── test_symbol.py │ │ │ ├── test_top_level1.py │ │ │ ├── test_top_level2.py │ │ │ ├── test_top_level3.py │ │ │ └── test_top_level4.py │ ├── scripts │ │ ├── task_build.sh │ │ ├── task_clean.sh │ │ ├── task_frontend_test.sh │ │ ├── task_lint.sh │ │ ├── task_python_docs.sh │ │ └── task_python_test.sh │ └── travis │ │ ├── run_test.sh │ │ ├── setup.sh │ │ └── travis_after_failure.sh ├── tutorials │ ├── README.txt │ ├── deploy_model_on_rasp.py │ ├── from_coreml.py │ ├── from_mxnet.py │ ├── from_onnx.py │ ├── get_started.py │ └── imagenet_inference_gpu.py └── tvm │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CODEOWNERS │ ├── CONTRIBUTORS.md │ ├── HalideIR │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── src │ │ ├── arithmetic │ │ ├── Deinterleave.cpp │ │ ├── Deinterleave.h │ │ ├── ExprUsesVar.h │ │ ├── Interval.cpp │ │ ├── Interval.h │ │ ├── ModulusRemainder.cpp │ │ ├── ModulusRemainder.h │ │ ├── Scope.h │ │ ├── Simplify.cpp │ │ ├── Simplify.h │ │ ├── Substitute.cpp │ │ └── Substitute.h │ │ ├── base │ │ ├── Debug.cpp │ │ ├── Debug.h │ │ ├── Error.cpp │ │ ├── Error.h │ │ ├── Float16.h │ │ ├── Float16Opt.cpp │ │ ├── RoundingMode.h │ │ ├── Type.cpp │ │ ├── Type.h │ │ ├── TypeBase.h │ │ ├── Util.cpp │ │ └── Util.h │ │ ├── ir │ │ ├── Expr.h │ │ ├── FunctionBase.h │ │ ├── IR.cpp │ │ ├── IR.h │ │ ├── IREquality.cpp │ │ ├── IREquality.h │ │ ├── IRMutator.cpp │ │ ├── IRMutator.h │ │ ├── IROperator.cpp │ │ ├── IROperator.h │ │ ├── IRPrinter.cpp │ │ ├── IRPrinter.h │ │ ├── IRVisitor.cpp │ │ ├── IRVisitor.h │ │ └── Range.h │ │ └── tvm │ │ ├── container.h │ │ ├── ir_functor.h │ │ ├── node.cpp │ │ └── node.h │ ├── Jenkinsfile │ ├── LICENSE │ ├── Makefile │ ├── NEWS.md │ ├── README.md │ ├── apps │ ├── README.md │ ├── android_rpc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── ml │ │ │ │ │ └── dmlc │ │ │ │ │ └── tvm │ │ │ │ │ └── tvmrpc │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── RPCProcessor.java │ │ │ │ ├── jni │ │ │ │ ├── Android.mk │ │ │ │ ├── Application.mk │ │ │ │ ├── build.sh │ │ │ │ └── tvm_runtime.h │ │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── content_main.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── dev_tools │ │ │ ├── gen_keystore.sh │ │ │ └── sign_apk.sh │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── tests │ │ │ └── android_rpc_test.py │ ├── extension │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── python │ │ │ └── tvm_ext │ │ │ │ └── __init__.py │ │ ├── src │ │ │ └── tvm_ext.cc │ │ └── tests │ │ │ └── test_ext.py │ ├── howto_deploy │ │ ├── Makefile │ │ ├── README.md │ │ ├── cpp_deploy.cc │ │ ├── prepare_test_libs.py │ │ ├── run_example.sh │ │ └── tvm_runtime_pack.cc │ └── ios_rpc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── init_proj.py │ │ ├── tests │ │ └── ios_rpc_test.py │ │ ├── tvmrpc.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── tvmrpc │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── TVMRuntime.h │ │ ├── TVMRuntime.mm │ │ ├── ViewController.h │ │ ├── ViewController.mm │ │ └── main.m │ │ └── tvmrpcLauncher │ │ ├── Info.plist │ │ └── tvmrpcLauncher.mm │ ├── cmake │ └── Util.cmake │ ├── dlpack │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile │ ├── NEWS.md │ ├── README.md │ ├── contrib │ │ ├── dlpack │ │ │ └── dlpackcpp.h │ │ ├── mock_c.c │ │ └── mock_main.cc │ ├── docs │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Doxyfile │ │ └── Doxyfile.in │ ├── include │ │ └── dlpack │ │ │ └── dlpack.h │ └── tests │ │ ├── scripts │ │ ├── task_build.sh │ │ └── task_lint.sh │ │ └── travis │ │ ├── run_test.sh │ │ └── setup.sh │ ├── dmlc-core │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── cmake │ │ ├── Modules │ │ │ ├── FindCrypto.cmake │ │ │ └── FindHDFS.cmake │ │ ├── Utils.cmake │ │ └── lint.cmake │ ├── doc │ │ ├── .gitignore │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── README │ │ ├── conf.py │ │ ├── index.md │ │ ├── parameter.md │ │ └── sphinx_util.py │ ├── example │ │ ├── dmlc_example.mk │ │ └── parameter.cc │ ├── include │ │ └── dmlc │ │ │ ├── any.h │ │ │ ├── array_view.h │ │ │ ├── base.h │ │ │ ├── common.h │ │ │ ├── concurrency.h │ │ │ ├── config.h │ │ │ ├── data.h │ │ │ ├── endian.h │ │ │ ├── input_split_shuffle.h │ │ │ ├── io.h │ │ │ ├── json.h │ │ │ ├── logging.h │ │ │ ├── lua.h │ │ │ ├── memory.h │ │ │ ├── memory_io.h │ │ │ ├── omp.h │ │ │ ├── optional.h │ │ │ ├── parameter.h │ │ │ ├── recordio.h │ │ │ ├── registry.h │ │ │ ├── serializer.h │ │ │ ├── thread_local.h │ │ │ ├── threadediter.h │ │ │ ├── timer.h │ │ │ └── type_traits.h │ ├── make │ │ └── dmlc.mk │ ├── scripts │ │ ├── lint.py │ │ ├── packages.mk │ │ ├── setup_nvcc.sh │ │ └── travis │ │ │ ├── travis_before_cache.sh │ │ │ ├── travis_osx_install.sh │ │ │ ├── travis_script.sh │ │ │ └── travis_setup_env.sh │ ├── src │ │ ├── config.cc │ │ ├── data.cc │ │ ├── data │ │ │ ├── basic_row_iter.h │ │ │ ├── csv_parser.h │ │ │ ├── disk_row_iter.h │ │ │ ├── libfm_parser.h │ │ │ ├── libsvm_parser.h │ │ │ ├── parser.h │ │ │ ├── row_block.h │ │ │ ├── strtonum.h │ │ │ └── text_parser.h │ │ ├── io.cc │ │ ├── io │ │ │ ├── azure_filesys.cc │ │ │ ├── azure_filesys.h │ │ │ ├── cached_input_split.h │ │ │ ├── filesys.h │ │ │ ├── hdfs_filesys.cc │ │ │ ├── hdfs_filesys.h │ │ │ ├── indexed_recordio_split.cc │ │ │ ├── indexed_recordio_split.h │ │ │ ├── input_split_base.cc │ │ │ ├── input_split_base.h │ │ │ ├── line_split.cc │ │ │ ├── line_split.h │ │ │ ├── local_filesys.cc │ │ │ ├── local_filesys.h │ │ │ ├── recordio_split.cc │ │ │ ├── recordio_split.h │ │ │ ├── s3_filesys.cc │ │ │ ├── s3_filesys.h │ │ │ ├── single_file_split.h │ │ │ ├── threaded_input_split.h │ │ │ └── uri_spec.h │ │ └── recordio.cc │ ├── test │ │ ├── .gitignore │ │ ├── README.md │ │ ├── csv_parser_test.cc │ │ ├── dataiter_test.cc │ │ ├── dmlc_test.mk │ │ ├── filesys_test.cc │ │ ├── iostream_test.cc │ │ ├── libfm_parser_test.cc │ │ ├── libsvm_parser_test.cc │ │ ├── logging_test.cc │ │ ├── parameter_test.cc │ │ ├── recordio_test.cc │ │ ├── registry_test.cc │ │ ├── split_read_test.cc │ │ ├── split_repeat_read_test.cc │ │ ├── split_test.cc │ │ ├── stream_read_test.cc │ │ ├── strtonum_test.cc │ │ └── unittest │ │ │ ├── .gitignore │ │ │ ├── dmlc_unittest.mk │ │ │ ├── unittest_any.cc │ │ │ ├── unittest_array_view.cc │ │ │ ├── unittest_config.cc │ │ │ ├── unittest_json.cc │ │ │ ├── unittest_logging.cc │ │ │ ├── unittest_main.cc │ │ │ ├── unittest_optional.cc │ │ │ ├── unittest_serializer.cc │ │ │ └── unittest_threaditer.cc │ ├── tracker │ │ ├── README.md │ │ ├── dmlc-submit │ │ ├── dmlc_tracker │ │ │ ├── __init__.py │ │ │ ├── launcher.py │ │ │ ├── local.py │ │ │ ├── mesos.py │ │ │ ├── mpi.py │ │ │ ├── opts.py │ │ │ ├── sge.py │ │ │ ├── slurm.py │ │ │ ├── ssh.py │ │ │ ├── submit.py │ │ │ ├── tracker.py │ │ │ └── yarn.py │ │ └── yarn │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── build.bat │ │ │ ├── build.sh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── hadoop │ │ │ └── yarn │ │ │ └── dmlc │ │ │ ├── ApplicationMaster.java │ │ │ ├── Client.java │ │ │ └── TaskRecord.java │ └── windows │ │ ├── .gitignore │ │ ├── README.md │ │ ├── dmlc.sln │ │ └── dmlc │ │ └── dmlc.vcxproj │ ├── docs │ ├── .gitignore │ ├── Doxyfile │ ├── Makefile │ ├── README.txt │ ├── _static │ │ └── css │ │ │ └── tvm_theme.css │ ├── api │ │ └── python │ │ │ ├── build.rst │ │ │ ├── container.rst │ │ │ ├── contrib.rst │ │ │ ├── dev.rst │ │ │ ├── function.rst │ │ │ ├── index.rst │ │ │ ├── intrin.rst │ │ │ ├── module.rst │ │ │ ├── ndarray.rst │ │ │ ├── schedule.rst │ │ │ ├── target.rst │ │ │ ├── tensor.rst │ │ │ ├── topi.rst │ │ │ └── tvm.rst │ ├── api_links.rst │ ├── conf.py │ ├── dev │ │ ├── index.rst │ │ └── runtime.md │ ├── faq.md │ ├── genindex.rst │ ├── how_to │ │ ├── contribute.md │ │ ├── deploy.md │ │ ├── install.md │ │ └── nnpack.md │ └── index.rst │ ├── include │ └── tvm │ │ ├── api_registry.h │ │ ├── arithmetic.h │ │ ├── base.h │ │ ├── buffer.h │ │ ├── c_dsl_api.h │ │ ├── channel.h │ │ ├── codegen.h │ │ ├── expr.h │ │ ├── ir.h │ │ ├── ir_functor_ext.h │ │ ├── ir_mutator.h │ │ ├── ir_operator.h │ │ ├── ir_pass.h │ │ ├── ir_visitor.h │ │ ├── lowered_func.h │ │ ├── operation.h │ │ ├── packed_func_ext.h │ │ ├── runtime │ │ ├── c_backend_api.h │ │ ├── c_runtime_api.h │ │ ├── config.h │ │ ├── device_api.h │ │ ├── module.h │ │ ├── packed_func.h │ │ ├── registry.h │ │ └── util.h │ │ ├── schedule.h │ │ ├── schedule_pass.h │ │ ├── target_info.h │ │ ├── tensor.h │ │ ├── tensor_intrin.h │ │ └── tvm.h │ ├── jvm │ ├── README.md │ ├── assembly │ │ ├── linux-x86_64-cpu │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── assembly │ │ │ │ └── assembly.xml │ │ ├── linux-x86_64-gpu │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── assembly │ │ │ │ └── assembly.xml │ │ ├── osx-x86_64-cpu │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── assembly │ │ │ │ └── assembly.xml │ │ └── pom.xml │ ├── conf │ │ └── google_checks.xml │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── ml │ │ │ │ └── dmlc │ │ │ │ └── tvm │ │ │ │ ├── API.java │ │ │ │ ├── APIInternal.java │ │ │ │ ├── Base.java │ │ │ │ ├── Function.java │ │ │ │ ├── LibInfo.java │ │ │ │ ├── Module.java │ │ │ │ ├── NDArray.java │ │ │ │ ├── NDArrayBase.java │ │ │ │ ├── NativeLibraryLoader.java │ │ │ │ ├── TVMContext.java │ │ │ │ ├── TVMType.java │ │ │ │ ├── TVMValue.java │ │ │ │ ├── TVMValueBytes.java │ │ │ │ ├── TVMValueDouble.java │ │ │ │ ├── TVMValueLong.java │ │ │ │ ├── TVMValueNull.java │ │ │ │ ├── TVMValueString.java │ │ │ │ ├── TypeCode.java │ │ │ │ └── rpc │ │ │ │ ├── Client.java │ │ │ │ ├── ConnectProxyServerProcessor.java │ │ │ │ ├── NativeServerLoop.java │ │ │ │ ├── RPC.java │ │ │ │ ├── RPCSession.java │ │ │ │ ├── Server.java │ │ │ │ ├── ServerProcessor.java │ │ │ │ ├── SocketFileDescriptorGetter.java │ │ │ │ ├── StandaloneServerProcessor.java │ │ │ │ └── Utils.java │ │ │ └── test │ │ │ ├── java │ │ │ └── ml │ │ │ │ └── dmlc │ │ │ │ └── tvm │ │ │ │ ├── FunctionTest.java │ │ │ │ ├── ModuleTest.java │ │ │ │ ├── NDArrayTest.java │ │ │ │ └── rpc │ │ │ │ └── RPCTest.java │ │ │ └── scripts │ │ │ ├── test_add_cpu.py │ │ │ ├── test_add_gpu.py │ │ │ └── test_rpc_proxy_server.py │ ├── native │ │ ├── linux-x86_64-cpu │ │ │ └── pom.xml │ │ ├── linux-x86_64-gpu │ │ │ └── pom.xml │ │ ├── osx-x86_64-cpu │ │ │ └── pom.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── native │ │ │ ├── jni_helper_func.h │ │ │ └── ml_dmlc_tvm_native_c_api.cc │ └── pom.xml │ ├── make │ └── contrib │ │ ├── cblas.mk │ │ ├── cudnn.mk │ │ ├── mps.mk │ │ └── nnpack.mk │ ├── python │ ├── .gitignore │ ├── conda │ │ ├── build.sh │ │ └── meta.yaml │ ├── setup.py │ └── tvm │ │ ├── __init__.py │ │ ├── _api_internal.py │ │ ├── _ffi │ │ ├── __init__.py │ │ ├── _ctypes │ │ │ ├── __init__.py │ │ │ ├── function.py │ │ │ ├── ndarray.py │ │ │ ├── node.py │ │ │ └── types.py │ │ ├── _cy2 │ │ │ └── __init__.py │ │ ├── _cy3 │ │ │ └── __init__.py │ │ ├── _cython │ │ │ ├── base.pxi │ │ │ ├── core.pyx │ │ │ ├── function.pxi │ │ │ ├── ndarray.pxi │ │ │ └── node.pxi │ │ ├── base.py │ │ ├── function.py │ │ ├── libinfo.py │ │ ├── ndarray.py │ │ ├── node.py │ │ ├── node_generic.py │ │ └── runtime_ctypes.py │ │ ├── api.py │ │ ├── arith.py │ │ ├── codegen.py │ │ ├── container.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── cblas.py │ │ ├── cc.py │ │ ├── cudnn.py │ │ ├── emscripten.py │ │ ├── graph_runtime.py │ │ ├── mps.py │ │ ├── ndk.py │ │ ├── nnpack.py │ │ ├── nvcc.py │ │ ├── pickle_memoize.py │ │ ├── rocm.py │ │ ├── rpc.py │ │ ├── rpc_proxy.py │ │ ├── tar.py │ │ ├── util.py │ │ ├── verilog.py │ │ └── xcode.py │ │ ├── exec │ │ ├── __init__.py │ │ ├── rpc_proxy.py │ │ └── rpc_server.py │ │ ├── expr.py │ │ ├── intrin.py │ │ ├── ir_builder.py │ │ ├── ir_pass.py │ │ ├── make.py │ │ ├── module.py │ │ ├── ndarray.py │ │ ├── node.py │ │ ├── schedule.py │ │ ├── stmt.py │ │ ├── tag.py │ │ ├── target.py │ │ ├── tensor.py │ │ └── tensor_intrin.py │ ├── src │ ├── README.md │ ├── api │ │ ├── api_arith.cc │ │ ├── api_base.cc │ │ ├── api_codegen.cc │ │ ├── api_ir.cc │ │ ├── api_lang.cc │ │ ├── api_pass.cc │ │ ├── api_schedule.cc │ │ └── dsl_api.cc │ ├── arithmetic │ │ ├── bound_deducer.cc │ │ ├── canonical.cc │ │ ├── canonical.h │ │ ├── compute_expr.h │ │ ├── detect_linear_equation.cc │ │ ├── domain_touched.cc │ │ ├── int_set.cc │ │ ├── int_set_internal.h │ │ └── modular.cc │ ├── codegen │ │ ├── codegen.cc │ │ ├── codegen_c.cc │ │ ├── codegen_c.h │ │ ├── codegen_cuda.cc │ │ ├── codegen_cuda.h │ │ ├── codegen_metal.cc │ │ ├── codegen_metal.h │ │ ├── codegen_opencl.cc │ │ ├── codegen_opencl.h │ │ ├── codegen_source_base.cc │ │ ├── codegen_source_base.h │ │ ├── intrin_rule.cc │ │ ├── intrin_rule.h │ │ ├── intrin_rule_cuda.cc │ │ ├── intrin_rule_metal.cc │ │ ├── intrin_rule_opencl.cc │ │ ├── llvm │ │ │ ├── codegen_amdgpu.cc │ │ │ ├── codegen_arm.cc │ │ │ ├── codegen_cpu.cc │ │ │ ├── codegen_cpu.h │ │ │ ├── codegen_llvm.cc │ │ │ ├── codegen_llvm.h │ │ │ ├── codegen_nvptx.cc │ │ │ ├── intrin_rule_llvm.cc │ │ │ ├── intrin_rule_llvm.h │ │ │ ├── intrin_rule_rocm.cc │ │ │ ├── llvm_common.cc │ │ │ ├── llvm_common.h │ │ │ └── llvm_module.cc │ │ ├── source_module.cc │ │ ├── stack_vm │ │ │ ├── codegen_stack_vm.cc │ │ │ ├── codegen_stack_vm.h │ │ │ ├── stack_vm.cc │ │ │ ├── stack_vm.h │ │ │ └── stack_vm_module.cc │ │ └── verilog │ │ │ ├── codegen_verilog.cc │ │ │ ├── codegen_verilog.h │ │ │ ├── verilog_ir.cc │ │ │ ├── verilog_ir.h │ │ │ ├── verilog_module.cc │ │ │ ├── vpi_device_api.cc │ │ │ ├── vpi_session.cc │ │ │ └── vpi_session.h │ ├── common │ │ ├── pipe.h │ │ ├── ring_buffer.h │ │ └── socket.h │ ├── contrib │ │ ├── cblas │ │ │ └── cblas.cc │ │ ├── cudnn │ │ │ ├── conv_forward.cc │ │ │ ├── cudnn_utils.cc │ │ │ └── cudnn_utils.h │ │ ├── mps │ │ │ ├── gemm.mm │ │ │ ├── mps_utils.cc │ │ │ └── mps_utils.h │ │ └── nnpack │ │ │ ├── convolution.cc │ │ │ ├── fully_connected.cc │ │ │ ├── nnpack_utils.cc │ │ │ └── nnpack_utils.h │ ├── lang │ │ ├── buffer.cc │ │ ├── channel.cc │ │ ├── expr.cc │ │ ├── ir.cc │ │ ├── ir_operator.cc │ │ ├── lowered_func.cc │ │ ├── reflection.cc │ │ ├── target_info.cc │ │ └── tensor.cc │ ├── op │ │ ├── compute_op.cc │ │ ├── compute_op.h │ │ ├── cross_thread_reduction.cc │ │ ├── extern_op.cc │ │ ├── op_util.cc │ │ ├── op_util.h │ │ ├── placeholder_op.cc │ │ ├── scan_op.cc │ │ └── tensorize.cc │ ├── pass │ │ ├── arg_binder.cc │ │ ├── arg_binder.h │ │ ├── combine_context_call.cc │ │ ├── coproc_sync.cc │ │ ├── inject_copy_intrin.cc │ │ ├── inject_double_buffer.cc │ │ ├── inject_prefetch.cc │ │ ├── inject_virtual_thread.cc │ │ ├── inline.cc │ │ ├── ir_deep_compare.cc │ │ ├── ir_mutator.cc │ │ ├── ir_util.cc │ │ ├── ir_util.h │ │ ├── ir_visitor.cc │ │ ├── lift_attr_scope.cc │ │ ├── loop_partition.cc │ │ ├── lower_intrin.cc │ │ ├── lower_thread_allreduce.cc │ │ ├── lower_tvm_builtin.cc │ │ ├── make_api.cc │ │ ├── narrow_channel_access.cc │ │ ├── remove_no_op.cc │ │ ├── rewrite_unsafe_select.cc │ │ ├── simple_passes.cc │ │ ├── split_host_device.cc │ │ ├── split_pipeline.cc │ │ ├── ssa.cc │ │ ├── storage_access.cc │ │ ├── storage_access.h │ │ ├── storage_flatten.cc │ │ ├── storage_rewrite.cc │ │ ├── storage_sync.cc │ │ ├── unroll_loop.cc │ │ └── vectorize_loop.cc │ ├── runtime │ │ ├── c_dsl_api.cc │ │ ├── c_runtime_api.cc │ │ ├── cpu_device_api.cc │ │ ├── cuda │ │ │ ├── cuda_common.h │ │ │ ├── cuda_device_api.cc │ │ │ ├── cuda_module.cc │ │ │ └── cuda_module.h │ │ ├── dsl_api.h │ │ ├── dso_module.cc │ │ ├── file_util.cc │ │ ├── file_util.h │ │ ├── graph │ │ │ ├── graph_runtime.cc │ │ │ └── graph_runtime.h │ │ ├── meta_data.h │ │ ├── metal │ │ │ ├── metal_common.h │ │ │ ├── metal_device_api.mm │ │ │ ├── metal_module.h │ │ │ └── metal_module.mm │ │ ├── module.cc │ │ ├── module_util.cc │ │ ├── module_util.h │ │ ├── opencl │ │ │ ├── opencl_common.h │ │ │ ├── opencl_device_api.cc │ │ │ ├── opencl_module.cc │ │ │ └── opencl_module.h │ │ ├── pack_args.h │ │ ├── registry.cc │ │ ├── rocm │ │ │ ├── rocm_common.h │ │ │ ├── rocm_device_api.cc │ │ │ ├── rocm_module.cc │ │ │ └── rocm_module.h │ │ ├── rpc │ │ │ ├── rpc_device_api.cc │ │ │ ├── rpc_event_impl.cc │ │ │ ├── rpc_module.cc │ │ │ ├── rpc_server_env.cc │ │ │ ├── rpc_session.cc │ │ │ ├── rpc_session.h │ │ │ └── rpc_socket_impl.cc │ │ ├── runtime_base.h │ │ ├── system_lib_module.cc │ │ ├── thread_pool.cc │ │ ├── thread_storage_scope.h │ │ ├── workspace_pool.cc │ │ └── workspace_pool.h │ └── schedule │ │ ├── auto_inline_elem_wise.cc │ │ ├── bound.cc │ │ ├── graph.cc │ │ ├── graph.h │ │ ├── message_passing.cc │ │ ├── message_passing.h │ │ ├── schedule_dataflow_rewrite.cc │ │ ├── schedule_lang.cc │ │ └── schedule_ops.cc │ ├── tests │ ├── ci_build │ │ ├── Dockerfile.cpu │ │ ├── Dockerfile.emscripten │ │ ├── Dockerfile.gpu │ │ ├── Dockerfile.i386 │ │ ├── Dockerfile.lint │ │ ├── README.md │ │ ├── ci_build.sh │ │ ├── install │ │ │ ├── ubuntu_install_core.sh │ │ │ ├── ubuntu_install_emscripten.sh │ │ │ ├── ubuntu_install_iverilog.sh │ │ │ ├── ubuntu_install_java.sh │ │ │ ├── ubuntu_install_llvm.sh │ │ │ ├── ubuntu_install_nodejs.sh │ │ │ ├── ubuntu_install_opencl.sh │ │ │ ├── ubuntu_install_python.sh │ │ │ ├── ubuntu_install_python_package.sh │ │ │ ├── ubuntu_install_rocm.sh │ │ │ └── ubuntu_install_sphinx.sh │ │ └── with_the_same_user │ ├── cpp │ │ ├── .gitignore │ │ ├── container_test.cc │ │ ├── expr_test.cc │ │ ├── ir_functor_test.cc │ │ ├── ir_mutator_test.cc │ │ ├── ir_simplify_test.cc │ │ ├── ir_ssa_test.cc │ │ ├── ir_visitor_test.cc │ │ ├── packed_func_test.cc │ │ ├── tensor_test.cc │ │ ├── topi_ewise_test.cc │ │ └── unittest.mk │ ├── lint │ │ └── pylintrc │ ├── python │ │ ├── contrib │ │ │ ├── test_cblas.py │ │ │ ├── test_cudnn.py │ │ │ ├── test_mps.py │ │ │ ├── test_nnpack.py │ │ │ └── test_rpc_proxy.py │ │ ├── integration │ │ │ ├── test_dot.py │ │ │ ├── test_ewise.py │ │ │ ├── test_gemm.py │ │ │ ├── test_reduce.py │ │ │ └── test_scan.py │ │ └── unittest │ │ │ ├── test_arith_detect_clip_bound.py │ │ │ ├── test_arith_detect_linear_equation.py │ │ │ ├── test_arith_domain_touched.py │ │ │ ├── test_arith_intset.py │ │ │ ├── test_arith_modular.py │ │ │ ├── test_arith_simplify.py │ │ │ ├── test_build_lower.py │ │ │ ├── test_codegen_cross_llvm.py │ │ │ ├── test_codegen_device.py │ │ │ ├── test_codegen_extern.py │ │ │ ├── test_codegen_llvm.py │ │ │ ├── test_codegen_static_init.py │ │ │ ├── test_codegen_vm_basic.py │ │ │ ├── test_ir_builder.py │ │ │ ├── test_lang_basic.py │ │ │ ├── test_lang_buffer.py │ │ │ ├── test_lang_container.py │ │ │ ├── test_lang_group.py │ │ │ ├── test_lang_reflection.py │ │ │ ├── test_lang_schedule.py │ │ │ ├── test_lang_tag.py │ │ │ ├── test_lang_target.py │ │ │ ├── test_lang_tensor.py │ │ │ ├── test_module_load.py │ │ │ ├── test_pass_basic.py │ │ │ ├── test_pass_combine_context_call.py │ │ │ ├── test_pass_equal.py │ │ │ ├── test_pass_inject_copy_intrin.py │ │ │ ├── test_pass_inject_double_buffer.py │ │ │ ├── test_pass_inject_vthread.py │ │ │ ├── test_pass_inline.py │ │ │ ├── test_pass_ir_transform.py │ │ │ ├── test_pass_lift_attr_scope.py │ │ │ ├── test_pass_loop_partition.py │ │ │ ├── test_pass_makeapi.py │ │ │ ├── test_pass_remove_no_op.py │ │ │ ├── test_pass_rewrite_unsafe_select.py │ │ │ ├── test_pass_simplify.py │ │ │ ├── test_pass_split_pipeline.py │ │ │ ├── test_pass_storage_flatten.py │ │ │ ├── test_pass_storage_rewrite.py │ │ │ ├── test_pass_storage_sync.py │ │ │ ├── test_pass_unroll.py │ │ │ ├── test_pass_vectorize.py │ │ │ ├── test_pass_virtual_thread.py │ │ │ ├── test_runtime_extension.py │ │ │ ├── test_runtime_graph.py │ │ │ ├── test_runtime_ndarray.py │ │ │ ├── test_runtime_packed_func.py │ │ │ ├── test_runtime_rpc.py │ │ │ ├── test_schedule_bound_inference.py │ │ │ ├── test_schedule_graph.py │ │ │ ├── test_schedule_lstm.py │ │ │ ├── test_schedule_schedule_ops.py │ │ │ └── test_schedule_tensorize.py │ ├── scripts │ │ ├── packages.mk │ │ ├── task_cpp_unittest.sh │ │ ├── task_java_unittest.sh │ │ ├── task_lint.sh │ │ ├── task_python_docs.sh │ │ ├── task_python_integration.sh │ │ ├── task_python_topi.sh │ │ ├── task_python_unittest.sh │ │ ├── task_verilog_test.sh │ │ ├── task_web_build.sh │ │ └── task_web_test.sh │ ├── travis │ │ ├── run_test.sh │ │ ├── setup.sh │ │ └── travis_after_failure.sh │ ├── verilog │ │ ├── integration │ │ │ └── test_codegen_verilog.py │ │ └── unittest │ │ │ ├── test_buffer_doublebuff.py │ │ │ ├── test_buffer_doublebuff.v │ │ │ ├── test_buffer_fifo.py │ │ │ ├── test_buffer_fifo.v │ │ │ ├── test_buffer_linebuff.py │ │ │ ├── test_buffer_linebuff.v │ │ │ ├── test_cache_reg.py │ │ │ ├── test_cache_reg.v │ │ │ ├── test_counter.py │ │ │ ├── test_counter.v │ │ │ ├── test_loop.py │ │ │ ├── test_loop.v │ │ │ ├── test_vpi_mem_interface.py │ │ │ ├── test_vpi_mem_interface.v │ │ │ ├── test_vpi_mmap.py │ │ │ ├── test_vpi_mmap.v │ │ │ └── testing_util.py │ └── web │ │ ├── prepare_test_libs.py │ │ ├── test_basic.js │ │ ├── test_module_load.js │ │ ├── test_packed_func.js │ │ └── websock_rpc_test.py │ ├── topi │ ├── README.md │ ├── include │ │ └── topi │ │ │ ├── broadcast.h │ │ │ ├── detail │ │ │ └── broadcast.h │ │ │ ├── elemwise.h │ │ │ ├── nn.h │ │ │ └── tags.h │ ├── python │ │ ├── conda │ │ │ └── meta.yaml │ │ ├── setup.py │ │ └── topi │ │ │ ├── __init__.py │ │ │ ├── broadcast.py │ │ │ ├── cuda │ │ │ ├── __init__.py │ │ │ ├── conv2d_hwcn.py │ │ │ ├── conv2d_nchw.py │ │ │ ├── conv2d_transpose_nchw.py │ │ │ ├── dense.py │ │ │ ├── depthwise_conv2d.py │ │ │ ├── injective.py │ │ │ ├── pooling.py │ │ │ ├── reduction.py │ │ │ └── softmax.py │ │ │ ├── generic │ │ │ ├── __init__.py │ │ │ ├── injective.py │ │ │ └── nn.py │ │ │ ├── math.py │ │ │ ├── nn │ │ │ ├── __init__.py │ │ │ ├── batch_norm.py │ │ │ ├── conv2d.py │ │ │ ├── conv2d_transpose.py │ │ │ ├── dense.py │ │ │ ├── depthwise_conv2d.py │ │ │ ├── dilate.py │ │ │ ├── elemwise.py │ │ │ ├── flatten.py │ │ │ ├── mapping.py │ │ │ ├── pad.py │ │ │ ├── pooling.py │ │ │ ├── softmax.py │ │ │ └── util.py │ │ │ ├── rasp │ │ │ ├── __init__.py │ │ │ ├── conv2d.py │ │ │ └── depthwise_conv2d.py │ │ │ ├── reduction.py │ │ │ ├── tag.py │ │ │ ├── testing │ │ │ ├── __init__.py │ │ │ ├── conv2d_hwcn_python.py │ │ │ ├── conv2d_nchw_python.py │ │ │ ├── conv2d_transpose_nchw_python.py │ │ │ ├── depthwise_conv2d_python.py │ │ │ ├── dilate_python.py │ │ │ └── softmax_python.py │ │ │ ├── transform.py │ │ │ ├── util.py │ │ │ └── x86 │ │ │ ├── __init__.py │ │ │ └── conv2d.py │ ├── recipe │ │ ├── broadcast │ │ │ └── test_broadcast_map.py │ │ ├── conv │ │ │ ├── depthwise_conv2d_test.py │ │ │ └── test_conv2d_hwcn_map.py │ │ ├── gemm │ │ │ ├── android_gemm_square.py │ │ │ └── cuda_gemm_square.py │ │ ├── reduce │ │ │ └── test_reduce_map.py │ │ └── rnn │ │ │ ├── lstm.py │ │ │ └── matexp.py │ └── tests │ │ └── python │ │ ├── test_topi_basic.py │ │ ├── test_topi_broadcast.py │ │ ├── test_topi_clip.py │ │ ├── test_topi_conv2d.py │ │ ├── test_topi_conv2d_hwcn.py │ │ ├── test_topi_conv2d_nchw.py │ │ ├── test_topi_conv2d_transpose_nchw.py │ │ ├── test_topi_dense.py │ │ ├── test_topi_depthwise_conv2d.py │ │ ├── test_topi_depthwise_conv2d_back_input.py │ │ ├── test_topi_depthwise_conv2d_back_weight.py │ │ ├── test_topi_dilate.py │ │ ├── test_topi_pooling.py │ │ ├── test_topi_reduce.py │ │ ├── test_topi_relu.py │ │ ├── test_topi_softmax.py │ │ └── test_topi_transform.py │ ├── tutorials │ ├── README.txt │ ├── deployment │ │ ├── README.txt │ │ └── cross_compilation_and_rpc.py │ ├── get_started.py │ ├── language │ │ ├── README.txt │ │ ├── extern_op.py │ │ ├── intrin_math.py │ │ ├── reduction.py │ │ ├── scan.py │ │ ├── schedule_primitives.py │ │ └── tuple_inputs.py │ └── optimize │ │ ├── README.txt │ │ ├── opt_conv_cuda.py │ │ └── opt_gemm.py │ ├── verilog │ ├── README.md │ ├── example_counter.v │ ├── tvm_buffer.v │ ├── tvm_marcos.v │ ├── tvm_vpi.cc │ ├── tvm_vpi.h │ ├── tvm_vpi_mem_interface.v │ ├── tvm_vpi_mmap.v │ └── verilog.mk │ └── web │ ├── .eslintrc.js │ ├── README.md │ ├── example_rpc.html │ ├── example_rpc_node.js │ ├── tvm_runtime.js │ └── web_runtime.cc ├── perl-package ├── .gitignore ├── AI-MXNet │ ├── Changes │ ├── MANIFEST │ ├── META.json │ ├── META.yml │ ├── Makefile.PL │ ├── README │ ├── examples │ │ ├── calculator.pl │ │ ├── char_lstm.pl │ │ ├── cudnn_lstm_bucketing.pl │ │ ├── get_ptb_data.sh │ │ ├── gluon │ │ │ ├── dcgan.pl │ │ │ └── mnist.pl │ │ ├── lstm_bucketing.pl │ │ ├── mnist.pl │ │ └── plot_network.pl │ ├── lib │ │ └── AI │ │ │ ├── MXNet.pm │ │ │ └── MXNet │ │ │ ├── AutoGrad.pm │ │ │ ├── Base.pm │ │ │ ├── CachedOp.pm │ │ │ ├── Callback.pm │ │ │ ├── Context.pm │ │ │ ├── Contrib.pm │ │ │ ├── Contrib │ │ │ ├── NDArray.pm │ │ │ └── Symbol.pm │ │ │ ├── CudaModule.pm │ │ │ ├── Executor.pm │ │ │ ├── Executor │ │ │ └── Group.pm │ │ │ ├── Function │ │ │ └── Parameters.pm │ │ │ ├── Gluon.pm │ │ │ ├── Gluon │ │ │ ├── Block.pm │ │ │ ├── Data.pm │ │ │ ├── Data │ │ │ │ ├── Loader.pm │ │ │ │ ├── Sampler.pm │ │ │ │ ├── Set.pm │ │ │ │ └── Vision.pm │ │ │ ├── Loss.pm │ │ │ ├── Mouse.pm │ │ │ ├── NN.pm │ │ │ ├── NN │ │ │ │ ├── BasicLayers.pm │ │ │ │ └── ConvLayers.pm │ │ │ ├── Parameter.pm │ │ │ ├── RNN.pm │ │ │ ├── RNN │ │ │ │ ├── Cell.pm │ │ │ │ └── Layer.pm │ │ │ ├── Trainer.pm │ │ │ └── Utils.pm │ │ │ ├── IO.pm │ │ │ ├── Image.pm │ │ │ ├── Initializer.pm │ │ │ ├── KVStore.pm │ │ │ ├── KVStoreServer.pm │ │ │ ├── LRScheduler.pm │ │ │ ├── Logging.pm │ │ │ ├── Metric.pm │ │ │ ├── Module.pm │ │ │ ├── Module │ │ │ ├── Base.pm │ │ │ └── Bucketing.pm │ │ │ ├── Monitor.pm │ │ │ ├── NDArray.pm │ │ │ ├── NDArray │ │ │ ├── Base.pm │ │ │ ├── Doc.pm │ │ │ └── Slice.pm │ │ │ ├── Optimizer.pm │ │ │ ├── Profiler.pm │ │ │ ├── RNN.pm │ │ │ ├── RNN │ │ │ ├── Cell.pm │ │ │ └── IO.pm │ │ │ ├── Random.pm │ │ │ ├── RecordIO.pm │ │ │ ├── Symbol.pm │ │ │ ├── Symbol │ │ │ ├── AttrScope.pm │ │ │ ├── Base.pm │ │ │ ├── Doc.pm │ │ │ ├── NameManager.pm │ │ │ └── Random.pm │ │ │ ├── TestUtils.pm │ │ │ ├── Types.pm │ │ │ ├── Util │ │ │ └── Printable.pm │ │ │ └── Visualization.pm │ └── t │ │ ├── AI-MXNet.t │ │ ├── test_attr.t │ │ ├── test_autograd.t │ │ ├── test_base.t │ │ ├── test_conv.t │ │ ├── test_cuda_module.t │ │ ├── test_executor.t │ │ ├── test_gluon.t │ │ ├── test_gluon_data.t │ │ ├── test_gluon_rnn.t │ │ ├── test_infer_shape.t │ │ ├── test_init.t │ │ ├── test_io.t │ │ ├── test_io_image.t │ │ ├── test_kvstore.t │ │ ├── test_loss.t │ │ ├── test_metric.t │ │ ├── test_model_parallel.t │ │ ├── test_module.t │ │ ├── test_multi_device_exec.t │ │ ├── test_ndarray.t │ │ ├── test_optimizers.t │ │ ├── test_random.t │ │ ├── test_recordio.t │ │ ├── test_rnn.t │ │ ├── test_symbol.t │ │ └── test_viz.t ├── AI-MXNetCAPI │ ├── Changes │ ├── MANIFEST │ ├── META.json │ ├── META.yml │ ├── Makefile.PL │ ├── README │ ├── lib │ │ └── AI │ │ │ └── MXNetCAPI.pm │ ├── mxnet.i │ ├── mxnet_typemaps.i │ └── t │ │ └── AI-MXNetCAPI.t ├── AI-NNVMCAPI │ ├── Changes │ ├── MANIFEST │ ├── META.json │ ├── META.yml │ ├── Makefile.PL │ ├── README │ ├── lib │ │ └── AI │ │ │ └── NNVMCAPI.pm │ ├── nnvm.i │ ├── nnvm_typemaps.i │ └── t │ │ └── AI-NNVMCAPI.t ├── README.md └── test.sh ├── plugin ├── caffe │ ├── README.md │ ├── caffe.mk │ ├── caffe_blob.cc │ ├── caffe_blob.h │ ├── caffe_common.cc │ ├── caffe_common.h │ ├── caffe_data_iter.cc │ ├── caffe_fieldentry.h │ ├── caffe_loss-inl.h │ ├── caffe_loss.cc │ ├── caffe_loss.cu │ ├── caffe_op-inl.h │ ├── caffe_op.cc │ ├── caffe_op.cu │ ├── caffe_stream.cc │ └── caffe_stream.h ├── opencv │ ├── __init__.py │ ├── cv_api.cc │ ├── cv_api.h │ ├── opencv.mk │ └── opencv.py ├── sframe │ ├── iter_sframe.cc │ └── plugin.mk ├── torch │ ├── torch.mk │ ├── torch_base.cc │ ├── torch_base.h │ ├── torch_criterion-inl.h │ ├── torch_criterion.cc │ ├── torch_criterion.cu │ ├── torch_function.cc │ ├── torch_function.h │ ├── torch_module-inl.h │ ├── torch_module.cc │ └── torch_module.cu └── warpctc │ ├── warpctc-inl.h │ ├── warpctc.cc │ ├── warpctc.cu │ └── warpctc.mk ├── prepare_mkl.sh ├── ps-lite ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── cmake │ ├── External │ │ └── zmq.cmake │ ├── Modules │ │ └── FindZMQ.cmake │ └── ProtoBuf.cmake ├── docs │ ├── Doxyfile │ ├── Makefile │ ├── api.md │ ├── conf.py │ ├── env.md │ ├── get_started.md │ ├── how_to.md │ ├── index.md │ ├── overview.md │ ├── requirements.txt │ ├── sphinx_util.py │ └── tutorials.md ├── include │ ├── dmlc │ │ ├── base.h │ │ └── logging.h │ └── ps │ │ ├── base.h │ │ ├── internal │ │ ├── assign_op.h │ │ ├── customer.h │ │ ├── env.h │ │ ├── message.h │ │ ├── parallel_kv_match.h │ │ ├── parallel_sort.h │ │ ├── postoffice.h │ │ ├── threadsafe_queue.h │ │ ├── utils.h │ │ └── van.h │ │ ├── kv_app.h │ │ ├── ps.h │ │ ├── range.h │ │ ├── sarray.h │ │ └── simple_app.h ├── make │ ├── deps.mk │ └── ps.mk ├── src │ ├── customer.cc │ ├── meta.proto │ ├── network_utils.h │ ├── postoffice.cc │ ├── resender.h │ ├── van.cc │ ├── windows │ │ └── unistd.h │ └── zmq_van.h ├── tests │ ├── README.md │ ├── lint.py │ ├── local.sh │ ├── repeat.sh │ ├── test.mk │ └── travis │ │ ├── travis_before_cache.sh │ │ ├── travis_script.sh │ │ └── travis_setup_env.sh └── tracker │ ├── README.md │ ├── dmlc_local.py │ ├── dmlc_mpi.py │ ├── dmlc_ssh.py │ └── tracker.py ├── python ├── .gitignore ├── README.md ├── minpy │ └── README.md ├── mxnet │ ├── __init__.py │ ├── _ctypes │ │ ├── __init__.py │ │ ├── ndarray.py │ │ └── symbol.py │ ├── _cy2 │ │ ├── README │ │ └── __init__.py │ ├── _cy3 │ │ ├── README │ │ └── __init__.py │ ├── attribute.py │ ├── autograd.py │ ├── base.py │ ├── callback.py │ ├── context.py │ ├── contrib │ │ ├── __init__.py │ │ ├── autograd.py │ │ ├── ndarray.py │ │ ├── symbol.py │ │ ├── tensorboard.py │ │ └── text │ │ │ ├── __init__.py │ │ │ ├── _constants.py │ │ │ ├── embedding.py │ │ │ ├── utils.py │ │ │ └── vocab.py │ ├── cython │ │ ├── base.pyi │ │ ├── ndarray.pyx │ │ └── symbol.pyx │ ├── engine.py │ ├── executor.py │ ├── executor_manager.py │ ├── gluon │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── block.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── nn │ │ │ │ ├── __init__.py │ │ │ │ └── basic_layers.py │ │ │ └── rnn │ │ │ │ ├── __init__.py │ │ │ │ ├── conv_rnn_cell.py │ │ │ │ └── rnn_cell.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── dataloader.py │ │ │ ├── dataset.py │ │ │ ├── sampler.py │ │ │ └── vision │ │ │ │ ├── __init__.py │ │ │ │ ├── datasets.py │ │ │ │ └── transforms.py │ │ ├── loss.py │ │ ├── model_zoo │ │ │ ├── __init__.py │ │ │ ├── model_store.py │ │ │ └── vision │ │ │ │ ├── __init__.py │ │ │ │ ├── alexnet.py │ │ │ │ ├── densenet.py │ │ │ │ ├── inception.py │ │ │ │ ├── mobilenet.py │ │ │ │ ├── resnet.py │ │ │ │ ├── squeezenet.py │ │ │ │ └── vgg.py │ │ ├── nn │ │ │ ├── __init__.py │ │ │ ├── basic_layers.py │ │ │ └── conv_layers.py │ │ ├── parameter.py │ │ ├── rnn │ │ │ ├── __init__.py │ │ │ ├── rnn_cell.py │ │ │ └── rnn_layer.py │ │ ├── trainer.py │ │ └── utils.py │ ├── image │ │ ├── __init__.py │ │ ├── detection.py │ │ └── image.py │ ├── initializer.py │ ├── io.py │ ├── kvstore.py │ ├── kvstore_server.py │ ├── libinfo.py │ ├── log.py │ ├── lr_scheduler.py │ ├── metric.py │ ├── misc.py │ ├── model.py │ ├── module │ │ ├── __init__.py │ │ ├── base_module.py │ │ ├── bucketing_module.py │ │ ├── executor_group.py │ │ ├── module.py │ │ ├── python_module.py │ │ └── sequential_module.py │ ├── monitor.py │ ├── name.py │ ├── ndarray │ │ ├── __init__.py │ │ ├── _internal.py │ │ ├── contrib.py │ │ ├── image.py │ │ ├── linalg.py │ │ ├── ndarray.py │ │ ├── op.py │ │ ├── random.py │ │ ├── register.py │ │ ├── sparse.py │ │ └── utils.py │ ├── ndarray_doc.py │ ├── notebook │ │ ├── __init__.py │ │ └── callback.py │ ├── operator.py │ ├── optimizer.py │ ├── profiler.py │ ├── random.py │ ├── recordio.py │ ├── registry.py │ ├── rnn │ │ ├── __init__.py │ │ ├── io.py │ │ ├── rnn.py │ │ └── rnn_cell.py │ ├── rtc.py │ ├── symbol │ │ ├── __init__.py │ │ ├── _internal.py │ │ ├── contrib.py │ │ ├── image.py │ │ ├── linalg.py │ │ ├── op.py │ │ ├── random.py │ │ ├── register.py │ │ ├── sparse.py │ │ └── symbol.py │ ├── symbol_doc.py │ ├── test_utils.py │ ├── torch.py │ └── visualization.py └── setup.py ├── readthedocs.yml ├── run_exp.sh ├── scala-package ├── LICENSE ├── README.md ├── assembly │ ├── linux-x86_64-cpu │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── assembly │ │ │ └── assembly.xml │ ├── linux-x86_64-gpu │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── assembly │ │ │ └── assembly.xml │ ├── osx-x86_64-cpu │ │ ├── main │ │ │ └── assembly │ │ │ │ └── assembly.xml │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── assembly │ │ │ └── assembly.xml │ └── pom.xml ├── core │ ├── pom.xml │ ├── scripts │ │ ├── get_cifar_data.sh │ │ └── get_mnist_data.sh │ └── src │ │ ├── main │ │ └── scala │ │ │ └── ml │ │ │ └── dmlc │ │ │ └── mxnet │ │ │ ├── AttrScope.scala │ │ │ ├── Base.scala │ │ │ ├── Callback.scala │ │ │ ├── Context.scala │ │ │ ├── DType.scala │ │ │ ├── EvalMetric.scala │ │ │ ├── Executor.scala │ │ │ ├── ExecutorManager.scala │ │ │ ├── FeedForward.scala │ │ │ ├── IO.scala │ │ │ ├── Initializer.scala │ │ │ ├── KVStore.scala │ │ │ ├── KVStoreServer.scala │ │ │ ├── LRScheduler.scala │ │ │ ├── LibInfo.scala │ │ │ ├── Model.scala │ │ │ ├── Monitor.scala │ │ │ ├── NDArray.scala │ │ │ ├── NameManager.scala │ │ │ ├── Operator.scala │ │ │ ├── Optimizer.scala │ │ │ ├── Profiler.scala │ │ │ ├── Random.scala │ │ │ ├── RecordIO.scala │ │ │ ├── Rtc.scala │ │ │ ├── Serializer.scala │ │ │ ├── Shape.scala │ │ │ ├── Symbol.scala │ │ │ ├── Visualization.scala │ │ │ ├── contrib │ │ │ ├── NDArray.scala │ │ │ └── Symbol.scala │ │ │ ├── io │ │ │ ├── MXDataIter.scala │ │ │ ├── NDArrayIter.scala │ │ │ ├── PrefetchingIter.scala │ │ │ └── ResizeIter.scala │ │ │ ├── module │ │ │ ├── BaseModule.scala │ │ │ ├── BucketingModule.scala │ │ │ ├── DataParallelExecutorGroup.scala │ │ │ ├── Module.scala │ │ │ └── SequentialModule.scala │ │ │ ├── optimizer │ │ │ ├── AdaDelta.scala │ │ │ ├── AdaGrad.scala │ │ │ ├── Adam.scala │ │ │ ├── DCASGD.scala │ │ │ ├── NAG.scala │ │ │ ├── RMSProp.scala │ │ │ ├── SGD.scala │ │ │ └── SGLD.scala │ │ │ └── util │ │ │ ├── NativeLibraryLoader.scala │ │ │ ├── SerializerUtils.scala │ │ │ └── WarnIfNotDisposed.scala │ │ └── test │ │ ├── resources │ │ └── log4j.properties │ │ └── scala │ │ └── ml │ │ └── dmlc │ │ └── mxnet │ │ ├── AttrScopeSuite.scala │ │ ├── CheckUtils.scala │ │ ├── ExecutorSuite.scala │ │ ├── IOSuite.scala │ │ ├── KVStoreSuite.scala │ │ ├── ModelParallelSuite.scala │ │ ├── ModuleSuite.scala │ │ ├── NDArraySuite.scala │ │ ├── OperatorSuite.scala │ │ ├── RandomSuite.scala │ │ ├── RecordIOSuite.scala │ │ ├── SerializerSuite.scala │ │ ├── ShapeSuite.scala │ │ ├── SymbolSuite.scala │ │ ├── TestUtil.scala │ │ ├── gpu │ │ └── RtcSuite.scala │ │ ├── train │ │ └── ConvSuite.scala │ │ └── util │ │ ├── SerializerUtilsSuite.scala │ │ └── WarnIfNotDiposedSuite.scala ├── dev │ ├── change-artifact-id.sh │ ├── change-proj-version.sh │ └── change-scala-version.sh ├── examples │ ├── pom.xml │ ├── scripts │ │ ├── customop │ │ │ ├── run_customop.sh │ │ │ └── run_customopwithrtc.sh │ │ ├── module │ │ │ ├── mnist_mlp.sh │ │ │ └── run_sequential_module.sh │ │ ├── neuralstyle_end2end │ │ │ ├── run_test_end2end.sh │ │ │ └── run_train_end2end.sh │ │ ├── profiler │ │ │ ├── run_profiler_matmul.sh │ │ │ └── run_profiler_ndarray.sh │ │ ├── rnn │ │ │ ├── run_lstm_bucketing.sh │ │ │ ├── run_test_charrnn.sh │ │ │ └── run_train_charrnn.sh │ │ ├── run_cnntextclassification.sh │ │ ├── run_gan_mnist.sh │ │ ├── run_multitask.sh │ │ ├── run_neuralstyle.sh │ │ └── run_visualization.sh │ └── src │ │ └── main │ │ ├── resources │ │ └── log4j.properties │ │ └── scala │ │ └── ml │ │ └── dmlc │ │ └── mxnetexamples │ │ ├── cnntextclassification │ │ ├── CNNTextClassification.scala │ │ └── DataHelper.scala │ │ ├── customop │ │ ├── Data.scala │ │ ├── ExampleCustomOp.scala │ │ └── ExampleCustomOpWithRtc.scala │ │ ├── gan │ │ ├── GanMnist.scala │ │ ├── Module.scala │ │ └── Viz.scala │ │ ├── imclassification │ │ ├── ModelTrain.scala │ │ └── TrainMnist.scala │ │ ├── module │ │ ├── MnistMlp.scala │ │ └── SequentialModuleEx.scala │ │ ├── multitask │ │ ├── Data.scala │ │ └── ExampleMultiTask.scala │ │ ├── neuralstyle │ │ ├── ModelVgg19.scala │ │ ├── NeuralStyle.scala │ │ └── end2end │ │ │ ├── Basic.scala │ │ │ ├── BoostInference.scala │ │ │ ├── BoostTrain.scala │ │ │ ├── DataProcessing.scala │ │ │ ├── GenV3.scala │ │ │ ├── GenV4.scala │ │ │ ├── ModelVgg19.scala │ │ │ └── Module.scala │ │ ├── profiler │ │ ├── ProfilerMatMul.scala │ │ └── ProfilerNDArray.scala │ │ ├── rnn │ │ ├── BucketIo.scala │ │ ├── Lstm.scala │ │ ├── LstmBucketing.scala │ │ ├── RnnModel.scala │ │ ├── TestCharRnn.scala │ │ ├── TrainCharRnn.scala │ │ └── Utils.scala │ │ └── visualization │ │ ├── AlexNet.scala │ │ ├── ExampleVis.scala │ │ ├── GoogleNet.scala │ │ ├── Inception_BN.scala │ │ ├── Inception_V3.scala │ │ ├── LeNet.scala │ │ ├── ResNet_Small.scala │ │ └── VGG.scala ├── init-native │ ├── linux-x86_64 │ │ └── pom.xml │ ├── osx-x86_64 │ │ └── pom.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── native │ │ └── ml_dmlc_mxnet_init_native_c_api.cc ├── init │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── ml │ │ └── dmlc │ │ └── mxnet │ │ └── init │ │ ├── Base.scala │ │ └── LibInfo.scala ├── macros │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── ml │ │ └── dmlc │ │ └── mxnet │ │ ├── NDArrayMacro.scala │ │ ├── SymbolMacro.scala │ │ └── utils │ │ └── OperatorBuildUtils.scala ├── native │ ├── linux-x86_64-cpu │ │ └── pom.xml │ ├── linux-x86_64-gpu │ │ └── pom.xml │ ├── osx-x86_64-cpu │ │ └── pom.xml │ ├── pom.xml │ └── src │ │ └── main │ │ └── native │ │ ├── jni_helper_func.h │ │ └── ml_dmlc_mxnet_native_c_api.cc ├── pom.xml ├── scalastyle-config.xml └── spark │ ├── README.md │ ├── bin │ └── run-mnist-example.sh │ ├── pom.xml │ └── src │ └── main │ └── scala │ └── ml │ └── dmlc │ └── mxnet │ └── spark │ ├── MXNDArray.scala │ ├── MXNet.scala │ ├── MXNetModel.scala │ ├── MXNetParams.scala │ ├── ParameterServer.scala │ ├── example │ └── ClassificationExample.scala │ ├── io │ ├── LabeledPointIter.scala │ ├── LongLivingDataBatch.scala │ └── PointIter.scala │ ├── transformer │ └── MXNet.scala │ └── utils │ ├── Img2Vector.scala │ ├── Network.scala │ └── RepIterator.scala ├── setup-utils ├── install-mxnet-amz-linux.sh ├── install-mxnet-fedora-python.sh ├── install-mxnet-osx-python.sh ├── install-mxnet-ubuntu-python.sh ├── install-mxnet-ubuntu-r.sh └── install-mxnet-windows-python.bat ├── snap.python ├── snapcraft.yaml ├── src ├── c_api │ ├── c_api.cc │ ├── c_api_common.h │ ├── c_api_error.cc │ ├── c_api_executor.cc │ ├── c_api_function.cc │ ├── c_api_ndarray.cc │ ├── c_api_symbolic.cc │ └── c_predict_api.cc ├── common │ ├── cuda_utils.h │ ├── exec_utils.h │ ├── lazy_alloc_array.h │ ├── object_pool.h │ ├── random_generator.cu │ ├── random_generator.h │ ├── rtc.cc │ ├── static_array.h │ ├── utils.cc │ ├── utils.cu │ └── utils.h ├── engine │ ├── engine.cc │ ├── engine_impl.h │ ├── naive_engine.cc │ ├── openmp.cc │ ├── openmp.h │ ├── profiler.cc │ ├── profiler.h │ ├── stream_manager.h │ ├── thread_pool.h │ ├── threaded_engine.cc │ ├── threaded_engine.h │ ├── threaded_engine_perdevice.cc │ └── threaded_engine_pooled.cc ├── executor │ ├── attach_op_execs_pass.cc │ ├── attach_op_resource_pass.cc │ ├── exec_pass.h │ ├── graph_executor.cc │ ├── graph_executor.h │ ├── infer_graph_attr_pass.cc │ └── inplace_addto_detect_pass.cc ├── imperative │ ├── cached_op.cc │ ├── imperative.cc │ └── imperative_utils.h ├── initialize.cc ├── io │ ├── image_aug_default.cc │ ├── image_augmenter.h │ ├── image_det_aug_default.cc │ ├── image_io.cc │ ├── image_iter_common.h │ ├── image_recordio.h │ ├── inst_vector.h │ ├── io.cc │ ├── iter_batchloader.h │ ├── iter_csv.cc │ ├── iter_image_det_recordio.cc │ ├── iter_image_recordio.cc │ ├── iter_image_recordio_2.cc │ ├── iter_libsvm.cc │ ├── iter_mnist.cc │ ├── iter_normalize.h │ ├── iter_prefetcher.h │ ├── iter_sparse.h │ ├── iter_sparse_batchloader.h │ └── iter_sparse_prefetcher.h ├── kvstore │ ├── comm.h │ ├── gradient_compression-inl.h │ ├── gradient_compression.cc │ ├── gradient_compression.cu │ ├── gradient_compression.h │ ├── kvstore.cc │ ├── kvstore_dist.h │ ├── kvstore_dist_server.h │ ├── kvstore_local.h │ ├── kvstore_nccl.h │ ├── kvstore_utils.cc │ ├── kvstore_utils.cu │ └── kvstore_utils.h ├── ndarray │ ├── ndarray.cc │ ├── ndarray_function-inl.cuh │ ├── ndarray_function-inl.h │ ├── ndarray_function.cc │ ├── ndarray_function.cu │ └── ndarray_function.h ├── nnvm │ ├── legacy_json_util.cc │ └── legacy_op_util.cc ├── operator │ ├── batch_norm_v1-inl.h │ ├── batch_norm_v1.cc │ ├── batch_norm_v1.cu │ ├── bilinear_sampler-inl.h │ ├── bilinear_sampler.cc │ ├── bilinear_sampler.cu │ ├── c_lapack_api.h │ ├── channel_op_common.h │ ├── concat-inl.h │ ├── concat.cc │ ├── concat.cu │ ├── contrib │ │ ├── bounding_box-inl.h │ │ ├── bounding_box.cc │ │ ├── bounding_box.cu │ │ ├── count_sketch-inl.h │ │ ├── count_sketch.cc │ │ ├── count_sketch.cu │ │ ├── ctc_include │ │ │ ├── LICENSE │ │ │ ├── contrib │ │ │ │ └── moderngpu │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── include │ │ │ │ │ ├── device │ │ │ │ │ ├── ctaloadbalance.cuh │ │ │ │ │ ├── ctamerge.cuh │ │ │ │ │ ├── ctascan.cuh │ │ │ │ │ ├── ctasearch.cuh │ │ │ │ │ ├── ctasegreduce.cuh │ │ │ │ │ ├── ctasegscan.cuh │ │ │ │ │ ├── ctasegsort.cuh │ │ │ │ │ ├── ctasortedsearch.cuh │ │ │ │ │ ├── devicetypes.cuh │ │ │ │ │ ├── deviceutil.cuh │ │ │ │ │ ├── intrinsics.cuh │ │ │ │ │ ├── loadstore.cuh │ │ │ │ │ ├── serialsets.cuh │ │ │ │ │ └── sortnetwork.cuh │ │ │ │ │ ├── mgpudevice.cuh │ │ │ │ │ ├── mgpuenums.h │ │ │ │ │ └── util │ │ │ │ │ └── static.h │ │ │ └── detail │ │ │ │ ├── cpu_ctc.h │ │ │ │ ├── ctc_helper.h │ │ │ │ ├── gpu_ctc.h │ │ │ │ ├── gpu_ctc_kernels.h │ │ │ │ └── hostdevice.h │ │ ├── ctc_loss-inl.h │ │ ├── ctc_loss.cc │ │ ├── ctc_loss.cu │ │ ├── deformable_convolution-inl.h │ │ ├── deformable_convolution.cc │ │ ├── deformable_convolution.cu │ │ ├── deformable_psroi_pooling-inl.h │ │ ├── deformable_psroi_pooling.cc │ │ ├── deformable_psroi_pooling.cu │ │ ├── dequantize-inl.h │ │ ├── dequantize.cc │ │ ├── dequantize.cu │ │ ├── fft-inl.h │ │ ├── fft.cc │ │ ├── fft.cu │ │ ├── ifft-inl.h │ │ ├── ifft.cc │ │ ├── ifft.cu │ │ ├── krprod.cc │ │ ├── krprod.h │ │ ├── multi_proposal-inl.h │ │ ├── multi_proposal.cc │ │ ├── multi_proposal.cu │ │ ├── multibox_detection-inl.h │ │ ├── multibox_detection.cc │ │ ├── multibox_detection.cu │ │ ├── multibox_prior-inl.h │ │ ├── multibox_prior.cc │ │ ├── multibox_prior.cu │ │ ├── multibox_target-inl.h │ │ ├── multibox_target.cc │ │ ├── multibox_target.cu │ │ ├── nn │ │ │ ├── deformable_im2col.cuh │ │ │ └── deformable_im2col.h │ │ ├── proposal-inl.h │ │ ├── proposal.cc │ │ ├── proposal.cu │ │ ├── psroi_pooling-inl.h │ │ ├── psroi_pooling.cc │ │ ├── psroi_pooling.cu │ │ ├── quantize-inl.h │ │ ├── quantize.cc │ │ └── quantize.cu │ ├── convolution_v1-inl.h │ ├── convolution_v1.cc │ ├── convolution_v1.cu │ ├── correlation-inl.h │ ├── correlation.cc │ ├── correlation.cu │ ├── crop-inl.h │ ├── crop.cc │ ├── crop.cu │ ├── cross_device_copy.cc │ ├── cudnn_bilinear_sampler-inl.h │ ├── cudnn_lrn-inl.h │ ├── cudnn_rnn-inl.h │ ├── cudnn_spatial_transformer-inl.h │ ├── custom │ │ ├── custom-inl.h │ │ ├── custom.cc │ │ ├── native_op-inl.h │ │ ├── native_op.cc │ │ ├── native_op.cu │ │ ├── ndarray_op-inl.h │ │ └── ndarray_op.cc │ ├── elemwise_op_common.h │ ├── grid_generator-inl.h │ ├── grid_generator.cc │ ├── grid_generator.cu │ ├── identity_attach_KL_sparse_reg-inl.h │ ├── identity_attach_KL_sparse_reg.cc │ ├── identity_attach_KL_sparse_reg.cu │ ├── image │ │ ├── image_random-inl.h │ │ └── image_random.cc │ ├── instance_norm-inl.h │ ├── instance_norm.cc │ ├── instance_norm.cu │ ├── l2_normalization-inl.h │ ├── l2_normalization.cc │ ├── l2_normalization.cu │ ├── leaky_relu-inl.h │ ├── leaky_relu.cc │ ├── leaky_relu.cu │ ├── linalg.h │ ├── linalg_impl.h │ ├── loss_binary_op-inl.h │ ├── loss_binary_op.cc │ ├── loss_binary_op.cu │ ├── lrn-inl.h │ ├── lrn.cc │ ├── lrn.cu │ ├── make_loss-inl.h │ ├── make_loss.cc │ ├── make_loss.cu │ ├── math_functions-inl.h │ ├── mkl │ │ ├── mkl_batch_norm-inl.h │ │ ├── mkl_concat-inl.h │ │ ├── mkl_convolution-inl.h │ │ ├── mkl_cppwrapper.cc │ │ ├── mkl_cppwrapper.h │ │ ├── mkl_elementwise_copy-inl.h │ │ ├── mkl_elementwise_sum-inl.h │ │ ├── mkl_fully_connected-inl.h │ │ ├── mkl_lrn-inl.h │ │ ├── mkl_memory-inl.h │ │ ├── mkl_memory.cc │ │ ├── mkl_memory.h │ │ ├── mkl_pooling-inl.h │ │ ├── mkl_relu-inl.h │ │ └── mkl_util-inl.h │ ├── mshadow_op.h │ ├── mxnet_op.h │ ├── nn │ │ ├── activation-inl.h │ │ ├── activation.cc │ │ ├── activation.cu │ │ ├── batch_norm-inl.h │ │ ├── batch_norm.cc │ │ ├── batch_norm.cu │ │ ├── convolution-inl.h │ │ ├── convolution.cc │ │ ├── convolution.cu │ │ ├── cudnn │ │ │ ├── cudnn_activation-inl.h │ │ │ ├── cudnn_algoreg-inl.h │ │ │ ├── cudnn_algoreg.cc │ │ │ ├── cudnn_batch_norm-inl.h │ │ │ ├── cudnn_batch_norm.cc │ │ │ ├── cudnn_batch_norm.cu │ │ │ ├── cudnn_convolution-inl.h │ │ │ ├── cudnn_deconvolution-inl.h │ │ │ ├── cudnn_pooling-inl.h │ │ │ └── cudnn_softmax_activation-inl.h │ │ ├── deconvolution-inl.h │ │ ├── deconvolution.cc │ │ ├── deconvolution.cu │ │ ├── depthwise_convolution-inl.h │ │ ├── depthwise_convolution_tf.cuh │ │ ├── dropout-inl.h │ │ ├── dropout.cc │ │ ├── dropout.cu │ │ ├── fully_connected-inl.h │ │ ├── fully_connected.cc │ │ ├── fully_connected.cu │ │ ├── im2col.cuh │ │ ├── im2col.h │ │ ├── pool.cuh │ │ ├── pool.h │ │ ├── pooling-inl.h │ │ ├── pooling.cc │ │ ├── pooling.cu │ │ ├── sequence_mask-inl.h │ │ ├── softmax-inl.h │ │ ├── softmax.cc │ │ ├── softmax.cu │ │ ├── softmax_activation-inl.h │ │ ├── softmax_activation.cc │ │ ├── softmax_activation.cu │ │ ├── upsampling-inl.h │ │ ├── upsampling.cc │ │ └── upsampling.cu │ ├── nnpack │ │ ├── nnpack_convolution-inl.h │ │ ├── nnpack_fully_connected-inl.h │ │ ├── nnpack_pooling-inl.h │ │ ├── nnpack_util.cc │ │ └── nnpack_util.h │ ├── operator.cc │ ├── operator_common.h │ ├── operator_tune-inl.h │ ├── operator_tune.cc │ ├── operator_tune.h │ ├── operator_util.cc │ ├── optimizer_op-inl.h │ ├── optimizer_op.cc │ ├── optimizer_op.cu │ ├── pad-inl.h │ ├── pad.cc │ ├── pad.cu │ ├── pooling_v1-inl.h │ ├── pooling_v1.cc │ ├── pooling_v1.cu │ ├── random │ │ ├── multisample_op.cc │ │ ├── multisample_op.cu │ │ ├── multisample_op.h │ │ ├── sample_multinomial_op.cc │ │ ├── sample_multinomial_op.cu │ │ ├── sample_multinomial_op.h │ │ ├── sample_op.cc │ │ ├── sample_op.cu │ │ ├── sample_op.h │ │ └── sampler.h │ ├── regression_output-inl.h │ ├── regression_output.cc │ ├── regression_output.cu │ ├── rnn-inl.h │ ├── rnn.cc │ ├── rnn.cu │ ├── roi_pooling-inl.h │ ├── roi_pooling.cc │ ├── roi_pooling.cu │ ├── sequence_last-inl.h │ ├── sequence_last.cc │ ├── sequence_last.cu │ ├── sequence_mask-inl.h │ ├── sequence_mask.cc │ ├── sequence_mask.cu │ ├── sequence_op_common.h │ ├── sequence_reverse-inl.h │ ├── sequence_reverse.cc │ ├── sequence_reverse.cu │ ├── slice_channel-inl.h │ ├── slice_channel.cc │ ├── slice_channel.cu │ ├── softmax_output-inl.h │ ├── softmax_output.cc │ ├── softmax_output.cu │ ├── spatial_transformer-inl.h │ ├── spatial_transformer.cc │ ├── spatial_transformer.cu │ ├── special_functions-inl.h │ ├── svm_output-inl.h │ ├── svm_output.cc │ ├── svm_output.cu │ ├── swapaxis-inl.h │ ├── swapaxis.cc │ ├── swapaxis.cu │ └── tensor │ │ ├── broadcast_reduce-inl.cuh │ │ ├── broadcast_reduce-inl.h │ │ ├── broadcast_reduce_op.h │ │ ├── broadcast_reduce_op_index.cc │ │ ├── broadcast_reduce_op_index.cu │ │ ├── broadcast_reduce_op_value.cc │ │ ├── broadcast_reduce_op_value.cu │ │ ├── cast_storage-inl.cuh │ │ ├── cast_storage-inl.h │ │ ├── cast_storage.cc │ │ ├── cast_storage.cu │ │ ├── control_flow_op.cc │ │ ├── control_flow_op.cu │ │ ├── control_flow_op.h │ │ ├── dot-inl.cuh │ │ ├── dot-inl.h │ │ ├── dot.cc │ │ ├── dot.cu │ │ ├── elemwise_binary_broadcast_op.h │ │ ├── elemwise_binary_broadcast_op_basic.cc │ │ ├── elemwise_binary_broadcast_op_basic.cu │ │ ├── elemwise_binary_broadcast_op_extended.cc │ │ ├── elemwise_binary_broadcast_op_extended.cu │ │ ├── elemwise_binary_broadcast_op_logic.cc │ │ ├── elemwise_binary_broadcast_op_logic.cu │ │ ├── elemwise_binary_op-inl.h │ │ ├── elemwise_binary_op.cc │ │ ├── elemwise_binary_op.h │ │ ├── elemwise_binary_op_basic.cc │ │ ├── elemwise_binary_op_basic.cu │ │ ├── elemwise_binary_op_extended.cc │ │ ├── elemwise_binary_op_extended.cu │ │ ├── elemwise_binary_op_logic.cc │ │ ├── elemwise_binary_op_logic.cu │ │ ├── elemwise_binary_scalar_op.h │ │ ├── elemwise_binary_scalar_op_basic.cc │ │ ├── elemwise_binary_scalar_op_basic.cu │ │ ├── elemwise_binary_scalar_op_extended.cc │ │ ├── elemwise_binary_scalar_op_extended.cu │ │ ├── elemwise_binary_scalar_op_logic.cc │ │ ├── elemwise_binary_scalar_op_logic.cu │ │ ├── elemwise_scatter_op.cc │ │ ├── elemwise_scatter_op.cu │ │ ├── elemwise_scatter_op.h │ │ ├── elemwise_sum.cc │ │ ├── elemwise_sum.cu │ │ ├── elemwise_sum.h │ │ ├── elemwise_unary_op.h │ │ ├── elemwise_unary_op_basic.cc │ │ ├── elemwise_unary_op_basic.cu │ │ ├── elemwise_unary_op_trig.cc │ │ ├── elemwise_unary_op_trig.cu │ │ ├── indexing_op-inl.cuh │ │ ├── indexing_op.cc │ │ ├── indexing_op.cu │ │ ├── indexing_op.h │ │ ├── init_op.cc │ │ ├── init_op.cu │ │ ├── init_op.h │ │ ├── la_op.cc │ │ ├── la_op.cu │ │ ├── la_op.h │ │ ├── la_op_inline.h │ │ ├── matrix_op-inl.h │ │ ├── matrix_op.cc │ │ ├── matrix_op.cu │ │ ├── ordering_op-inl.h │ │ ├── ordering_op.cc │ │ ├── ordering_op.cu │ │ ├── sort_op-inl.cuh │ │ ├── sort_op.h │ │ ├── sparse_retain-inl.h │ │ ├── sparse_retain.cc │ │ ├── sparse_retain.cu │ │ ├── square_sum-inl.h │ │ ├── square_sum.cc │ │ ├── square_sum.cu │ │ └── util │ │ ├── tensor_util-inl.cuh │ │ └── tensor_util-inl.h ├── optimizer │ └── sgd-inl.h ├── resource.cc └── storage │ ├── cpu_device_storage.h │ ├── cpu_shared_storage_manager.h │ ├── gpu_device_storage.h │ ├── naive_storage_manager.h │ ├── pinned_memory_storage.h │ ├── pooled_storage_manager.h │ ├── storage.cc │ └── storage_manager.h ├── tests ├── .gitignore ├── CMakeLists.txt ├── ci_build │ ├── Dockerfile.amzn_linux_cpu │ ├── Dockerfile.build_cuda │ ├── Dockerfile.caffe_gpu │ ├── Dockerfile.cpu │ ├── Dockerfile.cpu_clang │ ├── Dockerfile.cpu_mklml │ ├── Dockerfile.crosstool │ ├── Dockerfile.doc │ ├── Dockerfile.emscripten │ ├── Dockerfile.gpu │ ├── Dockerfile.gpu_mklml │ ├── Dockerfile.lint │ ├── Dockerfile.spell_checker │ ├── Dockerfile.ubuntu1404_cuda75_cudnn5 │ ├── README.md │ ├── ci_build.sh │ ├── install │ │ ├── install_julia.sh │ │ ├── install_library.sh │ │ ├── install_maven.sh │ │ ├── install_openblas.sh │ │ ├── install_opencv.sh │ │ ├── install_python2.sh │ │ ├── install_python3.sh │ │ ├── install_testdeps.sh │ │ ├── ubuntu_install_core.sh │ │ ├── ubuntu_install_nvidia.sh │ │ ├── ubuntu_install_perl.sh │ │ ├── ubuntu_install_python.sh │ │ ├── ubuntu_install_r.sh │ │ └── ubuntu_install_scala.sh │ ├── pip_tests │ │ ├── Dockerfile.in.pip_cpu │ │ ├── Dockerfile.in.pip_cu75 │ │ ├── Dockerfile.in.pip_cu80 │ │ └── Dockerfile.pip_dependencies │ ├── pylintrc │ └── with_the_same_user ├── cpp │ ├── .gitignore │ ├── engine │ │ └── threaded_engine_test.cc │ ├── include │ │ ├── test_core_op.h │ │ ├── test_legacy_op.h │ │ ├── test_ndarray_utils.h │ │ ├── test_op.h │ │ ├── test_op_runner.h │ │ ├── test_perf.h │ │ ├── test_tune.h │ │ └── test_util.h │ ├── misc │ │ └── memory_test.cc │ ├── operator │ │ ├── activation_perf.cc │ │ ├── batchnorm_test.cc │ │ ├── coreop_perf.cc │ │ ├── dropout_perf.cc │ │ ├── fully_conn_perf.cc │ │ ├── krprod_test.cc │ │ ├── runner │ │ │ └── core_op_runner_test.cc │ │ ├── slice_channel_perf.cc │ │ └── tune │ │ │ └── operator_tune_test.cc │ ├── storage │ │ └── storage_test.cc │ ├── test_main.cc │ └── unittest.mk ├── jenkins │ ├── format │ ├── run_as_user.sh │ ├── run_test.sh │ ├── run_test_amzn_linux_gpu.sh │ ├── run_test_installation_docs.sh │ ├── run_test_pip_installations.sh │ ├── run_test_ubuntu.sh │ └── set_user_permissions.sh ├── nightly │ ├── .gitignore │ ├── Jenkinsfile │ ├── README.md │ ├── TestDoc │ │ ├── doc_spell_checker.py │ │ └── doc_spell_grammar.sh │ ├── compilation_warnings │ │ ├── compilation_warnings.sh │ │ └── process_output.py │ ├── dist_device_sync_kvstore.py │ ├── dist_lenet.py │ ├── dist_sync_kvstore.py │ ├── download.sh │ ├── multi_lenet.py │ ├── mxnet_keras_integration_tests │ │ ├── assertion_util.py │ │ ├── model_util.py │ │ ├── profiler.py │ │ └── test_mnist_mlp.py │ ├── sh2ju.sh │ ├── test_all.sh │ ├── test_image_classification.sh │ ├── test_kvstore.py │ ├── test_mxnet_keras_integration_cpu.sh │ ├── test_mxnet_keras_integration_gpu.sh │ ├── test_tutorial.py │ └── test_tutorial_config.txt ├── python │ ├── README.md │ ├── common │ │ └── models.py │ ├── cpu │ │ └── test_mklml.py │ ├── doctest │ │ └── test_docstring.py │ ├── gpu │ │ ├── test_forward.py │ │ ├── test_kvstore_gpu.py │ │ ├── test_nccl.py │ │ ├── test_operator_gpu.py │ │ └── test_rtc.py │ ├── predict │ │ └── mxnet_predict_example.py │ ├── train │ │ ├── common.py │ │ ├── test_autograd.py │ │ ├── test_bucketing.py │ │ ├── test_conv.py │ │ ├── test_dtype.py │ │ └── test_mlp.py │ └── unittest │ │ ├── common.py │ │ ├── legacy_ndarray.v0 │ │ ├── save_000800.json │ │ ├── test_attr.py │ │ ├── test_autograd.py │ │ ├── test_contrib_autograd.py │ │ ├── test_contrib_krprod.py │ │ ├── test_contrib_operator.py │ │ ├── test_contrib_text.py │ │ ├── test_engine.py │ │ ├── test_executor.py │ │ ├── test_gluon.py │ │ ├── test_gluon_contrib.py │ │ ├── test_gluon_data.py │ │ ├── test_gluon_data_vision.py │ │ ├── test_gluon_model_zoo.py │ │ ├── test_gluon_rnn.py │ │ ├── test_image.py │ │ ├── test_infer_shape.py │ │ ├── test_init.py │ │ ├── test_io.py │ │ ├── test_kvstore.py │ │ ├── test_loss.py │ │ ├── test_metric.py │ │ ├── test_model_parallel.py │ │ ├── test_module.py │ │ ├── test_multi_device_exec.py │ │ ├── test_ndarray.py │ │ ├── test_operator.py │ │ ├── test_optimizer.py │ │ ├── test_profiler.py │ │ ├── test_random.py │ │ ├── test_recordio.py │ │ ├── test_rnn.py │ │ ├── test_sparse_ndarray.py │ │ ├── test_sparse_operator.py │ │ ├── test_symbol.py │ │ └── test_viz.py └── travis │ ├── is_core_changed.sh │ ├── r_vignettes.R │ ├── run_test.sh │ ├── setup.sh │ └── travis_after_failure.sh └── tools ├── accnn ├── README.md ├── acc_conv.py ├── acc_fc.py ├── accnn.py ├── config.json ├── rank_selection.py └── utils.py ├── bandwidth ├── .gitignore ├── README.md ├── measure.py └── test_measure.py ├── caffe_converter ├── .gitignore ├── Makefile ├── README.md ├── caffe.proto ├── caffe_parser.py ├── caffe_proto_utils.py ├── compare_layers.py ├── convert_caffe_modelzoo.py ├── convert_mean.py ├── convert_model.py ├── convert_symbol.py ├── make_win32.bat ├── run.sh └── test_converter.py ├── caffe_translator ├── README.md ├── build.gradle ├── build_from_source.md ├── faq.md ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts │ └── convert_caffe_model.py ├── settings.gradle └── src │ └── main │ ├── antlr │ └── io │ │ └── mxnet │ │ └── caffetranslator │ │ └── CaffePrototxt.g4 │ ├── java │ └── io │ │ └── mxnet │ │ └── caffetranslator │ │ ├── Config.java │ │ ├── Converter.java │ │ ├── CreateModelListener.java │ │ ├── GenerationHelper.java │ │ ├── GeneratorOutput.java │ │ ├── Launcher.java │ │ ├── Layer.java │ │ ├── MLModel.java │ │ ├── Optimizer.java │ │ ├── ParserHelper.java │ │ ├── Solver.java │ │ ├── SolverListener.java │ │ ├── SymbolGenerator.java │ │ ├── SymbolGeneratorFactory.java │ │ ├── Utils.java │ │ ├── generators │ │ ├── AccuracyMetricsGenerator.java │ │ ├── BaseGenerator.java │ │ ├── BatchNormGenerator.java │ │ ├── ConcatGenerator.java │ │ ├── ConvolutionGenerator.java │ │ ├── DeconvolutionGenerator.java │ │ ├── DropoutGenerator.java │ │ ├── EltwiseGenerator.java │ │ ├── FCGenerator.java │ │ ├── FlattenGenerator.java │ │ ├── PermuteGenerator.java │ │ ├── PluginIntLayerGenerator.java │ │ ├── PluginLayerHelper.java │ │ ├── PluginLossGenerator.java │ │ ├── PoolingGenerator.java │ │ ├── PowerGenerator.java │ │ ├── ReluGenerator.java │ │ ├── ScaleGenerator.java │ │ └── SoftmaxOutputGenerator.java │ │ └── misc │ │ ├── CollectStats.java │ │ └── StatsListener.java │ └── resources │ └── templates │ ├── accuracy.st │ ├── activation.st │ ├── add.st │ ├── batchnorm.st │ ├── concat.st │ ├── convolution.st │ ├── deconvolution.st │ ├── dropout.st │ ├── fc.st │ ├── flatten.st │ ├── group.st │ ├── imports.st │ ├── init_params.st │ ├── iterator.st │ ├── logging.st │ ├── lrn.st │ ├── lrpolicy_exp.st │ ├── lrpolicy_inv.st │ ├── lrpolicy_multistep.st │ ├── lrpolicy_poly.st │ ├── lrpolicy_sigmoid.st │ ├── lrpolicy_step.st │ ├── maxium.st │ ├── metrics_classes.st │ ├── mul.st │ ├── opt_adadelta.st │ ├── opt_adagrad.st │ ├── opt_adam.st │ ├── opt_nesterov.st │ ├── opt_rmsprop.st │ ├── opt_sgd.st │ ├── opt_vars.st │ ├── param_initializer.st │ ├── params_loader.st │ ├── permute.st │ ├── pooling.st │ ├── power.st │ ├── runner.st │ ├── softmaxoutput.st │ ├── symbols.stg │ ├── top_k_accuracy.st │ └── var.st ├── cfn └── Readme.md ├── coreml ├── README.md ├── converter │ ├── __init__.py │ ├── _add_pooling.py │ ├── _layers.py │ ├── _mxnet_converter.py │ └── utils.py ├── mxnet_coreml_converter.py ├── pip_package │ ├── .gitignore │ ├── MANIFEST.in │ ├── README.rst │ └── setup.py └── test │ ├── test_mxnet_converter.py │ ├── test_mxnet_image.py │ └── test_mxnet_models.py ├── diagnose.py ├── im2rec.cc ├── im2rec.py ├── ipynb2md.py ├── kill-mxnet.py ├── launch.py ├── license_header.py ├── parse_log.py ├── pip_package ├── MANIFEST.in ├── README.md ├── make_pip_package.sh └── setup.py └── rec2idx.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/.travis.yml -------------------------------------------------------------------------------- /3rdparty/cub/CHANGE_LOG.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/CHANGE_LOG.TXT -------------------------------------------------------------------------------- /3rdparty/cub/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/LICENSE.TXT -------------------------------------------------------------------------------- /3rdparty/cub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/README.md -------------------------------------------------------------------------------- /3rdparty/cub/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/common.mk -------------------------------------------------------------------------------- /3rdparty/cub/cub/cub.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/cub/cub.cuh -------------------------------------------------------------------------------- /3rdparty/cub/cub/util_arch.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/cub/util_arch.cuh -------------------------------------------------------------------------------- /3rdparty/cub/cub/util_ptx.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/cub/util_ptx.cuh -------------------------------------------------------------------------------- /3rdparty/cub/cub/util_type.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/cub/util_type.cuh -------------------------------------------------------------------------------- /3rdparty/cub/experimental/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /3rdparty/cub/test/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /link_main.obj 3 | -------------------------------------------------------------------------------- /3rdparty/cub/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/test/Makefile -------------------------------------------------------------------------------- /3rdparty/cub/test/link_a.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/test/link_a.cu -------------------------------------------------------------------------------- /3rdparty/cub/test/link_b.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/test/link_b.cu -------------------------------------------------------------------------------- /3rdparty/cub/test/mersenne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/test/mersenne.h -------------------------------------------------------------------------------- /3rdparty/cub/test/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/test/test_util.h -------------------------------------------------------------------------------- /3rdparty/cub/tune/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | -------------------------------------------------------------------------------- /3rdparty/cub/tune/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/cub/tune/Makefile -------------------------------------------------------------------------------- /3rdparty/googletest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/googletest/.gitignore -------------------------------------------------------------------------------- /3rdparty/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/googletest/README.md -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /3rdparty/googletest/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rdparty/googletest/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/googletest/travis.sh -------------------------------------------------------------------------------- /3rdparty/openmp/.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/.arcconfig -------------------------------------------------------------------------------- /3rdparty/openmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/.gitignore -------------------------------------------------------------------------------- /3rdparty/openmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/openmp/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/CREDITS.txt -------------------------------------------------------------------------------- /3rdparty/openmp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/openmp/offload/src/orsl-lite/version.txt: -------------------------------------------------------------------------------- 1 | ORSL-lite 0.7 2 | -------------------------------------------------------------------------------- /3rdparty/openmp/offload/src/use_mpss2.txt: -------------------------------------------------------------------------------- 1 | 2.1.6720-13 2 | -------------------------------------------------------------------------------- /3rdparty/openmp/offload/src/use_mpss_win.txt: -------------------------------------------------------------------------------- 1 | 2.1.6720-13 2 | -------------------------------------------------------------------------------- /3rdparty/openmp/testsuite/LLVM-IR/lit.tmp: -------------------------------------------------------------------------------- 1 | ../LLVM-IR/lin_32e/ 2 | -------------------------------------------------------------------------------- /3rdparty/openmp/testsuite/bin/lit.tmp: -------------------------------------------------------------------------------- 1 | ../LLVM-IR/lin_32e/ 2 | -------------------------------------------------------------------------------- /3rdparty/openmp/testsuite/ompts-f.conf: -------------------------------------------------------------------------------- 1 | !Empty config file 2 | -------------------------------------------------------------------------------- /3rdparty/openmp/www/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/www/README.txt -------------------------------------------------------------------------------- /3rdparty/openmp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/www/index.html -------------------------------------------------------------------------------- /3rdparty/openmp/www/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/3rdparty/openmp/www/menu.css -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/DISCLAIMER -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /KEYS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/KEYS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/LICENSE -------------------------------------------------------------------------------- /MKL_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/MKL_README.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/NEWS.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/README.md -------------------------------------------------------------------------------- /amalgamation/.gitignore: -------------------------------------------------------------------------------- 1 | *-all.cc 2 | -------------------------------------------------------------------------------- /amalgamation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/Makefile -------------------------------------------------------------------------------- /amalgamation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/README.md -------------------------------------------------------------------------------- /amalgamation/amalgamation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/amalgamation.py -------------------------------------------------------------------------------- /amalgamation/dmlc-minimum0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/dmlc-minimum0.cc -------------------------------------------------------------------------------- /amalgamation/jni/predictor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/jni/predictor.cc -------------------------------------------------------------------------------- /amalgamation/mxnet_predict0.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/mxnet_predict0.cc -------------------------------------------------------------------------------- /amalgamation/prep_nnvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/amalgamation/prep_nnvm.sh -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/appveyor.yml -------------------------------------------------------------------------------- /benchmark/python/sparse/dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/benchmark/python/sparse/dot.py -------------------------------------------------------------------------------- /cmake/ChooseBlas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cmake/ChooseBlas.cmake -------------------------------------------------------------------------------- /cmake/FirstClassLangCuda.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cmake/FirstClassLangCuda.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindAtlas.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cmake/Modules/FindAtlas.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindMKL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cmake/Modules/FindMKL.cmake -------------------------------------------------------------------------------- /cmake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cmake/Utils.cmake -------------------------------------------------------------------------------- /cpp-package/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/.travis.yml -------------------------------------------------------------------------------- /cpp-package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/CMakeLists.txt -------------------------------------------------------------------------------- /cpp-package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/LICENSE -------------------------------------------------------------------------------- /cpp-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/README.md -------------------------------------------------------------------------------- /cpp-package/cpp-package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/cpp-package.mk -------------------------------------------------------------------------------- /cpp-package/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/example/Makefile -------------------------------------------------------------------------------- /cpp-package/example/example.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/example/example.mk -------------------------------------------------------------------------------- /cpp-package/example/lenet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/example/lenet.cpp -------------------------------------------------------------------------------- /cpp-package/example/mlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/example/mlp.cpp -------------------------------------------------------------------------------- /cpp-package/example/resnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/example/resnet.cpp -------------------------------------------------------------------------------- /cpp-package/include/mxnet-cpp/.gitignore: -------------------------------------------------------------------------------- 1 | # Rebuildable file(s) 2 | op.h 3 | -------------------------------------------------------------------------------- /cpp-package/scripts/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/scripts/lint.py -------------------------------------------------------------------------------- /cpp-package/tests/ci_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/cpp-package/tests/ci_test.sh -------------------------------------------------------------------------------- /dlpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/.gitignore -------------------------------------------------------------------------------- /dlpack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/CMakeLists.txt -------------------------------------------------------------------------------- /dlpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/LICENSE -------------------------------------------------------------------------------- /dlpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/Makefile -------------------------------------------------------------------------------- /dlpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/README.md -------------------------------------------------------------------------------- /dlpack/docs/.gitignore: -------------------------------------------------------------------------------- 1 | doxygen 2 | -------------------------------------------------------------------------------- /dlpack/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/docs/CMakeLists.txt -------------------------------------------------------------------------------- /dlpack/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/docs/Doxyfile -------------------------------------------------------------------------------- /dlpack/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/docs/Doxyfile.in -------------------------------------------------------------------------------- /dlpack/include/dlpack/dlpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/include/dlpack/dlpack.h -------------------------------------------------------------------------------- /dlpack/src/mock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dlpack/src/mock.cc -------------------------------------------------------------------------------- /dmlc-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/.gitignore -------------------------------------------------------------------------------- /dmlc-core/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/.travis.yml -------------------------------------------------------------------------------- /dmlc-core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/CMakeLists.txt -------------------------------------------------------------------------------- /dmlc-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/LICENSE -------------------------------------------------------------------------------- /dmlc-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/Makefile -------------------------------------------------------------------------------- /dmlc-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/README.md -------------------------------------------------------------------------------- /dmlc-core/cmake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/cmake/Utils.cmake -------------------------------------------------------------------------------- /dmlc-core/cmake/lint.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/cmake/lint.cmake -------------------------------------------------------------------------------- /dmlc-core/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | _build 3 | doxygen 4 | -------------------------------------------------------------------------------- /dmlc-core/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/Doxyfile -------------------------------------------------------------------------------- /dmlc-core/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/Makefile -------------------------------------------------------------------------------- /dmlc-core/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/README -------------------------------------------------------------------------------- /dmlc-core/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/conf.py -------------------------------------------------------------------------------- /dmlc-core/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/index.md -------------------------------------------------------------------------------- /dmlc-core/doc/parameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/parameter.md -------------------------------------------------------------------------------- /dmlc-core/doc/sphinx_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/doc/sphinx_util.py -------------------------------------------------------------------------------- /dmlc-core/example/parameter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/example/parameter.cc -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/any.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/base.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/data.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/io.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/json.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/lua.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/omp.h -------------------------------------------------------------------------------- /dmlc-core/include/dmlc/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/include/dmlc/timer.h -------------------------------------------------------------------------------- /dmlc-core/make/dmlc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/make/dmlc.mk -------------------------------------------------------------------------------- /dmlc-core/scripts/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/scripts/lint.py -------------------------------------------------------------------------------- /dmlc-core/scripts/packages.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/scripts/packages.mk -------------------------------------------------------------------------------- /dmlc-core/src/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/config.cc -------------------------------------------------------------------------------- /dmlc-core/src/data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/data.cc -------------------------------------------------------------------------------- /dmlc-core/src/data/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/data/parser.h -------------------------------------------------------------------------------- /dmlc-core/src/data/row_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/data/row_block.h -------------------------------------------------------------------------------- /dmlc-core/src/data/strtonum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/data/strtonum.h -------------------------------------------------------------------------------- /dmlc-core/src/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io.cc -------------------------------------------------------------------------------- /dmlc-core/src/io/filesys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/filesys.cc -------------------------------------------------------------------------------- /dmlc-core/src/io/filesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/filesys.h -------------------------------------------------------------------------------- /dmlc-core/src/io/line_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/line_split.cc -------------------------------------------------------------------------------- /dmlc-core/src/io/line_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/line_split.h -------------------------------------------------------------------------------- /dmlc-core/src/io/s3_filesys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/s3_filesys.cc -------------------------------------------------------------------------------- /dmlc-core/src/io/s3_filesys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/s3_filesys.h -------------------------------------------------------------------------------- /dmlc-core/src/io/uri_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/io/uri_spec.h -------------------------------------------------------------------------------- /dmlc-core/src/recordio.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/src/recordio.cc -------------------------------------------------------------------------------- /dmlc-core/test/.gitignore: -------------------------------------------------------------------------------- 1 | *_test 2 | *.csv -------------------------------------------------------------------------------- /dmlc-core/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/test/README.md -------------------------------------------------------------------------------- /dmlc-core/test/dmlc_test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/test/dmlc_test.mk -------------------------------------------------------------------------------- /dmlc-core/test/filesys_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/test/filesys_test.cc -------------------------------------------------------------------------------- /dmlc-core/test/logging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/test/logging_test.cc -------------------------------------------------------------------------------- /dmlc-core/test/split_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/test/split_test.cc -------------------------------------------------------------------------------- /dmlc-core/test/unittest/.gitignore: -------------------------------------------------------------------------------- 1 | dmlc_unittest 2 | -------------------------------------------------------------------------------- /dmlc-core/tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/tracker/README.md -------------------------------------------------------------------------------- /dmlc-core/tracker/dmlc-submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/tracker/dmlc-submit -------------------------------------------------------------------------------- /dmlc-core/tracker/yarn/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .classpath 3 | .project 4 | *.jar 5 | -------------------------------------------------------------------------------- /dmlc-core/tracker/yarn/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/tracker/yarn/pom.xml -------------------------------------------------------------------------------- /dmlc-core/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/windows/.gitignore -------------------------------------------------------------------------------- /dmlc-core/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/windows/README.md -------------------------------------------------------------------------------- /dmlc-core/windows/dmlc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/dmlc-core/windows/dmlc.sln -------------------------------------------------------------------------------- /docker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/.gitignore -------------------------------------------------------------------------------- /docker/Dockerfiles/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/Dockerfiles/License.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/install/cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/install/cpp.sh -------------------------------------------------------------------------------- /docker/install/julia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/install/julia.sh -------------------------------------------------------------------------------- /docker/install/perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/install/perl.sh -------------------------------------------------------------------------------- /docker/install/python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/install/python.sh -------------------------------------------------------------------------------- /docker/install/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/install/r.sh -------------------------------------------------------------------------------- /docker/install/scala.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/install/scala.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/run.sh -------------------------------------------------------------------------------- /docker/tool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker/tool.sh -------------------------------------------------------------------------------- /docker_multiarch/.gitignore: -------------------------------------------------------------------------------- 1 | mxnet/ 2 | build/ 3 | -------------------------------------------------------------------------------- /docker_multiarch/License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker_multiarch/License.md -------------------------------------------------------------------------------- /docker_multiarch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker_multiarch/README.md -------------------------------------------------------------------------------- /docker_multiarch/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docker_multiarch/tool.py -------------------------------------------------------------------------------- /docs/.dockerignore: -------------------------------------------------------------------------------- 1 | Dockerfile 2 | _build 3 | 4 | -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/* 2 | *.pyc 3 | doxygen 4 | -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_static/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/cn.svg -------------------------------------------------------------------------------- /docs/_static/js/copycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/js/copycode.js -------------------------------------------------------------------------------- /docs/_static/js/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/js/navbar.js -------------------------------------------------------------------------------- /docs/_static/js/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/js/options.js -------------------------------------------------------------------------------- /docs/_static/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/js/page.js -------------------------------------------------------------------------------- /docs/_static/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/js/search.js -------------------------------------------------------------------------------- /docs/_static/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/js/sidebar.js -------------------------------------------------------------------------------- /docs/_static/mxnet-theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /docs/_static/mxnet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/mxnet.css -------------------------------------------------------------------------------- /docs/_static/selectlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/selectlang.js -------------------------------------------------------------------------------- /docs/_static/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/_static/us.svg -------------------------------------------------------------------------------- /docs/api/c++/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/c++/index.md -------------------------------------------------------------------------------- /docs/api/julia/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/julia/index.md -------------------------------------------------------------------------------- /docs/api/perl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/perl/index.md -------------------------------------------------------------------------------- /docs/api/perl/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/perl/io.md -------------------------------------------------------------------------------- /docs/api/perl/kvstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/perl/kvstore.md -------------------------------------------------------------------------------- /docs/api/perl/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/perl/module.md -------------------------------------------------------------------------------- /docs/api/perl/ndarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/perl/ndarray.md -------------------------------------------------------------------------------- /docs/api/perl/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/perl/symbol.md -------------------------------------------------------------------------------- /docs/api/python/gluon/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/gluon/data.md -------------------------------------------------------------------------------- /docs/api/python/gluon/gluon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/gluon/gluon.md -------------------------------------------------------------------------------- /docs/api/python/gluon/loss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/gluon/loss.md -------------------------------------------------------------------------------- /docs/api/python/gluon/nn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/gluon/nn.md -------------------------------------------------------------------------------- /docs/api/python/gluon/rnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/gluon/rnn.md -------------------------------------------------------------------------------- /docs/api/python/image/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/image/image.md -------------------------------------------------------------------------------- /docs/api/python/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/index.md -------------------------------------------------------------------------------- /docs/api/python/io/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/io/io.md -------------------------------------------------------------------------------- /docs/api/python/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/model.md -------------------------------------------------------------------------------- /docs/api/python/rtc/rtc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/rtc/rtc.md -------------------------------------------------------------------------------- /docs/api/python/symbol/rnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/python/symbol/rnn.md -------------------------------------------------------------------------------- /docs/api/r/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/r/Makefile -------------------------------------------------------------------------------- /docs/api/r/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/r/index.md -------------------------------------------------------------------------------- /docs/api/scala/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/index.md -------------------------------------------------------------------------------- /docs/api/scala/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/io.md -------------------------------------------------------------------------------- /docs/api/scala/kvstore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/kvstore.md -------------------------------------------------------------------------------- /docs/api/scala/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/model.md -------------------------------------------------------------------------------- /docs/api/scala/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/module.md -------------------------------------------------------------------------------- /docs/api/scala/ndarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/ndarray.md -------------------------------------------------------------------------------- /docs/api/scala/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/api/scala/symbol.md -------------------------------------------------------------------------------- /docs/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/architecture/index.md -------------------------------------------------------------------------------- /docs/architecture/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/architecture/overview.md -------------------------------------------------------------------------------- /docs/community/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/community/contribute.md -------------------------------------------------------------------------------- /docs/community/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/community/index.md -------------------------------------------------------------------------------- /docs/community/powered_by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/community/powered_by.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/faq/add_op_in_backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/add_op_in_backend.md -------------------------------------------------------------------------------- /docs/faq/bucketing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/bucketing.md -------------------------------------------------------------------------------- /docs/faq/caffe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/caffe.md -------------------------------------------------------------------------------- /docs/faq/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/cloud.md -------------------------------------------------------------------------------- /docs/faq/develop_and_hack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/develop_and_hack.md -------------------------------------------------------------------------------- /docs/faq/env_var.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/env_var.md -------------------------------------------------------------------------------- /docs/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/faq.md -------------------------------------------------------------------------------- /docs/faq/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/finetune.md -------------------------------------------------------------------------------- /docs/faq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/index.md -------------------------------------------------------------------------------- /docs/faq/multi_devices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/multi_devices.md -------------------------------------------------------------------------------- /docs/faq/new_op.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/new_op.md -------------------------------------------------------------------------------- /docs/faq/nnpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/nnpack.md -------------------------------------------------------------------------------- /docs/faq/perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/perf.md -------------------------------------------------------------------------------- /docs/faq/recordio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/recordio.md -------------------------------------------------------------------------------- /docs/faq/s3_integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/s3_integration.md -------------------------------------------------------------------------------- /docs/faq/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/security.md -------------------------------------------------------------------------------- /docs/faq/smart_device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/smart_device.md -------------------------------------------------------------------------------- /docs/faq/visualize_graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/faq/visualize_graph.md -------------------------------------------------------------------------------- /docs/get_started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/get_started/index.md -------------------------------------------------------------------------------- /docs/get_started/why_mxnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/get_started/why_mxnet.md -------------------------------------------------------------------------------- /docs/gluon/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/gluon/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install/centos_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/centos_setup.md -------------------------------------------------------------------------------- /docs/install/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/index.md -------------------------------------------------------------------------------- /docs/install/osx_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/osx_setup.md -------------------------------------------------------------------------------- /docs/install/raspbian_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/raspbian_setup.md -------------------------------------------------------------------------------- /docs/install/tx2_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/tx2_setup.md -------------------------------------------------------------------------------- /docs/install/ubuntu_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/ubuntu_setup.md -------------------------------------------------------------------------------- /docs/install/windows_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/install/windows_setup.md -------------------------------------------------------------------------------- /docs/model_zoo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/model_zoo/index.md -------------------------------------------------------------------------------- /docs/mxdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/mxdoc.py -------------------------------------------------------------------------------- /docs/tutorials/basic/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/basic/data.md -------------------------------------------------------------------------------- /docs/tutorials/basic/module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/basic/module.md -------------------------------------------------------------------------------- /docs/tutorials/basic/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/basic/symbol.md -------------------------------------------------------------------------------- /docs/tutorials/c++/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/c++/basics.md -------------------------------------------------------------------------------- /docs/tutorials/gluon/gluon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/gluon/gluon.md -------------------------------------------------------------------------------- /docs/tutorials/gluon/hybrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/gluon/hybrid.md -------------------------------------------------------------------------------- /docs/tutorials/gluon/mnist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/gluon/mnist.md -------------------------------------------------------------------------------- /docs/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/index.md -------------------------------------------------------------------------------- /docs/tutorials/nlp/cnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/nlp/cnn.md -------------------------------------------------------------------------------- /docs/tutorials/python/mnist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/python/mnist.md -------------------------------------------------------------------------------- /docs/tutorials/r/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/r/index.md -------------------------------------------------------------------------------- /docs/tutorials/r/ndarray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/r/ndarray.md -------------------------------------------------------------------------------- /docs/tutorials/r/symbol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/r/symbol.md -------------------------------------------------------------------------------- /docs/tutorials/scala/mnist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/scala/mnist.md -------------------------------------------------------------------------------- /docs/tutorials/sparse/csr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/sparse/csr.md -------------------------------------------------------------------------------- /docs/tutorials/sparse/train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/docs/tutorials/sparse/train.md -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/README.md -------------------------------------------------------------------------------- /example/adversary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/adversary/README.md -------------------------------------------------------------------------------- /example/autoencoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/autoencoder/README.md -------------------------------------------------------------------------------- /example/autoencoder/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/autoencoder/data.py -------------------------------------------------------------------------------- /example/autoencoder/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/autoencoder/model.py -------------------------------------------------------------------------------- /example/autoencoder/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/autoencoder/solver.py -------------------------------------------------------------------------------- /example/bi-lstm-sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/bi-lstm-sort/README.md -------------------------------------------------------------------------------- /example/bi-lstm-sort/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/bi-lstm-sort/lstm.py -------------------------------------------------------------------------------- /example/caffe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/caffe/README.md -------------------------------------------------------------------------------- /example/caffe/caffe_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/caffe/caffe_net.py -------------------------------------------------------------------------------- /example/caffe/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/caffe/data.py -------------------------------------------------------------------------------- /example/caffe/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/caffe/train_model.py -------------------------------------------------------------------------------- /example/capsnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/capsnet/README.md -------------------------------------------------------------------------------- /example/capsnet/capsulenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/capsnet/capsulenet.py -------------------------------------------------------------------------------- /example/capsnet/result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/capsnet/result.PNG -------------------------------------------------------------------------------- /example/captcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/captcha/README.md -------------------------------------------------------------------------------- /example/cnn_text_classification/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | checkpoint -------------------------------------------------------------------------------- /example/ctc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/README.md -------------------------------------------------------------------------------- /example/ctc/ctc_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/ctc_metrics.py -------------------------------------------------------------------------------- /example/ctc/hyperparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/hyperparams.py -------------------------------------------------------------------------------- /example/ctc/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/lstm.py -------------------------------------------------------------------------------- /example/ctc/lstm_ocr_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/lstm_ocr_infer.py -------------------------------------------------------------------------------- /example/ctc/lstm_ocr_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/lstm_ocr_train.py -------------------------------------------------------------------------------- /example/ctc/multiproc_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/multiproc_data.py -------------------------------------------------------------------------------- /example/ctc/ocr_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/ocr_iter.py -------------------------------------------------------------------------------- /example/ctc/ocr_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/ocr_predict.py -------------------------------------------------------------------------------- /example/ctc/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ctc/sample.jpg -------------------------------------------------------------------------------- /example/dsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/dsd/README.md -------------------------------------------------------------------------------- /example/dsd/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/dsd/mlp.py -------------------------------------------------------------------------------- /example/dsd/sparse_sgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/dsd/sparse_sgd.py -------------------------------------------------------------------------------- /example/fcn-xs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/README.md -------------------------------------------------------------------------------- /example/fcn-xs/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/data.py -------------------------------------------------------------------------------- /example/fcn-xs/fcn_xs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/fcn_xs.py -------------------------------------------------------------------------------- /example/fcn-xs/init_fcnxs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/init_fcnxs.py -------------------------------------------------------------------------------- /example/fcn-xs/run_fcnxs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/run_fcnxs.sh -------------------------------------------------------------------------------- /example/fcn-xs/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/solver.py -------------------------------------------------------------------------------- /example/fcn-xs/symbol_fcnxs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/fcn-xs/symbol_fcnxs.py -------------------------------------------------------------------------------- /example/gluon/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/gluon/data.py -------------------------------------------------------------------------------- /example/gluon/dcgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/gluon/dcgan.py -------------------------------------------------------------------------------- /example/gluon/lstm_crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/gluon/lstm_crf.py -------------------------------------------------------------------------------- /example/gluon/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/gluon/mnist.py -------------------------------------------------------------------------------- /example/image-classification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/image-classification/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/image-classification/symbols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/kaggle-ndsb2/Train.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/kaggle-ndsb2/Train.R -------------------------------------------------------------------------------- /example/memcost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/memcost/Makefile -------------------------------------------------------------------------------- /example/memcost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/memcost/README.md -------------------------------------------------------------------------------- /example/module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/module/README.md -------------------------------------------------------------------------------- /example/module/mnist_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/module/mnist_mlp.py -------------------------------------------------------------------------------- /example/multi-task/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/multi-task/README.md -------------------------------------------------------------------------------- /example/nce-loss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/nce-loss/README.md -------------------------------------------------------------------------------- /example/nce-loss/lstm_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/nce-loss/lstm_net.py -------------------------------------------------------------------------------- /example/nce-loss/nce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/nce-loss/nce.py -------------------------------------------------------------------------------- /example/nce-loss/toy_nce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/nce-loss/toy_nce.py -------------------------------------------------------------------------------- /example/nce-loss/wordvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/nce-loss/wordvec.py -------------------------------------------------------------------------------- /example/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/notebooks/README.md -------------------------------------------------------------------------------- /example/numpy-ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/numpy-ops/README.md -------------------------------------------------------------------------------- /example/profiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/profiler/README.md -------------------------------------------------------------------------------- /example/rcnn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/.gitignore -------------------------------------------------------------------------------- /example/rcnn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/LICENSE -------------------------------------------------------------------------------- /example/rcnn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/Makefile -------------------------------------------------------------------------------- /example/rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/README.md -------------------------------------------------------------------------------- /example/rcnn/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/demo.py -------------------------------------------------------------------------------- /example/rcnn/rcnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/rcnn/config.py -------------------------------------------------------------------------------- /example/rcnn/rcnn/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/cython/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.cpp 3 | *.so 4 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/cython/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/io/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/rcnn/io/rcnn.py -------------------------------------------------------------------------------- /example/rcnn/rcnn/io/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/rcnn/io/rpn.py -------------------------------------------------------------------------------- /example/rcnn/rcnn/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/rcnn/logger.py -------------------------------------------------------------------------------- /example/rcnn/rcnn/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/rcnn/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/rcnn/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rcnn/test.py -------------------------------------------------------------------------------- /example/rnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/README.md -------------------------------------------------------------------------------- /example/rnn/old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/README.md -------------------------------------------------------------------------------- /example/rnn/old/bucket_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/bucket_io.py -------------------------------------------------------------------------------- /example/rnn/old/gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/gru.py -------------------------------------------------------------------------------- /example/rnn/old/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/lstm.py -------------------------------------------------------------------------------- /example/rnn/old/lstm_ptb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/lstm_ptb.R -------------------------------------------------------------------------------- /example/rnn/old/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/rnn.py -------------------------------------------------------------------------------- /example/rnn/old/rnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/old/rnn_model.py -------------------------------------------------------------------------------- /example/rnn/word_lm/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/word_lm/data.py -------------------------------------------------------------------------------- /example/rnn/word_lm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/word_lm/model.py -------------------------------------------------------------------------------- /example/rnn/word_lm/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/rnn/word_lm/train.py -------------------------------------------------------------------------------- /example/sockeye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/sockeye/README.md -------------------------------------------------------------------------------- /example/sockeye/source/docs/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /example/sockeye/source/test/system/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = -s 3 | -------------------------------------------------------------------------------- /example/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/README.md -------------------------------------------------------------------------------- /example/ssd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/config/config.py -------------------------------------------------------------------------------- /example/ssd/config/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/config/utils.py -------------------------------------------------------------------------------- /example/ssd/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/dataset/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/dataset/imdb.py -------------------------------------------------------------------------------- /example/ssd/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/demo.py -------------------------------------------------------------------------------- /example/ssd/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/deploy.py -------------------------------------------------------------------------------- /example/ssd/detect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/evaluate.py -------------------------------------------------------------------------------- /example/ssd/evaluate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/init.sh -------------------------------------------------------------------------------- /example/ssd/model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/model/README.md -------------------------------------------------------------------------------- /example/ssd/symbol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/symbol/README.md -------------------------------------------------------------------------------- /example/ssd/symbol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/symbol/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/symbol/common.py -------------------------------------------------------------------------------- /example/ssd/symbol/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/symbol/resnet.py -------------------------------------------------------------------------------- /example/ssd/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/train.py -------------------------------------------------------------------------------- /example/ssd/train/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/ssd/train/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/ssd/train/metric.py -------------------------------------------------------------------------------- /example/svm_mnist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/svm_mnist/README.md -------------------------------------------------------------------------------- /example/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/utils/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/utils/get_data.py -------------------------------------------------------------------------------- /example/vae/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/vae/README.md -------------------------------------------------------------------------------- /example/vae/VAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/example/vae/VAE.py -------------------------------------------------------------------------------- /hosts: -------------------------------------------------------------------------------- 1 | localhost 2 | -------------------------------------------------------------------------------- /include/mxnet/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/base.h -------------------------------------------------------------------------------- /include/mxnet/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/c_api.h -------------------------------------------------------------------------------- /include/mxnet/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/engine.h -------------------------------------------------------------------------------- /include/mxnet/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/executor.h -------------------------------------------------------------------------------- /include/mxnet/imperative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/imperative.h -------------------------------------------------------------------------------- /include/mxnet/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/io.h -------------------------------------------------------------------------------- /include/mxnet/kvstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/kvstore.h -------------------------------------------------------------------------------- /include/mxnet/ndarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/ndarray.h -------------------------------------------------------------------------------- /include/mxnet/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/operator.h -------------------------------------------------------------------------------- /include/mxnet/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/resource.h -------------------------------------------------------------------------------- /include/mxnet/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/rtc.h -------------------------------------------------------------------------------- /include/mxnet/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/storage.h -------------------------------------------------------------------------------- /include/mxnet/tensor_blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/include/mxnet/tensor_blob.h -------------------------------------------------------------------------------- /make/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/make/config.mk -------------------------------------------------------------------------------- /make/osx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/make/osx.mk -------------------------------------------------------------------------------- /make/readthedocs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/make/readthedocs.mk -------------------------------------------------------------------------------- /matlab/+mxnet/model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/matlab/+mxnet/model.m -------------------------------------------------------------------------------- /matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/matlab/README.md -------------------------------------------------------------------------------- /matlab/demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/matlab/demo.m -------------------------------------------------------------------------------- /matlab/tests/prepare_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/matlab/tests/prepare_data.m -------------------------------------------------------------------------------- /mshadow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/.gitignore -------------------------------------------------------------------------------- /mshadow/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/.travis.yml -------------------------------------------------------------------------------- /mshadow/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/CHANGES.md -------------------------------------------------------------------------------- /mshadow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/CMakeLists.txt -------------------------------------------------------------------------------- /mshadow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/LICENSE -------------------------------------------------------------------------------- /mshadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/README.md -------------------------------------------------------------------------------- /mshadow/cmake/Cuda.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/cmake/Cuda.cmake -------------------------------------------------------------------------------- /mshadow/cmake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/cmake/Utils.cmake -------------------------------------------------------------------------------- /mshadow/cmake/mshadow.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/cmake/mshadow.cmake -------------------------------------------------------------------------------- /mshadow/cmake/mshadowUtils.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/Utils.cmake") 2 | 3 | -------------------------------------------------------------------------------- /mshadow/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/doc/Doxyfile -------------------------------------------------------------------------------- /mshadow/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/doc/README.md -------------------------------------------------------------------------------- /mshadow/doc/mkdoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/doc/mkdoc.sh -------------------------------------------------------------------------------- /mshadow/guide/.gitignore: -------------------------------------------------------------------------------- 1 | defop 2 | basic 3 | config.mk 4 | -------------------------------------------------------------------------------- /mshadow/guide/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/guide/Makefile -------------------------------------------------------------------------------- /mshadow/guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/guide/README.md -------------------------------------------------------------------------------- /mshadow/guide/basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/guide/basic.cpp -------------------------------------------------------------------------------- /mshadow/guide/defop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/guide/defop.cpp -------------------------------------------------------------------------------- /mshadow/guide/exp-template/.gitignore: -------------------------------------------------------------------------------- 1 | exp_* -------------------------------------------------------------------------------- /mshadow/guide/mshadow-ps/.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | *cpu 3 | *gpu 4 | core* 5 | -------------------------------------------------------------------------------- /mshadow/make/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/make/README.md -------------------------------------------------------------------------------- /mshadow/make/mshadow.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/make/mshadow.mk -------------------------------------------------------------------------------- /mshadow/mshadow-ps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow-ps/README.md -------------------------------------------------------------------------------- /mshadow/mshadow-ps/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow-ps/thread.h -------------------------------------------------------------------------------- /mshadow/mshadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/README.md -------------------------------------------------------------------------------- /mshadow/mshadow/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/base.h -------------------------------------------------------------------------------- /mshadow/mshadow/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/expression.h -------------------------------------------------------------------------------- /mshadow/mshadow/extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/extension.h -------------------------------------------------------------------------------- /mshadow/mshadow/half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/half.h -------------------------------------------------------------------------------- /mshadow/mshadow/half2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/half2.h -------------------------------------------------------------------------------- /mshadow/mshadow/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/io.h -------------------------------------------------------------------------------- /mshadow/mshadow/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/logging.h -------------------------------------------------------------------------------- /mshadow/mshadow/packet-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/packet-inl.h -------------------------------------------------------------------------------- /mshadow/mshadow/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/random.h -------------------------------------------------------------------------------- /mshadow/mshadow/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/mshadow/tensor.h -------------------------------------------------------------------------------- /mshadow/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/Makefile -------------------------------------------------------------------------------- /mshadow/test/pairtest.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/pairtest.cu -------------------------------------------------------------------------------- /mshadow/test/pool.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/pool.cu -------------------------------------------------------------------------------- /mshadow/test/reshape.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/reshape.cu -------------------------------------------------------------------------------- /mshadow/test/test.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/test.cu -------------------------------------------------------------------------------- /mshadow/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/test.h -------------------------------------------------------------------------------- /mshadow/test/unpack.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/mshadow/test/unpack.cu -------------------------------------------------------------------------------- /nnvm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/.gitignore -------------------------------------------------------------------------------- /nnvm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/.travis.yml -------------------------------------------------------------------------------- /nnvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/CMakeLists.txt -------------------------------------------------------------------------------- /nnvm/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/Jenkinsfile -------------------------------------------------------------------------------- /nnvm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/LICENSE -------------------------------------------------------------------------------- /nnvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/Makefile -------------------------------------------------------------------------------- /nnvm/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/NEWS.md -------------------------------------------------------------------------------- /nnvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/README.md -------------------------------------------------------------------------------- /nnvm/amalgamation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/amalgamation/.gitignore -------------------------------------------------------------------------------- /nnvm/amalgamation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/amalgamation/Makefile -------------------------------------------------------------------------------- /nnvm/amalgamation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/amalgamation/README -------------------------------------------------------------------------------- /nnvm/cmake/Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/cmake/Utils.cmake -------------------------------------------------------------------------------- /nnvm/dmlc-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/.gitignore -------------------------------------------------------------------------------- /nnvm/dmlc-core/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/.travis.yml -------------------------------------------------------------------------------- /nnvm/dmlc-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/LICENSE -------------------------------------------------------------------------------- /nnvm/dmlc-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/Makefile -------------------------------------------------------------------------------- /nnvm/dmlc-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/README.md -------------------------------------------------------------------------------- /nnvm/dmlc-core/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | _build 3 | doxygen 4 | -------------------------------------------------------------------------------- /nnvm/dmlc-core/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/doc/Doxyfile -------------------------------------------------------------------------------- /nnvm/dmlc-core/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/doc/Makefile -------------------------------------------------------------------------------- /nnvm/dmlc-core/doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/doc/README -------------------------------------------------------------------------------- /nnvm/dmlc-core/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/doc/conf.py -------------------------------------------------------------------------------- /nnvm/dmlc-core/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/doc/index.md -------------------------------------------------------------------------------- /nnvm/dmlc-core/make/dmlc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/make/dmlc.mk -------------------------------------------------------------------------------- /nnvm/dmlc-core/src/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/src/config.cc -------------------------------------------------------------------------------- /nnvm/dmlc-core/src/data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/src/data.cc -------------------------------------------------------------------------------- /nnvm/dmlc-core/src/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/dmlc-core/src/io.cc -------------------------------------------------------------------------------- /nnvm/dmlc-core/test/.gitignore: -------------------------------------------------------------------------------- 1 | *_test 2 | *.csv -------------------------------------------------------------------------------- /nnvm/dmlc-core/test/unittest/.gitignore: -------------------------------------------------------------------------------- 1 | dmlc_unittest 2 | -------------------------------------------------------------------------------- /nnvm/dmlc-core/tracker/yarn/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .classpath 3 | .project 4 | *.jar 5 | -------------------------------------------------------------------------------- /nnvm/docs/.gitignore: -------------------------------------------------------------------------------- 1 | doxygen 2 | _build 3 | gen_modules 4 | tutorials 5 | -------------------------------------------------------------------------------- /nnvm/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/Doxyfile -------------------------------------------------------------------------------- /nnvm/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/Makefile -------------------------------------------------------------------------------- /nnvm/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/README.txt -------------------------------------------------------------------------------- /nnvm/docs/api/python/top.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/api/python/top.rst -------------------------------------------------------------------------------- /nnvm/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/conf.py -------------------------------------------------------------------------------- /nnvm/docs/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/dev/index.rst -------------------------------------------------------------------------------- /nnvm/docs/dev/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/dev/overview.md -------------------------------------------------------------------------------- /nnvm/docs/how_to/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/how_to/deploy.md -------------------------------------------------------------------------------- /nnvm/docs/how_to/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/how_to/install.md -------------------------------------------------------------------------------- /nnvm/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/index.rst -------------------------------------------------------------------------------- /nnvm/docs/json_spec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/json_spec.rst -------------------------------------------------------------------------------- /nnvm/docs/top.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/docs/top.rst -------------------------------------------------------------------------------- /nnvm/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/examples/README.md -------------------------------------------------------------------------------- /nnvm/include/nnvm/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/base.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/c_api.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/graph.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/node.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/op.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/pass.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/symbolic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/symbolic.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/top/README: -------------------------------------------------------------------------------- 1 | NNVM Core Operator and Compiler 2 | -------------------------------------------------------------------------------- /nnvm/include/nnvm/top/nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/top/nn.h -------------------------------------------------------------------------------- /nnvm/include/nnvm/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/include/nnvm/tuple.h -------------------------------------------------------------------------------- /nnvm/make/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/make/config.mk -------------------------------------------------------------------------------- /nnvm/python/.gitignore: -------------------------------------------------------------------------------- 1 | *.c 2 | *.cpp 3 | -------------------------------------------------------------------------------- /nnvm/python/conda/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/conda/build.sh -------------------------------------------------------------------------------- /nnvm/python/conda/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/conda/meta.yaml -------------------------------------------------------------------------------- /nnvm/python/nnvm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/__init__.py -------------------------------------------------------------------------------- /nnvm/python/nnvm/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/_base.py -------------------------------------------------------------------------------- /nnvm/python/nnvm/_ctypes/README: -------------------------------------------------------------------------------- 1 | Ctypes specific implementation of certain modules -------------------------------------------------------------------------------- /nnvm/python/nnvm/_ctypes/__init__.py: -------------------------------------------------------------------------------- 1 | """"ctypes implementation of the Symbol""" 2 | -------------------------------------------------------------------------------- /nnvm/python/nnvm/_cy2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/_cy2/README -------------------------------------------------------------------------------- /nnvm/python/nnvm/_cy3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/_cy3/README -------------------------------------------------------------------------------- /nnvm/python/nnvm/_cy3/__init__.py: -------------------------------------------------------------------------------- 1 | """Cython generated modules""" 2 | -------------------------------------------------------------------------------- /nnvm/python/nnvm/_symbol_internal.py: -------------------------------------------------------------------------------- 1 | """Module space to register internal functions. Leave empty""" 2 | -------------------------------------------------------------------------------- /nnvm/python/nnvm/cython/README: -------------------------------------------------------------------------------- 1 | Cython specific implementation of certain modules -------------------------------------------------------------------------------- /nnvm/python/nnvm/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/graph.py -------------------------------------------------------------------------------- /nnvm/python/nnvm/libinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/libinfo.py -------------------------------------------------------------------------------- /nnvm/python/nnvm/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/name.py -------------------------------------------------------------------------------- /nnvm/python/nnvm/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/symbol.py -------------------------------------------------------------------------------- /nnvm/python/nnvm/top/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/nnvm/top/nn.py -------------------------------------------------------------------------------- /nnvm/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/python/setup.py -------------------------------------------------------------------------------- /nnvm/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/README.md -------------------------------------------------------------------------------- /nnvm/src/core/graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/core/graph.cc -------------------------------------------------------------------------------- /nnvm/src/core/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/core/node.cc -------------------------------------------------------------------------------- /nnvm/src/core/op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/core/op.cc -------------------------------------------------------------------------------- /nnvm/src/core/pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/core/pass.cc -------------------------------------------------------------------------------- /nnvm/src/core/symbolic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/core/symbolic.cc -------------------------------------------------------------------------------- /nnvm/src/pass/gradient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/pass/gradient.cc -------------------------------------------------------------------------------- /nnvm/src/pass/plan_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/pass/plan_memory.cc -------------------------------------------------------------------------------- /nnvm/src/top/nn/nn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/top/nn/nn.cc -------------------------------------------------------------------------------- /nnvm/src/top/nn/nn_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/top/nn/nn_common.h -------------------------------------------------------------------------------- /nnvm/src/top/nn/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/top/nn/pooling.cc -------------------------------------------------------------------------------- /nnvm/src/top/op_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/src/top/op_common.h -------------------------------------------------------------------------------- /nnvm/tests/ci_build/install/ubuntu_install_coreml.sh: -------------------------------------------------------------------------------- 1 | pip2 install coremltools 2 | -------------------------------------------------------------------------------- /nnvm/tests/cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tests/cpp/.gitignore -------------------------------------------------------------------------------- /nnvm/tests/cpp/op_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tests/cpp/op_test.cc -------------------------------------------------------------------------------- /nnvm/tests/cpp/tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tests/cpp/tuple_test.cc -------------------------------------------------------------------------------- /nnvm/tests/cpp/unittest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tests/cpp/unittest.mk -------------------------------------------------------------------------------- /nnvm/tests/lint/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tests/lint/pylintrc -------------------------------------------------------------------------------- /nnvm/tests/python/frontend/coreml/model_zoo/.gitignore: -------------------------------------------------------------------------------- 1 | *.mlmodel 2 | *.jpg 3 | *.png 4 | -------------------------------------------------------------------------------- /nnvm/tests/travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tests/travis/setup.sh -------------------------------------------------------------------------------- /nnvm/tests/travis/travis_after_failure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /nnvm/tutorials/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tutorials/README.txt -------------------------------------------------------------------------------- /nnvm/tutorials/from_mxnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tutorials/from_mxnet.py -------------------------------------------------------------------------------- /nnvm/tutorials/from_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tutorials/from_onnx.py -------------------------------------------------------------------------------- /nnvm/tvm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/.gitignore -------------------------------------------------------------------------------- /nnvm/tvm/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/.travis.yml -------------------------------------------------------------------------------- /nnvm/tvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/CMakeLists.txt -------------------------------------------------------------------------------- /nnvm/tvm/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/CODEOWNERS -------------------------------------------------------------------------------- /nnvm/tvm/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/CONTRIBUTORS.md -------------------------------------------------------------------------------- /nnvm/tvm/HalideIR/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/HalideIR/.gitignore -------------------------------------------------------------------------------- /nnvm/tvm/HalideIR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/HalideIR/LICENSE -------------------------------------------------------------------------------- /nnvm/tvm/HalideIR/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/HalideIR/Makefile -------------------------------------------------------------------------------- /nnvm/tvm/HalideIR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/HalideIR/README.md -------------------------------------------------------------------------------- /nnvm/tvm/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/Jenkinsfile -------------------------------------------------------------------------------- /nnvm/tvm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/LICENSE -------------------------------------------------------------------------------- /nnvm/tvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/Makefile -------------------------------------------------------------------------------- /nnvm/tvm/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/NEWS.md -------------------------------------------------------------------------------- /nnvm/tvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/README.md -------------------------------------------------------------------------------- /nnvm/tvm/apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/apps/README.md -------------------------------------------------------------------------------- /nnvm/tvm/apps/android_rpc/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /nnvm/tvm/apps/android_rpc/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /nnvm/tvm/apps/extension/.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /nnvm/tvm/apps/ios_rpc/.gitignore: -------------------------------------------------------------------------------- 1 | rpc_config.txt 2 | 3 | -------------------------------------------------------------------------------- /nnvm/tvm/cmake/Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/cmake/Util.cmake -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dlpack/.gitignore -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dlpack/.travis.yml -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dlpack/LICENSE -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dlpack/Makefile -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dlpack/NEWS.md -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dlpack/README.md -------------------------------------------------------------------------------- /nnvm/tvm/dlpack/docs/.gitignore: -------------------------------------------------------------------------------- 1 | doxygen 2 | -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dmlc-core/LICENSE -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dmlc-core/Makefile -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dmlc-core/README.md -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/doc/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | _build 3 | doxygen 4 | -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/src/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/dmlc-core/src/io.cc -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/test/.gitignore: -------------------------------------------------------------------------------- 1 | *_test 2 | *.csv -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/test/unittest/.gitignore: -------------------------------------------------------------------------------- 1 | dmlc_unittest 2 | -------------------------------------------------------------------------------- /nnvm/tvm/dmlc-core/tracker/yarn/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | .classpath 3 | .project 4 | *.jar 5 | -------------------------------------------------------------------------------- /nnvm/tvm/docs/.gitignore: -------------------------------------------------------------------------------- 1 | doxygen 2 | modules 3 | tutorials 4 | -------------------------------------------------------------------------------- /nnvm/tvm/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/Doxyfile -------------------------------------------------------------------------------- /nnvm/tvm/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/Makefile -------------------------------------------------------------------------------- /nnvm/tvm/docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/README.txt -------------------------------------------------------------------------------- /nnvm/tvm/docs/api_links.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/api_links.rst -------------------------------------------------------------------------------- /nnvm/tvm/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/conf.py -------------------------------------------------------------------------------- /nnvm/tvm/docs/dev/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/dev/index.rst -------------------------------------------------------------------------------- /nnvm/tvm/docs/dev/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/dev/runtime.md -------------------------------------------------------------------------------- /nnvm/tvm/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/faq.md -------------------------------------------------------------------------------- /nnvm/tvm/docs/genindex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/genindex.rst -------------------------------------------------------------------------------- /nnvm/tvm/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/docs/index.rst -------------------------------------------------------------------------------- /nnvm/tvm/include/tvm/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/include/tvm/base.h -------------------------------------------------------------------------------- /nnvm/tvm/include/tvm/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/include/tvm/expr.h -------------------------------------------------------------------------------- /nnvm/tvm/include/tvm/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/include/tvm/ir.h -------------------------------------------------------------------------------- /nnvm/tvm/include/tvm/tvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/include/tvm/tvm.h -------------------------------------------------------------------------------- /nnvm/tvm/jvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/jvm/README.md -------------------------------------------------------------------------------- /nnvm/tvm/jvm/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/jvm/core/pom.xml -------------------------------------------------------------------------------- /nnvm/tvm/jvm/native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/jvm/native/pom.xml -------------------------------------------------------------------------------- /nnvm/tvm/jvm/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/jvm/pom.xml -------------------------------------------------------------------------------- /nnvm/tvm/make/contrib/mps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/make/contrib/mps.mk -------------------------------------------------------------------------------- /nnvm/tvm/python/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.cpp -------------------------------------------------------------------------------- /nnvm/tvm/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/setup.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/_api_internal.py: -------------------------------------------------------------------------------- 1 | """namespace of internal API""" 2 | -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/_ffi/_ctypes/__init__.py: -------------------------------------------------------------------------------- 1 | """ctypes specific implementation of FFI""" 2 | -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/_ffi/_cy2/__init__.py: -------------------------------------------------------------------------------- 1 | """cython2 namespace""" 2 | -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/_ffi/_cy3/__init__.py: -------------------------------------------------------------------------------- 1 | """cython3 namespace""" 2 | -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/api.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/arith.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/arith.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/expr.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/make.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/node.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/stmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/stmt.py -------------------------------------------------------------------------------- /nnvm/tvm/python/tvm/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/python/tvm/tag.py -------------------------------------------------------------------------------- /nnvm/tvm/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/README.md -------------------------------------------------------------------------------- /nnvm/tvm/src/api/api_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/api/api_base.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/api/api_ir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/api/api_ir.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/api/api_lang.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/api/api_lang.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/api/api_pass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/api/api_pass.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/api/dsl_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/api/dsl_api.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/common/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/common/pipe.h -------------------------------------------------------------------------------- /nnvm/tvm/src/common/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/common/socket.h -------------------------------------------------------------------------------- /nnvm/tvm/src/lang/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/lang/buffer.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/lang/channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/lang/channel.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/lang/expr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/lang/expr.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/lang/ir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/lang/ir.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/lang/tensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/lang/tensor.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/op/compute_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/op/compute_op.h -------------------------------------------------------------------------------- /nnvm/tvm/src/op/extern_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/op/extern_op.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/op/op_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/op/op_util.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/op/op_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/op/op_util.h -------------------------------------------------------------------------------- /nnvm/tvm/src/op/scan_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/op/scan_op.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/op/tensorize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/op/tensorize.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/pass/inline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/pass/inline.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/pass/ir_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/pass/ir_util.cc -------------------------------------------------------------------------------- /nnvm/tvm/src/pass/ir_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/pass/ir_util.h -------------------------------------------------------------------------------- /nnvm/tvm/src/pass/ssa.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/src/pass/ssa.cc -------------------------------------------------------------------------------- /nnvm/tvm/tests/lint/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/tests/lint/pylintrc -------------------------------------------------------------------------------- /nnvm/tvm/tests/travis/travis_after_failure.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | -------------------------------------------------------------------------------- /nnvm/tvm/topi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/topi/README.md -------------------------------------------------------------------------------- /nnvm/tvm/verilog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/verilog/README.md -------------------------------------------------------------------------------- /nnvm/tvm/verilog/tvm_vpi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/verilog/tvm_vpi.cc -------------------------------------------------------------------------------- /nnvm/tvm/verilog/tvm_vpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/verilog/tvm_vpi.h -------------------------------------------------------------------------------- /nnvm/tvm/verilog/verilog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/verilog/verilog.mk -------------------------------------------------------------------------------- /nnvm/tvm/web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/web/.eslintrc.js -------------------------------------------------------------------------------- /nnvm/tvm/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/web/README.md -------------------------------------------------------------------------------- /nnvm/tvm/web/tvm_runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/web/tvm_runtime.js -------------------------------------------------------------------------------- /nnvm/tvm/web/web_runtime.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/nnvm/tvm/web/web_runtime.cc -------------------------------------------------------------------------------- /perl-package/.gitignore: -------------------------------------------------------------------------------- 1 | !* 2 | -------------------------------------------------------------------------------- /perl-package/AI-MXNet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/perl-package/AI-MXNet/README -------------------------------------------------------------------------------- /perl-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/perl-package/README.md -------------------------------------------------------------------------------- /perl-package/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/perl-package/test.sh -------------------------------------------------------------------------------- /plugin/caffe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/README.md -------------------------------------------------------------------------------- /plugin/caffe/caffe.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe.mk -------------------------------------------------------------------------------- /plugin/caffe/caffe_blob.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_blob.cc -------------------------------------------------------------------------------- /plugin/caffe/caffe_blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_blob.h -------------------------------------------------------------------------------- /plugin/caffe/caffe_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_common.cc -------------------------------------------------------------------------------- /plugin/caffe/caffe_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_common.h -------------------------------------------------------------------------------- /plugin/caffe/caffe_loss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_loss.cc -------------------------------------------------------------------------------- /plugin/caffe/caffe_loss.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_loss.cu -------------------------------------------------------------------------------- /plugin/caffe/caffe_op-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_op-inl.h -------------------------------------------------------------------------------- /plugin/caffe/caffe_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_op.cc -------------------------------------------------------------------------------- /plugin/caffe/caffe_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_op.cu -------------------------------------------------------------------------------- /plugin/caffe/caffe_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_stream.cc -------------------------------------------------------------------------------- /plugin/caffe/caffe_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/caffe/caffe_stream.h -------------------------------------------------------------------------------- /plugin/opencv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/opencv/__init__.py -------------------------------------------------------------------------------- /plugin/opencv/cv_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/opencv/cv_api.cc -------------------------------------------------------------------------------- /plugin/opencv/cv_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/opencv/cv_api.h -------------------------------------------------------------------------------- /plugin/opencv/opencv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/opencv/opencv.mk -------------------------------------------------------------------------------- /plugin/opencv/opencv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/opencv/opencv.py -------------------------------------------------------------------------------- /plugin/sframe/iter_sframe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/sframe/iter_sframe.cc -------------------------------------------------------------------------------- /plugin/sframe/plugin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/sframe/plugin.mk -------------------------------------------------------------------------------- /plugin/torch/torch.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/torch/torch.mk -------------------------------------------------------------------------------- /plugin/torch/torch_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/torch/torch_base.cc -------------------------------------------------------------------------------- /plugin/torch/torch_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/torch/torch_base.h -------------------------------------------------------------------------------- /plugin/torch/torch_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/torch/torch_module.cc -------------------------------------------------------------------------------- /plugin/torch/torch_module.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/torch/torch_module.cu -------------------------------------------------------------------------------- /plugin/warpctc/warpctc-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/warpctc/warpctc-inl.h -------------------------------------------------------------------------------- /plugin/warpctc/warpctc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/warpctc/warpctc.cc -------------------------------------------------------------------------------- /plugin/warpctc/warpctc.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/warpctc/warpctc.cu -------------------------------------------------------------------------------- /plugin/warpctc/warpctc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/plugin/warpctc/warpctc.mk -------------------------------------------------------------------------------- /prepare_mkl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/prepare_mkl.sh -------------------------------------------------------------------------------- /ps-lite/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/CMakeLists.txt -------------------------------------------------------------------------------- /ps-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/LICENSE -------------------------------------------------------------------------------- /ps-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/Makefile -------------------------------------------------------------------------------- /ps-lite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/README.md -------------------------------------------------------------------------------- /ps-lite/cmake/ProtoBuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/cmake/ProtoBuf.cmake -------------------------------------------------------------------------------- /ps-lite/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/Doxyfile -------------------------------------------------------------------------------- /ps-lite/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/Makefile -------------------------------------------------------------------------------- /ps-lite/docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/api.md -------------------------------------------------------------------------------- /ps-lite/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/conf.py -------------------------------------------------------------------------------- /ps-lite/docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/env.md -------------------------------------------------------------------------------- /ps-lite/docs/get_started.md: -------------------------------------------------------------------------------- 1 | # Get Started 2 | -------------------------------------------------------------------------------- /ps-lite/docs/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/how_to.md -------------------------------------------------------------------------------- /ps-lite/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/index.md -------------------------------------------------------------------------------- /ps-lite/docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/overview.md -------------------------------------------------------------------------------- /ps-lite/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | breathe 2 | -------------------------------------------------------------------------------- /ps-lite/docs/sphinx_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/docs/sphinx_util.py -------------------------------------------------------------------------------- /ps-lite/docs/tutorials.md: -------------------------------------------------------------------------------- 1 | # Tutorials 2 | -------------------------------------------------------------------------------- /ps-lite/include/dmlc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/include/dmlc/base.h -------------------------------------------------------------------------------- /ps-lite/include/ps/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/include/ps/base.h -------------------------------------------------------------------------------- /ps-lite/include/ps/kv_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/include/ps/kv_app.h -------------------------------------------------------------------------------- /ps-lite/include/ps/ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/include/ps/ps.h -------------------------------------------------------------------------------- /ps-lite/include/ps/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/include/ps/range.h -------------------------------------------------------------------------------- /ps-lite/include/ps/sarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/include/ps/sarray.h -------------------------------------------------------------------------------- /ps-lite/make/deps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/make/deps.mk -------------------------------------------------------------------------------- /ps-lite/make/ps.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/make/ps.mk -------------------------------------------------------------------------------- /ps-lite/src/customer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/customer.cc -------------------------------------------------------------------------------- /ps-lite/src/meta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/meta.proto -------------------------------------------------------------------------------- /ps-lite/src/network_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/network_utils.h -------------------------------------------------------------------------------- /ps-lite/src/postoffice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/postoffice.cc -------------------------------------------------------------------------------- /ps-lite/src/resender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/resender.h -------------------------------------------------------------------------------- /ps-lite/src/van.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/van.cc -------------------------------------------------------------------------------- /ps-lite/src/windows/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/windows/unistd.h -------------------------------------------------------------------------------- /ps-lite/src/zmq_van.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/src/zmq_van.h -------------------------------------------------------------------------------- /ps-lite/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tests/README.md -------------------------------------------------------------------------------- /ps-lite/tests/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tests/lint.py -------------------------------------------------------------------------------- /ps-lite/tests/local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tests/local.sh -------------------------------------------------------------------------------- /ps-lite/tests/repeat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tests/repeat.sh -------------------------------------------------------------------------------- /ps-lite/tests/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tests/test.mk -------------------------------------------------------------------------------- /ps-lite/tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tracker/README.md -------------------------------------------------------------------------------- /ps-lite/tracker/dmlc_mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tracker/dmlc_mpi.py -------------------------------------------------------------------------------- /ps-lite/tracker/dmlc_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tracker/dmlc_ssh.py -------------------------------------------------------------------------------- /ps-lite/tracker/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/ps-lite/tracker/tracker.py -------------------------------------------------------------------------------- /python/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.egg-info 3 | build 4 | *.cpp -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/README.md -------------------------------------------------------------------------------- /python/minpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/minpy/README.md -------------------------------------------------------------------------------- /python/mxnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/__init__.py -------------------------------------------------------------------------------- /python/mxnet/_cy2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/_cy2/README -------------------------------------------------------------------------------- /python/mxnet/_cy3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/_cy3/README -------------------------------------------------------------------------------- /python/mxnet/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/attribute.py -------------------------------------------------------------------------------- /python/mxnet/autograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/autograd.py -------------------------------------------------------------------------------- /python/mxnet/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/base.py -------------------------------------------------------------------------------- /python/mxnet/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/callback.py -------------------------------------------------------------------------------- /python/mxnet/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/context.py -------------------------------------------------------------------------------- /python/mxnet/cython/base.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/cython/base.pyi -------------------------------------------------------------------------------- /python/mxnet/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/engine.py -------------------------------------------------------------------------------- /python/mxnet/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/executor.py -------------------------------------------------------------------------------- /python/mxnet/gluon/.gitignore: -------------------------------------------------------------------------------- 1 | !data 2 | -------------------------------------------------------------------------------- /python/mxnet/gluon/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/gluon/block.py -------------------------------------------------------------------------------- /python/mxnet/gluon/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/gluon/loss.py -------------------------------------------------------------------------------- /python/mxnet/gluon/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/gluon/utils.py -------------------------------------------------------------------------------- /python/mxnet/image/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/image/image.py -------------------------------------------------------------------------------- /python/mxnet/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/initializer.py -------------------------------------------------------------------------------- /python/mxnet/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/io.py -------------------------------------------------------------------------------- /python/mxnet/kvstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/kvstore.py -------------------------------------------------------------------------------- /python/mxnet/libinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/libinfo.py -------------------------------------------------------------------------------- /python/mxnet/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/log.py -------------------------------------------------------------------------------- /python/mxnet/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/lr_scheduler.py -------------------------------------------------------------------------------- /python/mxnet/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/metric.py -------------------------------------------------------------------------------- /python/mxnet/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/misc.py -------------------------------------------------------------------------------- /python/mxnet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/model.py -------------------------------------------------------------------------------- /python/mxnet/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/monitor.py -------------------------------------------------------------------------------- /python/mxnet/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/name.py -------------------------------------------------------------------------------- /python/mxnet/ndarray/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/ndarray/op.py -------------------------------------------------------------------------------- /python/mxnet/ndarray_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/ndarray_doc.py -------------------------------------------------------------------------------- /python/mxnet/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/operator.py -------------------------------------------------------------------------------- /python/mxnet/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/optimizer.py -------------------------------------------------------------------------------- /python/mxnet/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/profiler.py -------------------------------------------------------------------------------- /python/mxnet/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/random.py -------------------------------------------------------------------------------- /python/mxnet/recordio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/recordio.py -------------------------------------------------------------------------------- /python/mxnet/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/registry.py -------------------------------------------------------------------------------- /python/mxnet/rnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/rnn/__init__.py -------------------------------------------------------------------------------- /python/mxnet/rnn/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/rnn/io.py -------------------------------------------------------------------------------- /python/mxnet/rnn/rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/rnn/rnn.py -------------------------------------------------------------------------------- /python/mxnet/rnn/rnn_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/rnn/rnn_cell.py -------------------------------------------------------------------------------- /python/mxnet/rtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/rtc.py -------------------------------------------------------------------------------- /python/mxnet/symbol/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/symbol/image.py -------------------------------------------------------------------------------- /python/mxnet/symbol/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/symbol/op.py -------------------------------------------------------------------------------- /python/mxnet/symbol_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/symbol_doc.py -------------------------------------------------------------------------------- /python/mxnet/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/test_utils.py -------------------------------------------------------------------------------- /python/mxnet/torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/mxnet/torch.py -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/python/setup.py -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /run_exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/run_exp.sh -------------------------------------------------------------------------------- /scala-package/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/LICENSE -------------------------------------------------------------------------------- /scala-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/README.md -------------------------------------------------------------------------------- /scala-package/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/core/pom.xml -------------------------------------------------------------------------------- /scala-package/init/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/init/pom.xml -------------------------------------------------------------------------------- /scala-package/macros/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/macros/pom.xml -------------------------------------------------------------------------------- /scala-package/native/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/native/pom.xml -------------------------------------------------------------------------------- /scala-package/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/pom.xml -------------------------------------------------------------------------------- /scala-package/spark/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/scala-package/spark/pom.xml -------------------------------------------------------------------------------- /snap.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/snap.python -------------------------------------------------------------------------------- /snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/snapcraft.yaml -------------------------------------------------------------------------------- /src/c_api/c_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api.cc -------------------------------------------------------------------------------- /src/c_api/c_api_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api_common.h -------------------------------------------------------------------------------- /src/c_api/c_api_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api_error.cc -------------------------------------------------------------------------------- /src/c_api/c_api_executor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api_executor.cc -------------------------------------------------------------------------------- /src/c_api/c_api_function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api_function.cc -------------------------------------------------------------------------------- /src/c_api/c_api_ndarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api_ndarray.cc -------------------------------------------------------------------------------- /src/c_api/c_api_symbolic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_api_symbolic.cc -------------------------------------------------------------------------------- /src/c_api/c_predict_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/c_api/c_predict_api.cc -------------------------------------------------------------------------------- /src/common/cuda_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/cuda_utils.h -------------------------------------------------------------------------------- /src/common/exec_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/exec_utils.h -------------------------------------------------------------------------------- /src/common/object_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/object_pool.h -------------------------------------------------------------------------------- /src/common/rtc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/rtc.cc -------------------------------------------------------------------------------- /src/common/static_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/static_array.h -------------------------------------------------------------------------------- /src/common/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/utils.cc -------------------------------------------------------------------------------- /src/common/utils.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/utils.cu -------------------------------------------------------------------------------- /src/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/common/utils.h -------------------------------------------------------------------------------- /src/engine/engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/engine.cc -------------------------------------------------------------------------------- /src/engine/engine_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/engine_impl.h -------------------------------------------------------------------------------- /src/engine/naive_engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/naive_engine.cc -------------------------------------------------------------------------------- /src/engine/openmp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/openmp.cc -------------------------------------------------------------------------------- /src/engine/openmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/openmp.h -------------------------------------------------------------------------------- /src/engine/profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/profiler.cc -------------------------------------------------------------------------------- /src/engine/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/profiler.h -------------------------------------------------------------------------------- /src/engine/stream_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/stream_manager.h -------------------------------------------------------------------------------- /src/engine/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/thread_pool.h -------------------------------------------------------------------------------- /src/engine/threaded_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/engine/threaded_engine.h -------------------------------------------------------------------------------- /src/executor/exec_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/executor/exec_pass.h -------------------------------------------------------------------------------- /src/imperative/cached_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/imperative/cached_op.cc -------------------------------------------------------------------------------- /src/imperative/imperative.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/imperative/imperative.cc -------------------------------------------------------------------------------- /src/initialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/initialize.cc -------------------------------------------------------------------------------- /src/io/image_aug_default.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/image_aug_default.cc -------------------------------------------------------------------------------- /src/io/image_augmenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/image_augmenter.h -------------------------------------------------------------------------------- /src/io/image_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/image_io.cc -------------------------------------------------------------------------------- /src/io/image_iter_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/image_iter_common.h -------------------------------------------------------------------------------- /src/io/image_recordio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/image_recordio.h -------------------------------------------------------------------------------- /src/io/inst_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/inst_vector.h -------------------------------------------------------------------------------- /src/io/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/io.cc -------------------------------------------------------------------------------- /src/io/iter_batchloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_batchloader.h -------------------------------------------------------------------------------- /src/io/iter_csv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_csv.cc -------------------------------------------------------------------------------- /src/io/iter_libsvm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_libsvm.cc -------------------------------------------------------------------------------- /src/io/iter_mnist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_mnist.cc -------------------------------------------------------------------------------- /src/io/iter_normalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_normalize.h -------------------------------------------------------------------------------- /src/io/iter_prefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_prefetcher.h -------------------------------------------------------------------------------- /src/io/iter_sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/io/iter_sparse.h -------------------------------------------------------------------------------- /src/kvstore/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/comm.h -------------------------------------------------------------------------------- /src/kvstore/kvstore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore.cc -------------------------------------------------------------------------------- /src/kvstore/kvstore_dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore_dist.h -------------------------------------------------------------------------------- /src/kvstore/kvstore_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore_local.h -------------------------------------------------------------------------------- /src/kvstore/kvstore_nccl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore_nccl.h -------------------------------------------------------------------------------- /src/kvstore/kvstore_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore_utils.cc -------------------------------------------------------------------------------- /src/kvstore/kvstore_utils.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore_utils.cu -------------------------------------------------------------------------------- /src/kvstore/kvstore_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/kvstore/kvstore_utils.h -------------------------------------------------------------------------------- /src/ndarray/ndarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/ndarray/ndarray.cc -------------------------------------------------------------------------------- /src/nnvm/legacy_json_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/nnvm/legacy_json_util.cc -------------------------------------------------------------------------------- /src/nnvm/legacy_op_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/nnvm/legacy_op_util.cc -------------------------------------------------------------------------------- /src/operator/c_lapack_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/c_lapack_api.h -------------------------------------------------------------------------------- /src/operator/concat-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/concat-inl.h -------------------------------------------------------------------------------- /src/operator/concat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/concat.cc -------------------------------------------------------------------------------- /src/operator/concat.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/concat.cu -------------------------------------------------------------------------------- /src/operator/contrib/fft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/contrib/fft.cc -------------------------------------------------------------------------------- /src/operator/contrib/fft.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/contrib/fft.cu -------------------------------------------------------------------------------- /src/operator/contrib/ifft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/contrib/ifft.cc -------------------------------------------------------------------------------- /src/operator/contrib/ifft.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/contrib/ifft.cu -------------------------------------------------------------------------------- /src/operator/correlation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/correlation.cc -------------------------------------------------------------------------------- /src/operator/correlation.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/correlation.cu -------------------------------------------------------------------------------- /src/operator/crop-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/crop-inl.h -------------------------------------------------------------------------------- /src/operator/crop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/crop.cc -------------------------------------------------------------------------------- /src/operator/crop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/crop.cu -------------------------------------------------------------------------------- /src/operator/cudnn_lrn-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/cudnn_lrn-inl.h -------------------------------------------------------------------------------- /src/operator/cudnn_rnn-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/cudnn_rnn-inl.h -------------------------------------------------------------------------------- /src/operator/leaky_relu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/leaky_relu.cc -------------------------------------------------------------------------------- /src/operator/leaky_relu.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/leaky_relu.cu -------------------------------------------------------------------------------- /src/operator/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/linalg.h -------------------------------------------------------------------------------- /src/operator/linalg_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/linalg_impl.h -------------------------------------------------------------------------------- /src/operator/lrn-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/lrn-inl.h -------------------------------------------------------------------------------- /src/operator/lrn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/lrn.cc -------------------------------------------------------------------------------- /src/operator/lrn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/lrn.cu -------------------------------------------------------------------------------- /src/operator/make_loss-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/make_loss-inl.h -------------------------------------------------------------------------------- /src/operator/make_loss.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/make_loss.cc -------------------------------------------------------------------------------- /src/operator/make_loss.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/make_loss.cu -------------------------------------------------------------------------------- /src/operator/mshadow_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/mshadow_op.h -------------------------------------------------------------------------------- /src/operator/mxnet_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/mxnet_op.h -------------------------------------------------------------------------------- /src/operator/nn/dropout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/dropout.cc -------------------------------------------------------------------------------- /src/operator/nn/dropout.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/dropout.cu -------------------------------------------------------------------------------- /src/operator/nn/im2col.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/im2col.cuh -------------------------------------------------------------------------------- /src/operator/nn/im2col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/im2col.h -------------------------------------------------------------------------------- /src/operator/nn/pool.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/pool.cuh -------------------------------------------------------------------------------- /src/operator/nn/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/pool.h -------------------------------------------------------------------------------- /src/operator/nn/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/pooling.cc -------------------------------------------------------------------------------- /src/operator/nn/pooling.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/pooling.cu -------------------------------------------------------------------------------- /src/operator/nn/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/softmax.cc -------------------------------------------------------------------------------- /src/operator/nn/softmax.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/nn/softmax.cu -------------------------------------------------------------------------------- /src/operator/operator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/operator.cc -------------------------------------------------------------------------------- /src/operator/operator_tune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/operator_tune.h -------------------------------------------------------------------------------- /src/operator/optimizer_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/optimizer_op.cc -------------------------------------------------------------------------------- /src/operator/optimizer_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/optimizer_op.cu -------------------------------------------------------------------------------- /src/operator/pad-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/pad-inl.h -------------------------------------------------------------------------------- /src/operator/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/pad.cc -------------------------------------------------------------------------------- /src/operator/pad.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/pad.cu -------------------------------------------------------------------------------- /src/operator/pooling_v1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/pooling_v1.cc -------------------------------------------------------------------------------- /src/operator/pooling_v1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/pooling_v1.cu -------------------------------------------------------------------------------- /src/operator/rnn-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/rnn-inl.h -------------------------------------------------------------------------------- /src/operator/rnn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/rnn.cc -------------------------------------------------------------------------------- /src/operator/rnn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/rnn.cu -------------------------------------------------------------------------------- /src/operator/roi_pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/roi_pooling.cc -------------------------------------------------------------------------------- /src/operator/roi_pooling.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/roi_pooling.cu -------------------------------------------------------------------------------- /src/operator/svm_output.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/svm_output.cc -------------------------------------------------------------------------------- /src/operator/svm_output.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/svm_output.cu -------------------------------------------------------------------------------- /src/operator/swapaxis-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/swapaxis-inl.h -------------------------------------------------------------------------------- /src/operator/swapaxis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/swapaxis.cc -------------------------------------------------------------------------------- /src/operator/swapaxis.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/swapaxis.cu -------------------------------------------------------------------------------- /src/operator/tensor/dot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/tensor/dot.cc -------------------------------------------------------------------------------- /src/operator/tensor/dot.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/tensor/dot.cu -------------------------------------------------------------------------------- /src/operator/tensor/la_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/tensor/la_op.cc -------------------------------------------------------------------------------- /src/operator/tensor/la_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/tensor/la_op.cu -------------------------------------------------------------------------------- /src/operator/tensor/la_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/operator/tensor/la_op.h -------------------------------------------------------------------------------- /src/optimizer/sgd-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/optimizer/sgd-inl.h -------------------------------------------------------------------------------- /src/resource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/resource.cc -------------------------------------------------------------------------------- /src/storage/storage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/src/storage/storage.cc -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *_unittest 2 | -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ci_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/ci_build/README.md -------------------------------------------------------------------------------- /tests/ci_build/ci_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/ci_build/ci_build.sh -------------------------------------------------------------------------------- /tests/ci_build/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/ci_build/pylintrc -------------------------------------------------------------------------------- /tests/cpp/.gitignore: -------------------------------------------------------------------------------- 1 | unittest 2 | -------------------------------------------------------------------------------- /tests/cpp/include/test_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/cpp/include/test_op.h -------------------------------------------------------------------------------- /tests/cpp/test_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/cpp/test_main.cc -------------------------------------------------------------------------------- /tests/cpp/unittest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/cpp/unittest.mk -------------------------------------------------------------------------------- /tests/jenkins/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/jenkins/format -------------------------------------------------------------------------------- /tests/jenkins/run_as_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/jenkins/run_as_user.sh -------------------------------------------------------------------------------- /tests/jenkins/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/jenkins/run_test.sh -------------------------------------------------------------------------------- /tests/nightly/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | results/ 3 | -------------------------------------------------------------------------------- /tests/nightly/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/Jenkinsfile -------------------------------------------------------------------------------- /tests/nightly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/README.md -------------------------------------------------------------------------------- /tests/nightly/dist_lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/dist_lenet.py -------------------------------------------------------------------------------- /tests/nightly/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/download.sh -------------------------------------------------------------------------------- /tests/nightly/multi_lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/multi_lenet.py -------------------------------------------------------------------------------- /tests/nightly/sh2ju.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/sh2ju.sh -------------------------------------------------------------------------------- /tests/nightly/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/nightly/test_all.sh -------------------------------------------------------------------------------- /tests/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/python/README.md -------------------------------------------------------------------------------- /tests/python/gpu/test_rtc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/python/gpu/test_rtc.py -------------------------------------------------------------------------------- /tests/python/train/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/python/train/common.py -------------------------------------------------------------------------------- /tests/travis/r_vignettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/travis/r_vignettes.R -------------------------------------------------------------------------------- /tests/travis/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/travis/run_test.sh -------------------------------------------------------------------------------- /tests/travis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tests/travis/setup.sh -------------------------------------------------------------------------------- /tools/accnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/accnn/README.md -------------------------------------------------------------------------------- /tools/accnn/acc_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/accnn/acc_conv.py -------------------------------------------------------------------------------- /tools/accnn/acc_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/accnn/acc_fc.py -------------------------------------------------------------------------------- /tools/accnn/accnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/accnn/accnn.py -------------------------------------------------------------------------------- /tools/accnn/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/accnn/config.json -------------------------------------------------------------------------------- /tools/accnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/accnn/utils.py -------------------------------------------------------------------------------- /tools/bandwidth/.gitignore: -------------------------------------------------------------------------------- 1 | ResNet 2 | -------------------------------------------------------------------------------- /tools/bandwidth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/bandwidth/README.md -------------------------------------------------------------------------------- /tools/bandwidth/measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/bandwidth/measure.py -------------------------------------------------------------------------------- /tools/caffe_converter/.gitignore: -------------------------------------------------------------------------------- 1 | model/ 2 | Cat-hd-wallpapers.jpg 3 | -------------------------------------------------------------------------------- /tools/caffe_converter/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/caffe_converter/run.sh -------------------------------------------------------------------------------- /tools/cfn/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/cfn/Readme.md -------------------------------------------------------------------------------- /tools/coreml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/coreml/README.md -------------------------------------------------------------------------------- /tools/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/diagnose.py -------------------------------------------------------------------------------- /tools/im2rec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/im2rec.cc -------------------------------------------------------------------------------- /tools/im2rec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/im2rec.py -------------------------------------------------------------------------------- /tools/ipynb2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/ipynb2md.py -------------------------------------------------------------------------------- /tools/kill-mxnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/kill-mxnet.py -------------------------------------------------------------------------------- /tools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/launch.py -------------------------------------------------------------------------------- /tools/license_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/license_header.py -------------------------------------------------------------------------------- /tools/parse_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/parse_log.py -------------------------------------------------------------------------------- /tools/pip_package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/pip_package/README.md -------------------------------------------------------------------------------- /tools/pip_package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/pip_package/setup.py -------------------------------------------------------------------------------- /tools/rec2idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandj91/p3/HEAD/tools/rec2idx.py --------------------------------------------------------------------------------