in source/neuropod/bindings/java/src/main/java/com/uber/neuropod/TensorSpec.java [70:77]
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof TensorSpec)) return false;
TensorSpec that = (TensorSpec) o;
return getName().equals(that.getName()) &&
getType() == that.getType() &&
getDims().equals(that.getDims());
}