Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #19106

Merged
merged 2 commits into from
May 10, 2018
Merged

Fix typo #19106

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion tensorflow/compiler/xla/shape_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ class ShapeUtil {
}

// Returns the higher-precision element type if a and b are both floating
// point types; otherwise, checks that that they have the same element type
// point types; otherwise, checks that they have the same element type
// and returns it.
static PrimitiveType HigherPrecisionElementType(const Shape& a,
const Shape& b) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ static void CheckOpsSupport(const GraphDef& graph_def,
HexagonOpsDefinitions::getInstance();
LOG(INFO) << "Checking " << graph_def.node_size() << " nodes";
LOG(INFO) << "dump_all_nodes = " << dump_all_nodes
<< ", dump_shape_and_tpye = " << dump_shape_and_type;
<< ", dump_shape_and_type = " << dump_shape_and_type;

std::unordered_set<string> unsupported_ops;
bool all_supported = true;
Expand Down