Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tensorflow_io/core/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ cc_library(
".",
],
deps = [
"@libarchive",
"@local_config_tf//:libtensorflow_framework",
"@local_config_tf//:tf_header_lib",
],
Expand Down
5 changes: 3 additions & 2 deletions tensorflow_io/lmdb/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ package(default_visibility = ["//visibility:public"])
cc_binary(
name = "python/ops/_lmdb_ops.so",
srcs = [
"kernels/lmdb_dataset_ops.cc",
"ops/dataset_ops.cc",
"kernels/lmdb_input.cc",
"ops/lmdb_ops.cc",
],
copts = [
"-pthread",
Expand All @@ -15,6 +15,7 @@ cc_binary(
],
linkshared = 1,
deps = [
"//tensorflow_io/core:dataset_ops",
"@lmdb",
"@local_config_tf//:libtensorflow_framework",
"@local_config_tf//:tf_header_lib",
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_io/lmdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from __future__ import division
from __future__ import print_function

from tensorflow_io.lmdb.python.ops.lmdb_dataset_ops import LMDBDataset
from tensorflow_io.lmdb.python.ops.lmdb_ops import LMDBDataset

from tensorflow.python.util.all_util import remove_undocumented

Expand Down
219 changes: 0 additions & 219 deletions tensorflow_io/lmdb/kernels/lmdb_dataset_ops.cc

This file was deleted.

Loading