-
Notifications
You must be signed in to change notification settings - Fork 0
Try #8
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
@@ -31,7 +31,7 @@ | |||
assert sum(e.startswith("require = ") for e in entries) == 1 | |||
version = list(e[10:] for e in entries if e.startswith("version = "))[0].strip('"') | |||
require = list(e[10:] for e in entries if e.startswith("require = "))[0].strip('"') | |||
assert version != "" | |||
assert version != "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[reviewdog-suggester] reported by reviewdog 🐶
assert version != "" | |
assert version != "" |
@@ -4,7 +4,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | |||
|
|||
# Note: zlib is placed earlier as tensorflow's zlib does not include unzip | |||
http_archive( | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[reviewdog-suggester] reported by reviewdog 🐶
name = "zlib", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[reviewdog-suggester] reported by reviewdog 🐶
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[reviewdog-suggester] reported by reviewdog 🐶
#include "tensorflow/core/framework/op_kernel.h" | ||
|
||
namespace tensorflow { | ||
namespace io { | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[reviewdog-suggester] reported by reviewdog 🐶
namespace { | ||
|
||
class DecodeAVIFOp : public OpKernel { | ||
public: | ||
explicit DecodeAVIFOp(OpKernelConstruction* context) : OpKernel(context) {} | ||
explicit DecodeAVIFOp(OpKernelConstruction* context) : OpKernel(context) {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[reviewdog-suggester] reported by reviewdog 🐶
explicit DecodeAVIFOp(OpKernelConstruction* context) : OpKernel(context) {} | |
explicit DecodeAVIFOp(OpKernelConstruction* context) : OpKernel(context) {} |
Signed-off-by: Yong Tang yong.tang.github@outlook.com