-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feat] Save and load cuckoo hashtable from hdfs
code format and fix bracket issue [fix] Fixed bug which cause by hiredis updating failed to compile. add hadoop fix undefined symbol and skip test hdfs fix test error fix variable-sized object may not be initialized fix build for tf version >= 2.7.0 save to tmp file convert values to const load_from_hdfs adopts zero-copy method
- Loading branch information
1 parent
c8c73c7
commit 64631be
Showing
12 changed files
with
1,070 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
tensorflow_recommenders_addons/dynamic_embedding/core/lib/hadoop_file_system/BUILD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
load("@local_config_tf//:build_defs.bzl", "DTF_VERSION_INTEGER", "D_GLIBCXX_USE_CXX11_ABI") | ||
|
||
package(default_visibility = ["//visibility:public"]) | ||
|
||
cc_library( | ||
name = "hadoop_file_system", | ||
srcs = ["hadoop_file_system.cc"], | ||
hdrs = ["hadoop_file_system.h"], | ||
copts = [ | ||
D_GLIBCXX_USE_CXX11_ABI, | ||
DTF_VERSION_INTEGER, | ||
], | ||
deps = [ | ||
"@hadoop", | ||
"@local_config_tf//:libtensorflow_framework", | ||
"@local_config_tf//:tf_header_lib", | ||
], | ||
alwayslink = 1, | ||
) |
Oops, something went wrong.