Skip to content

Commit

Permalink
revert submodule updates
Browse files Browse the repository at this point in the history
  • Loading branch information
pmeier committed Dec 12, 2022
1 parent 1898728 commit 254491c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion third_party/fbgemm
Submodule fbgemm updated 75 files
+26 −8 .github/workflows/fbgemm_nightly_build.yml
+7 −3 .github/workflows/fbgemm_nightly_build_cpu.yml
+47 −41 .github/workflows/fbgemm_release_build.yml
+8 −4 .github/workflows/fbgemm_release_build_cpu.yml
+4 −3 .github/workflows/fbgemmci.yml
+45 −0 .github/workflows/pylint.yaml
+16 −6 fbgemm_gpu/CMakeLists.txt
+10 −4 fbgemm_gpu/README.md
+90 −214 fbgemm_gpu/bench/bench_utils.py
+147 −1 fbgemm_gpu/bench/jagged_tensor_benchmark.py
+23 −20 fbgemm_gpu/bench/merge_embeddings_benchmark.py
+88 −0 fbgemm_gpu/bench/sparse_ops_benchmark.py
+0 −4 fbgemm_gpu/bench/split_embeddings_cache_benchmark.py
+489 −51 fbgemm_gpu/bench/split_table_batched_embeddings_benchmark.py
+403 −0 fbgemm_gpu/bench/ssd_table_batched_embeddings_benchmark.py
+2 −2 fbgemm_gpu/codegen/embedding_backward_split_indice_weights_template.cu
+8 −10 fbgemm_gpu/codegen/embedding_backward_split_template.cu
+1 −1 fbgemm_gpu/codegen/embedding_forward_quantized_cpu_template.cpp
+137 −2 fbgemm_gpu/codegen/embedding_forward_quantized_host.cpp
+1 −1 fbgemm_gpu/codegen/embedding_forward_quantized_host_cpu.cpp
+1 −9 fbgemm_gpu/codegen/embedding_forward_quantized_split_template.cu
+5 −5 fbgemm_gpu/codegen/embedding_forward_split_template.cu
+8 −2 fbgemm_gpu/codegen/split_embedding_codegen_lookup_invoker.template
+1 −2 fbgemm_gpu/fbgemm_gpu/__init__.py
+9 −9 fbgemm_gpu/fbgemm_gpu/_fbgemm_gpu_docs.py
+6 −0 fbgemm_gpu/fbgemm_gpu/docs/__init__.py
+1 −0 fbgemm_gpu/fbgemm_gpu/enums.py
+50 −8 fbgemm_gpu/fbgemm_gpu/quantize_comm.py
+1 −1 fbgemm_gpu/fbgemm_gpu/split_embedding_configs.py
+4 −2 fbgemm_gpu/fbgemm_gpu/split_embedding_inference_converter.py
+483 −0 fbgemm_gpu/fbgemm_gpu/split_embedding_utils.py
+147 −91 fbgemm_gpu/fbgemm_gpu/split_table_batched_embeddings_ops.py
+1,001 −0 fbgemm_gpu/fbgemm_gpu/ssd_split_table_batched_embeddings_ops.py
+1 −0 fbgemm_gpu/fbgemm_gpu/uvm.py
+92 −0 fbgemm_gpu/include/fbgemm_gpu/embedding_inplace_update.h
+77 −0 fbgemm_gpu/include/fbgemm_gpu/fbgemm_cuda_utils.cuh
+73 −44 fbgemm_gpu/include/fbgemm_gpu/sparse_ops.h
+40 −3 fbgemm_gpu/include/fbgemm_gpu/split_embeddings_cache_cuda.cuh
+19 −0 fbgemm_gpu/include/fbgemm_gpu/topology_utils.h
+63 −2 fbgemm_gpu/src/cumem_utils.cu
+14 −0 fbgemm_gpu/src/cumem_utils.h
+5 −27 fbgemm_gpu/src/cumem_utils_host.cpp
+254 −0 fbgemm_gpu/src/embedding_inplace_update.cu
+118 −0 fbgemm_gpu/src/embedding_inplace_update_cpu.cpp
+16 −0 fbgemm_gpu/src/embedding_inplace_update_gpu.cpp
+712 −431 fbgemm_gpu/src/jagged_tensor_ops.cu
+331 −0 fbgemm_gpu/src/jagged_tensor_ops_autograd.cpp
+295 −273 fbgemm_gpu/src/jagged_tensor_ops_cpu.cpp
+137 −0 fbgemm_gpu/src/jagged_tensor_ops_meta.cpp
+3 −181 fbgemm_gpu/src/merge_pooled_embeddings_gpu.cpp
+2 −66 fbgemm_gpu/src/metric_ops.cu
+372 −0 fbgemm_gpu/src/quantize_ops.cu
+18 −0 fbgemm_gpu/src/quantize_ops_cpu.cpp
+4 −0 fbgemm_gpu/src/quantize_ops_gpu.cpp
+231 −16 fbgemm_gpu/src/sparse_ops.cu
+110 −55 fbgemm_gpu/src/sparse_ops_cpu.cpp
+222 −0 fbgemm_gpu/src/sparse_ops_gpu.cpp
+584 −65 fbgemm_gpu/src/split_embeddings_cache_cuda.cu
+10 −32 fbgemm_gpu/src/split_table_batched_embeddings.cpp
+287 −0 fbgemm_gpu/src/ssd_split_embeddings_cache_cuda.cu
+135 −0 fbgemm_gpu/src/ssd_split_table_batched_embeddings.cpp
+573 −0 fbgemm_gpu/src/ssd_table_batched_embeddings.h
+183 −0 fbgemm_gpu/src/topology_utils.cpp
+112 −0 fbgemm_gpu/test/embedding_inplace_update_test.cpp
+397 −63 fbgemm_gpu/test/jagged_tensor_ops_test.py
+111 −0 fbgemm_gpu/test/lint/check_meta_header.py
+17 −0 fbgemm_gpu/test/lint/flake8_problem_matcher.json
+24 −8 fbgemm_gpu/test/quantize_comm_test.py
+3 −3 fbgemm_gpu/test/quantize_ops_test.py
+125 −4 fbgemm_gpu/test/sparse_ops_test.py
+343 −314 fbgemm_gpu/test/split_table_batched_embeddings_test.py
+759 −0 fbgemm_gpu/test/ssd_split_table_batched_embeddings_test.py
+1 −0 fbgemm_gpu/test/test_utils.py
+154 −66 fbgemm_gpu/test/uvm_test.py
+1 −1 fbgemm_gpu/version.py
2 changes: 1 addition & 1 deletion third_party/ideep
Submodule ideep updated 1 files
+1 −1 mkl-dnn

0 comments on commit 254491c

Please sign in to comment.