Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created April 1, 2020 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/99ef9a15edbefcf4aaf42037ceccbd0b to your computer and use it in GitHub Desktop.
Save r-ryantm/99ef9a15edbefcf4aaf42037ceccbd0b to your computer and use it in GitHub Desktop.
/nix/store/r9yyj91mppwq83bw4j4162ig18h8rqd4-mxnet-1.6.0
├── include
│   ├── dlpack
│   │   └── dlpack.h
│   ├── dmlc
│   │   ├── any.h
│   │   ├── array_view.h
│   │   ├── base.h
│   │   ├── blockingconcurrentqueue.h
│   │   ├── build_config_default.h
│   │   ├── build_config.h
│   │   ├── common.h
│   │   ├── concurrency.h
│   │   ├── concurrentqueue.h
│   │   ├── config.h
│   │   ├── data.h
│   │   ├── endian.h
│   │   ├── filesystem.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
│   │   ├── strtonum.h
│   │   ├── threadediter.h
│   │   ├── thread_group.h
│   │   ├── thread_local.h
│   │   ├── timer.h
│   │   └── type_traits.h
│   ├── mshadow
│   │   ├── base.h
│   │   ├── cuda
│   │   │   ├── reduce.cuh
│   │   │   └── tensor_gpu-inl.cuh
│   │   ├── dot_engine-inl.h
│   │   ├── expr_engine-inl.h
│   │   ├── expression.h
│   │   ├── expr_scalar-inl.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
│   │   │   ├── reduceto1d.h
│   │   │   ├── reduce_with_axis.h
│   │   │   ├── reshape.h
│   │   │   ├── slice_ex.h
│   │   │   ├── slice.h
│   │   │   ├── spatial_pool.h
│   │   │   ├── spatial_unpool.h
│   │   │   ├── spatial_upsampling_nearest.h
│   │   │   ├── swapaxis.h
│   │   │   ├── take_grad.h
│   │   │   ├── take.h
│   │   │   ├── transpose.h
│   │   │   └── unpack_patch2col.h
│   │   ├── extension.h
│   │   ├── half2.h
│   │   ├── half.h
│   │   ├── io.h
│   │   ├── logging.h
│   │   ├── packet
│   │   │   ├── plain-inl.h
│   │   │   └── sse-inl.h
│   │   ├── packet-inl.h
│   │   ├── random.h
│   │   ├── README.md
│   │   ├── stream_gpu-inl.h
│   │   ├── tensor_container.h
│   │   ├── tensor_cpu-inl.h
│   │   ├── tensor_gpu-inl.h
│   │   └── tensor.h
│   ├── mxnet
│   │   ├── base.h
│   │   ├── c_api_error.h
│   │   ├── c_api.h
│   │   ├── c_api_test.h
│   │   ├── c_predict_api.h
│   │   ├── engine.h
│   │   ├── executor.h
│   │   ├── graph_attr_types.h
│   │   ├── imperative.h
│   │   ├── io.h
│   │   ├── kvstore.h
│   │   ├── lib_api.h
│   │   ├── libinfo.h
│   │   ├── ndarray.h
│   │   ├── op_attr_types.h
│   │   ├── operator.h
│   │   ├── operator_util.h
│   │   ├── random_generator.h
│   │   ├── resource.h
│   │   ├── rtc.h
│   │   ├── storage.h
│   │   ├── tensor_blob.h
│   │   └── tuple.h
│   └── nnvm
│   ├── base.h
│   ├── c_api.h
│   ├── compiler
│   │   ├── op_attr_types.h
│   │   ├── packed_func_ext.h
│   │   └── util.h
│   ├── graph_attr_types.h
│   ├── graph.h
│   ├── layout.h
│   ├── node.h
│   ├── op_attr_types.h
│   ├── op.h
│   ├── pass_functions.h
│   ├── pass.h
│   ├── symbolic.h
│   ├── top
│   │   ├── nn.h
│   │   ├── README
│   │   └── tensor.h
│   └── tuple.h
└── lib
├── cmake
│   └── dmlc
│   ├── dmlc-config.cmake
│   ├── dmlc-config-version.cmake
│   ├── DMLCTargets.cmake
│   └── DMLCTargets-release.cmake
└── libmxnet.so
14 directories, 131 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment