Skip to content

Commit 4642e0b

Browse files
Automated Code Change
PiperOrigin-RevId: 648624443
1 parent bff6733 commit 4642e0b

15 files changed

+65
-15
lines changed

tensorflow/core/kernels/fuzzing/check_numerics_fuzz.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,11 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16+
#include "tensorflow/cc/framework/scope.h"
1617
#include "tensorflow/cc/ops/array_ops.h"
17-
#include "tensorflow/cc/ops/standard_ops.h"
18+
#include "tensorflow/core/framework/tensor.h"
19+
#include "tensorflow/core/framework/tensor_shape.h"
20+
#include "tensorflow/core/framework/types.pb.h"
1821
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1922

2023
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_base64_fuzz.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/ops/string_ops.h"
17+
#include "tensorflow/core/framework/types.pb.h"
1718
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1819

1920
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_bmp_fuzz.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/ops/image_ops.h"
17+
#include "tensorflow/core/framework/types.pb.h"
1718
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1819

1920
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_compressed_fuzz.cc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/framework/ops.h"
17+
#include "tensorflow/cc/framework/scope.h"
18+
#include "tensorflow/cc/ops/array_ops.h"
19+
#include "tensorflow/cc/ops/no_op.h"
20+
#include "tensorflow/cc/ops/parsing_ops.h"
21+
#include "tensorflow/core/framework/types.pb.h"
1722
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1823

1924
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_csv_fuzz.cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/framework/ops.h"
17+
#include "tensorflow/cc/framework/scope.h"
18+
#include "tensorflow/cc/ops/array_ops.h"
19+
#include "tensorflow/cc/ops/parsing_ops.h"
20+
#include "tensorflow/core/framework/types.pb.h"
1721
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1822

1923
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_json_example_fuzz.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/ops/parsing_ops.h"
17+
#include "tensorflow/core/framework/types.pb.h"
1718
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1819

1920
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_png_fuzz.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/ops/image_ops.h"
17+
#include "tensorflow/core/framework/types.pb.h"
1718
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1819

1920
namespace tensorflow {

tensorflow/core/kernels/fuzzing/decode_wav_fuzz.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ limitations under the License.
1414
==============================================================================*/
1515

1616
#include "tensorflow/cc/ops/audio_ops.h"
17-
#include "tensorflow/cc/ops/standard_ops.h"
17+
#include "tensorflow/core/framework/types.pb.h"
1818
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1919

2020
namespace tensorflow {

tensorflow/core/kernels/fuzzing/encode_base64_fuzz.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/ops/string_ops.h"
17+
#include "tensorflow/core/framework/types.pb.h"
1718
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
1819

1920
namespace tensorflow {

tensorflow/core/kernels/fuzzing/encode_jpeg_fuzz.cc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
==============================================================================*/
1515

16-
#include "tensorflow/cc/ops/standard_ops.h"
16+
#include "tensorflow/cc/ops/image_ops.h"
17+
#include "tensorflow/core/framework/tensor.h"
18+
#include "tensorflow/core/framework/tensor_shape.h"
19+
#include "tensorflow/core/framework/types.pb.h"
1720
#include "tensorflow/core/kernels/fuzzing/fuzz_session.h"
21+
#include "tensorflow/core/platform/types.h"
1822

1923
namespace tensorflow {
2024
namespace fuzzing {

0 commit comments

Comments
 (0)