├── .gitignore ├── GUIDE.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── TENSORFLOW_LICENSE ├── benchmarks └── inceptionv3 │ ├── README.md │ └── classify_image_timed.py ├── old_readme.md └── testlogs ├── python27 └── 2016_07_17 │ ├── console_output.txt │ └── tensorflow │ └── python │ └── kernel_tests │ ├── argmax_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── array_ops_test │ ├── test.cache_status │ └── test.log │ ├── as_string_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── attention_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── barrier_ops_test │ ├── test.cache_status │ └── test.log │ ├── batch_matmul_op_test │ ├── test.cache_status │ └── test.log │ ├── batch_matrix_band_part_op_test │ ├── test_shard_10_of_50.cache_status │ ├── test_shard_10_of_50.log │ ├── test_shard_10_of_50.xml │ ├── test_shard_11_of_50.cache_status │ ├── test_shard_11_of_50.log │ ├── test_shard_11_of_50.xml │ ├── test_shard_12_of_50.cache_status │ ├── test_shard_12_of_50.log │ ├── test_shard_12_of_50.xml │ ├── test_shard_13_of_50.cache_status │ ├── test_shard_13_of_50.log │ ├── test_shard_13_of_50.xml │ ├── test_shard_14_of_50.cache_status │ ├── test_shard_14_of_50.log │ ├── test_shard_14_of_50.xml │ ├── test_shard_15_of_50.cache_status │ ├── test_shard_15_of_50.log │ ├── test_shard_15_of_50.xml │ ├── test_shard_16_of_50.cache_status │ ├── test_shard_16_of_50.log │ ├── test_shard_16_of_50.xml │ ├── test_shard_17_of_50.cache_status │ ├── test_shard_17_of_50.log │ ├── test_shard_17_of_50.xml │ ├── test_shard_18_of_50.cache_status │ ├── test_shard_18_of_50.log │ ├── test_shard_18_of_50.xml │ ├── test_shard_19_of_50.cache_status │ ├── test_shard_19_of_50.log │ ├── test_shard_19_of_50.xml │ ├── test_shard_1_of_50.cache_status │ ├── test_shard_1_of_50.log │ ├── test_shard_1_of_50.xml │ ├── test_shard_20_of_50.cache_status │ ├── test_shard_20_of_50.log │ ├── test_shard_20_of_50.xml │ ├── test_shard_21_of_50.cache_status │ ├── test_shard_21_of_50.log │ ├── test_shard_21_of_50.xml │ ├── test_shard_22_of_50.cache_status │ ├── test_shard_22_of_50.log │ ├── test_shard_22_of_50.xml │ ├── test_shard_23_of_50.cache_status │ ├── test_shard_23_of_50.log │ ├── test_shard_23_of_50.xml │ ├── test_shard_24_of_50.cache_status │ ├── test_shard_24_of_50.log │ ├── test_shard_24_of_50.xml │ ├── test_shard_25_of_50.cache_status │ ├── test_shard_25_of_50.log │ ├── test_shard_25_of_50.xml │ ├── test_shard_26_of_50.cache_status │ ├── test_shard_26_of_50.log │ ├── test_shard_26_of_50.xml │ ├── test_shard_27_of_50.cache_status │ ├── test_shard_27_of_50.log │ ├── test_shard_27_of_50.xml │ ├── test_shard_28_of_50.cache_status │ ├── test_shard_28_of_50.log │ ├── test_shard_28_of_50.xml │ ├── test_shard_29_of_50.cache_status │ ├── test_shard_29_of_50.log │ ├── test_shard_29_of_50.xml │ ├── test_shard_2_of_50.cache_status │ ├── test_shard_2_of_50.log │ ├── test_shard_2_of_50.xml │ ├── test_shard_30_of_50.cache_status │ ├── test_shard_30_of_50.log │ ├── test_shard_30_of_50.xml │ ├── test_shard_31_of_50.cache_status │ ├── test_shard_31_of_50.log │ ├── test_shard_31_of_50.xml │ ├── test_shard_32_of_50.cache_status │ ├── test_shard_32_of_50.log │ ├── test_shard_32_of_50.xml │ ├── test_shard_33_of_50.cache_status │ ├── test_shard_33_of_50.log │ ├── test_shard_33_of_50.xml │ ├── test_shard_34_of_50.cache_status │ ├── test_shard_34_of_50.log │ ├── test_shard_34_of_50.xml │ ├── test_shard_35_of_50.cache_status │ ├── test_shard_35_of_50.log │ ├── test_shard_35_of_50.xml │ ├── test_shard_36_of_50.cache_status │ ├── test_shard_36_of_50.log │ ├── test_shard_36_of_50.xml │ ├── test_shard_37_of_50.cache_status │ ├── test_shard_37_of_50.log │ ├── test_shard_37_of_50.xml │ ├── test_shard_38_of_50.cache_status │ ├── test_shard_38_of_50.log │ ├── test_shard_38_of_50.xml │ ├── test_shard_39_of_50.cache_status │ ├── test_shard_39_of_50.log │ ├── test_shard_39_of_50.xml │ ├── test_shard_3_of_50.cache_status │ ├── test_shard_3_of_50.log │ ├── test_shard_3_of_50.xml │ ├── test_shard_40_of_50.cache_status │ ├── test_shard_40_of_50.log │ ├── test_shard_40_of_50.xml │ ├── test_shard_41_of_50.cache_status │ ├── test_shard_41_of_50.log │ ├── test_shard_41_of_50.xml │ ├── test_shard_42_of_50.cache_status │ ├── test_shard_42_of_50.log │ ├── test_shard_42_of_50.xml │ ├── test_shard_43_of_50.cache_status │ ├── test_shard_43_of_50.log │ ├── test_shard_43_of_50.xml │ ├── test_shard_44_of_50.cache_status │ ├── test_shard_44_of_50.log │ ├── test_shard_44_of_50.xml │ ├── test_shard_45_of_50.cache_status │ ├── test_shard_45_of_50.log │ ├── test_shard_45_of_50.xml │ ├── test_shard_46_of_50.cache_status │ ├── test_shard_46_of_50.log │ ├── test_shard_46_of_50.xml │ ├── test_shard_47_of_50.cache_status │ ├── test_shard_47_of_50.log │ ├── test_shard_47_of_50.xml │ ├── test_shard_48_of_50.cache_status │ ├── test_shard_48_of_50.log │ ├── test_shard_48_of_50.xml │ ├── test_shard_49_of_50.cache_status │ ├── test_shard_49_of_50.log │ ├── test_shard_49_of_50.xml │ ├── test_shard_4_of_50.cache_status │ ├── test_shard_4_of_50.log │ ├── test_shard_4_of_50.xml │ ├── test_shard_50_of_50.cache_status │ ├── test_shard_50_of_50.log │ ├── test_shard_50_of_50.xml │ ├── test_shard_5_of_50.cache_status │ ├── test_shard_5_of_50.log │ ├── test_shard_5_of_50.xml │ ├── test_shard_6_of_50.cache_status │ ├── test_shard_6_of_50.log │ ├── test_shard_6_of_50.xml │ ├── test_shard_7_of_50.cache_status │ ├── test_shard_7_of_50.log │ ├── test_shard_7_of_50.xml │ ├── test_shard_8_of_50.cache_status │ ├── test_shard_8_of_50.log │ ├── test_shard_8_of_50.xml │ ├── test_shard_9_of_50.cache_status │ ├── test_shard_9_of_50.log │ └── test_shard_9_of_50.xml │ ├── batchtospace_op_test │ ├── test.cache_status │ └── test.log │ ├── bcast_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── benchmark_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── bias_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── bitcast_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── candidate_sampler_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── cast_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── check_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── cholesky_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── clip_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── concat_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── constant_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── control_flow_ops_py_test │ ├── test.cache_status │ └── test.log │ ├── conv_ops_3d_test │ ├── test_shard_10_of_50.cache_status │ ├── test_shard_10_of_50.log │ ├── test_shard_10_of_50.xml │ ├── test_shard_11_of_50.cache_status │ ├── test_shard_11_of_50.log │ ├── test_shard_11_of_50.xml │ ├── test_shard_12_of_50.cache_status │ ├── test_shard_12_of_50.log │ ├── test_shard_12_of_50.xml │ ├── test_shard_13_of_50.cache_status │ ├── test_shard_13_of_50.log │ ├── test_shard_13_of_50.xml │ ├── test_shard_14_of_50.cache_status │ ├── test_shard_14_of_50.log │ ├── test_shard_14_of_50.xml │ ├── test_shard_15_of_50.cache_status │ ├── test_shard_15_of_50.log │ ├── test_shard_15_of_50.xml │ ├── test_shard_16_of_50.cache_status │ ├── test_shard_16_of_50.log │ ├── test_shard_16_of_50.xml │ ├── test_shard_17_of_50.cache_status │ ├── test_shard_17_of_50.log │ ├── test_shard_17_of_50.xml │ ├── test_shard_18_of_50.cache_status │ ├── test_shard_18_of_50.log │ ├── test_shard_18_of_50.xml │ ├── test_shard_19_of_50.cache_status │ ├── test_shard_19_of_50.log │ ├── test_shard_19_of_50.xml │ ├── test_shard_1_of_50.cache_status │ ├── test_shard_1_of_50.log │ ├── test_shard_1_of_50.xml │ ├── test_shard_20_of_50.cache_status │ ├── test_shard_20_of_50.log │ ├── test_shard_20_of_50.xml │ ├── test_shard_21_of_50.cache_status │ ├── test_shard_21_of_50.log │ ├── test_shard_21_of_50.xml │ ├── test_shard_22_of_50.cache_status │ ├── test_shard_22_of_50.log │ ├── test_shard_22_of_50.xml │ ├── test_shard_23_of_50.cache_status │ ├── test_shard_23_of_50.log │ ├── test_shard_23_of_50.xml │ ├── test_shard_24_of_50.cache_status │ ├── test_shard_24_of_50.log │ ├── test_shard_24_of_50.xml │ ├── test_shard_25_of_50.cache_status │ ├── test_shard_25_of_50.log │ ├── test_shard_25_of_50.xml │ ├── test_shard_26_of_50.cache_status │ ├── test_shard_26_of_50.log │ ├── test_shard_26_of_50.xml │ ├── test_shard_27_of_50.cache_status │ ├── test_shard_27_of_50.log │ ├── test_shard_27_of_50.xml │ ├── test_shard_28_of_50.cache_status │ ├── test_shard_28_of_50.log │ ├── test_shard_28_of_50.xml │ ├── test_shard_29_of_50.cache_status │ ├── test_shard_29_of_50.log │ ├── test_shard_29_of_50.xml │ ├── test_shard_2_of_50.cache_status │ ├── test_shard_2_of_50.log │ ├── test_shard_2_of_50.xml │ ├── test_shard_30_of_50.cache_status │ ├── test_shard_30_of_50.log │ ├── test_shard_30_of_50.xml │ ├── test_shard_31_of_50.cache_status │ ├── test_shard_31_of_50.log │ ├── test_shard_31_of_50.xml │ ├── test_shard_32_of_50.cache_status │ ├── test_shard_32_of_50.log │ ├── test_shard_32_of_50.xml │ ├── test_shard_33_of_50.cache_status │ ├── test_shard_33_of_50.log │ ├── test_shard_33_of_50.xml │ ├── test_shard_34_of_50.cache_status │ ├── test_shard_34_of_50.log │ ├── test_shard_34_of_50.xml │ ├── test_shard_35_of_50.cache_status │ ├── test_shard_35_of_50.log │ ├── test_shard_35_of_50.xml │ ├── test_shard_36_of_50.cache_status │ ├── test_shard_36_of_50.log │ ├── test_shard_36_of_50.xml │ ├── test_shard_37_of_50.cache_status │ ├── test_shard_37_of_50.log │ ├── test_shard_37_of_50.xml │ ├── test_shard_38_of_50.cache_status │ ├── test_shard_38_of_50.log │ ├── test_shard_38_of_50.xml │ ├── test_shard_39_of_50.cache_status │ ├── test_shard_39_of_50.log │ ├── test_shard_39_of_50.xml │ ├── test_shard_3_of_50.cache_status │ ├── test_shard_3_of_50.log │ ├── test_shard_3_of_50.xml │ ├── test_shard_40_of_50.cache_status │ ├── test_shard_40_of_50.log │ ├── test_shard_40_of_50.xml │ ├── test_shard_41_of_50.cache_status │ ├── test_shard_41_of_50.log │ ├── test_shard_41_of_50.xml │ ├── test_shard_42_of_50.cache_status │ ├── test_shard_42_of_50.log │ ├── test_shard_42_of_50.xml │ ├── test_shard_43_of_50.cache_status │ ├── test_shard_43_of_50.log │ ├── test_shard_43_of_50.xml │ ├── test_shard_44_of_50.cache_status │ ├── test_shard_44_of_50.log │ ├── test_shard_44_of_50.xml │ ├── test_shard_45_of_50.cache_status │ ├── test_shard_45_of_50.log │ ├── test_shard_45_of_50.xml │ ├── test_shard_46_of_50.cache_status │ ├── test_shard_46_of_50.log │ ├── test_shard_46_of_50.xml │ ├── test_shard_47_of_50.cache_status │ ├── test_shard_47_of_50.log │ ├── test_shard_47_of_50.xml │ ├── test_shard_48_of_50.cache_status │ ├── test_shard_48_of_50.log │ ├── test_shard_48_of_50.xml │ ├── test_shard_49_of_50.cache_status │ ├── test_shard_49_of_50.log │ ├── test_shard_49_of_50.xml │ ├── test_shard_4_of_50.cache_status │ ├── test_shard_4_of_50.log │ ├── test_shard_4_of_50.xml │ ├── test_shard_50_of_50.cache_status │ ├── test_shard_50_of_50.log │ ├── test_shard_50_of_50.xml │ ├── test_shard_5_of_50.cache_status │ ├── test_shard_5_of_50.log │ ├── test_shard_5_of_50.xml │ ├── test_shard_6_of_50.cache_status │ ├── test_shard_6_of_50.log │ ├── test_shard_6_of_50.xml │ ├── test_shard_7_of_50.cache_status │ ├── test_shard_7_of_50.log │ ├── test_shard_7_of_50.xml │ ├── test_shard_8_of_50.cache_status │ ├── test_shard_8_of_50.log │ ├── test_shard_8_of_50.xml │ ├── test_shard_9_of_50.cache_status │ ├── test_shard_9_of_50.log │ └── test_shard_9_of_50.xml │ ├── conv_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── cross_grad_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── ctc_decoder_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── ctc_loss_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── cwise_ops_test │ ├── test_shard_10_of_50.cache_status │ ├── test_shard_10_of_50.log │ ├── test_shard_10_of_50.xml │ ├── test_shard_11_of_50.cache_status │ ├── test_shard_11_of_50.log │ ├── test_shard_11_of_50.xml │ ├── test_shard_12_of_50.cache_status │ ├── test_shard_12_of_50.log │ ├── test_shard_12_of_50.xml │ ├── test_shard_13_of_50.cache_status │ ├── test_shard_13_of_50.log │ ├── test_shard_13_of_50.xml │ ├── test_shard_14_of_50.cache_status │ ├── test_shard_14_of_50.log │ ├── test_shard_14_of_50.xml │ ├── test_shard_15_of_50.cache_status │ ├── test_shard_15_of_50.log │ ├── test_shard_15_of_50.xml │ ├── test_shard_16_of_50.cache_status │ ├── test_shard_16_of_50.log │ ├── test_shard_16_of_50.xml │ ├── test_shard_17_of_50.cache_status │ ├── test_shard_17_of_50.log │ ├── test_shard_17_of_50.xml │ ├── test_shard_18_of_50.cache_status │ ├── test_shard_18_of_50.log │ ├── test_shard_18_of_50.xml │ ├── test_shard_19_of_50.cache_status │ ├── test_shard_19_of_50.log │ ├── test_shard_19_of_50.xml │ ├── test_shard_1_of_50.cache_status │ ├── test_shard_1_of_50.log │ ├── test_shard_1_of_50.xml │ ├── test_shard_20_of_50.cache_status │ ├── test_shard_20_of_50.log │ ├── test_shard_20_of_50.xml │ ├── test_shard_21_of_50.cache_status │ ├── test_shard_21_of_50.log │ ├── test_shard_21_of_50.xml │ ├── test_shard_22_of_50.cache_status │ ├── test_shard_22_of_50.log │ ├── test_shard_22_of_50.xml │ ├── test_shard_23_of_50.cache_status │ ├── test_shard_23_of_50.log │ ├── test_shard_23_of_50.xml │ ├── test_shard_24_of_50.cache_status │ ├── test_shard_24_of_50.log │ ├── test_shard_24_of_50.xml │ ├── test_shard_25_of_50.cache_status │ ├── test_shard_25_of_50.log │ ├── test_shard_25_of_50.xml │ ├── test_shard_26_of_50.cache_status │ ├── test_shard_26_of_50.log │ ├── test_shard_26_of_50.xml │ ├── test_shard_27_of_50.cache_status │ ├── test_shard_27_of_50.log │ ├── test_shard_27_of_50.xml │ ├── test_shard_28_of_50.cache_status │ ├── test_shard_28_of_50.log │ ├── test_shard_28_of_50.xml │ ├── test_shard_29_of_50.cache_status │ ├── test_shard_29_of_50.log │ ├── test_shard_29_of_50.xml │ ├── test_shard_2_of_50.cache_status │ ├── test_shard_2_of_50.log │ ├── test_shard_2_of_50.xml │ ├── test_shard_30_of_50.cache_status │ ├── test_shard_30_of_50.log │ ├── test_shard_30_of_50.xml │ ├── test_shard_31_of_50.cache_status │ ├── test_shard_31_of_50.log │ ├── test_shard_31_of_50.xml │ ├── test_shard_32_of_50.cache_status │ ├── test_shard_32_of_50.log │ ├── test_shard_32_of_50.xml │ ├── test_shard_33_of_50.cache_status │ ├── test_shard_33_of_50.log │ ├── test_shard_33_of_50.xml │ ├── test_shard_34_of_50.cache_status │ ├── test_shard_34_of_50.log │ ├── test_shard_34_of_50.xml │ ├── test_shard_35_of_50.cache_status │ ├── test_shard_35_of_50.log │ ├── test_shard_35_of_50.xml │ ├── test_shard_36_of_50.cache_status │ ├── test_shard_36_of_50.log │ ├── test_shard_36_of_50.xml │ ├── test_shard_37_of_50.cache_status │ ├── test_shard_37_of_50.log │ ├── test_shard_37_of_50.xml │ ├── test_shard_38_of_50.cache_status │ ├── test_shard_38_of_50.log │ ├── test_shard_38_of_50.xml │ ├── test_shard_39_of_50.cache_status │ ├── test_shard_39_of_50.log │ ├── test_shard_39_of_50.xml │ ├── test_shard_3_of_50.cache_status │ ├── test_shard_3_of_50.log │ ├── test_shard_3_of_50.xml │ ├── test_shard_40_of_50.cache_status │ ├── test_shard_40_of_50.log │ ├── test_shard_40_of_50.xml │ ├── test_shard_41_of_50.cache_status │ ├── test_shard_41_of_50.log │ ├── test_shard_41_of_50.xml │ ├── test_shard_42_of_50.cache_status │ ├── test_shard_42_of_50.log │ ├── test_shard_42_of_50.xml │ ├── test_shard_43_of_50.cache_status │ ├── test_shard_43_of_50.log │ ├── test_shard_43_of_50.xml │ ├── test_shard_44_of_50.cache_status │ ├── test_shard_44_of_50.log │ ├── test_shard_44_of_50.xml │ ├── test_shard_45_of_50.cache_status │ ├── test_shard_45_of_50.log │ ├── test_shard_45_of_50.xml │ ├── test_shard_46_of_50.cache_status │ ├── test_shard_46_of_50.log │ ├── test_shard_46_of_50.xml │ ├── test_shard_47_of_50.cache_status │ ├── test_shard_47_of_50.log │ ├── test_shard_47_of_50.xml │ ├── test_shard_48_of_50.cache_status │ ├── test_shard_48_of_50.log │ ├── test_shard_48_of_50.xml │ ├── test_shard_49_of_50.cache_status │ ├── test_shard_49_of_50.log │ ├── test_shard_49_of_50.xml │ ├── test_shard_4_of_50.cache_status │ ├── test_shard_4_of_50.log │ ├── test_shard_4_of_50.xml │ ├── test_shard_50_of_50.cache_status │ ├── test_shard_50_of_50.log │ ├── test_shard_50_of_50.xml │ ├── test_shard_5_of_50.cache_status │ ├── test_shard_5_of_50.log │ ├── test_shard_5_of_50.xml │ ├── test_shard_6_of_50.cache_status │ ├── test_shard_6_of_50.log │ ├── test_shard_6_of_50.xml │ ├── test_shard_7_of_50.cache_status │ ├── test_shard_7_of_50.log │ ├── test_shard_7_of_50.xml │ ├── test_shard_8_of_50.cache_status │ ├── test_shard_8_of_50.log │ ├── test_shard_8_of_50.xml │ ├── test_shard_9_of_50.cache_status │ ├── test_shard_9_of_50.log │ └── test_shard_9_of_50.xml │ ├── decode_csv_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── decode_png_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── decode_raw_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── denormal_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── dense_update_ops_no_tsan_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── dense_update_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── depthtospace_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── depthwise_conv_op_test │ ├── test.cache_status │ └── test.log │ ├── determinant_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── diag_op_test │ ├── test.cache_status │ └── test.log │ ├── division_future_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── division_past_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── dynamic_partition_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── dynamic_stitch_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── edit_distance_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── embedding_ops_test │ ├── test_shard_10_of_50.cache_status │ ├── test_shard_10_of_50.log │ ├── test_shard_10_of_50.xml │ ├── test_shard_11_of_50.cache_status │ ├── test_shard_11_of_50.log │ ├── test_shard_11_of_50.xml │ ├── test_shard_12_of_50.cache_status │ ├── test_shard_12_of_50.log │ ├── test_shard_12_of_50.xml │ ├── test_shard_13_of_50.cache_status │ ├── test_shard_13_of_50.log │ ├── test_shard_13_of_50.xml │ ├── test_shard_14_of_50.cache_status │ ├── test_shard_14_of_50.log │ ├── test_shard_14_of_50.xml │ ├── test_shard_15_of_50.cache_status │ ├── test_shard_15_of_50.log │ ├── test_shard_15_of_50.xml │ ├── test_shard_16_of_50.cache_status │ ├── test_shard_16_of_50.log │ ├── test_shard_16_of_50.xml │ ├── test_shard_17_of_50.cache_status │ ├── test_shard_17_of_50.log │ ├── test_shard_17_of_50.xml │ ├── test_shard_18_of_50.cache_status │ ├── test_shard_18_of_50.log │ ├── test_shard_18_of_50.xml │ ├── test_shard_19_of_50.cache_status │ ├── test_shard_19_of_50.log │ ├── test_shard_19_of_50.xml │ ├── test_shard_1_of_50.cache_status │ ├── test_shard_1_of_50.log │ ├── test_shard_1_of_50.xml │ ├── test_shard_20_of_50.cache_status │ ├── test_shard_20_of_50.log │ ├── test_shard_20_of_50.xml │ ├── test_shard_21_of_50.cache_status │ ├── test_shard_21_of_50.log │ ├── test_shard_21_of_50.xml │ ├── test_shard_22_of_50.cache_status │ ├── test_shard_22_of_50.log │ ├── test_shard_22_of_50.xml │ ├── test_shard_23_of_50.cache_status │ ├── test_shard_23_of_50.log │ ├── test_shard_23_of_50.xml │ ├── test_shard_24_of_50.cache_status │ ├── test_shard_24_of_50.log │ ├── test_shard_24_of_50.xml │ ├── test_shard_25_of_50.cache_status │ ├── test_shard_25_of_50.log │ ├── test_shard_25_of_50.xml │ ├── test_shard_26_of_50.cache_status │ ├── test_shard_26_of_50.log │ ├── test_shard_26_of_50.xml │ ├── test_shard_27_of_50.cache_status │ ├── test_shard_27_of_50.log │ ├── test_shard_27_of_50.xml │ ├── test_shard_28_of_50.cache_status │ ├── test_shard_28_of_50.log │ ├── test_shard_28_of_50.xml │ ├── test_shard_29_of_50.cache_status │ ├── test_shard_29_of_50.log │ ├── test_shard_29_of_50.xml │ ├── test_shard_2_of_50.cache_status │ ├── test_shard_2_of_50.log │ ├── test_shard_2_of_50.xml │ ├── test_shard_30_of_50.cache_status │ ├── test_shard_30_of_50.log │ ├── test_shard_30_of_50.xml │ ├── test_shard_31_of_50.cache_status │ ├── test_shard_31_of_50.log │ ├── test_shard_31_of_50.xml │ ├── test_shard_32_of_50.cache_status │ ├── test_shard_32_of_50.log │ ├── test_shard_32_of_50.xml │ ├── test_shard_33_of_50.cache_status │ ├── test_shard_33_of_50.log │ ├── test_shard_33_of_50.xml │ ├── test_shard_34_of_50.cache_status │ ├── test_shard_34_of_50.log │ ├── test_shard_34_of_50.xml │ ├── test_shard_35_of_50.cache_status │ ├── test_shard_35_of_50.log │ ├── test_shard_35_of_50.xml │ ├── test_shard_36_of_50.cache_status │ ├── test_shard_36_of_50.log │ ├── test_shard_36_of_50.xml │ ├── test_shard_37_of_50.cache_status │ ├── test_shard_37_of_50.log │ ├── test_shard_37_of_50.xml │ ├── test_shard_38_of_50.cache_status │ ├── test_shard_38_of_50.log │ ├── test_shard_38_of_50.xml │ ├── test_shard_39_of_50.cache_status │ ├── test_shard_39_of_50.log │ ├── test_shard_39_of_50.xml │ ├── test_shard_3_of_50.cache_status │ ├── test_shard_3_of_50.log │ ├── test_shard_3_of_50.xml │ ├── test_shard_40_of_50.cache_status │ ├── test_shard_40_of_50.log │ ├── test_shard_40_of_50.xml │ ├── test_shard_41_of_50.cache_status │ ├── test_shard_41_of_50.log │ ├── test_shard_41_of_50.xml │ ├── test_shard_42_of_50.cache_status │ ├── test_shard_42_of_50.log │ ├── test_shard_42_of_50.xml │ ├── test_shard_43_of_50.cache_status │ ├── test_shard_43_of_50.log │ ├── test_shard_43_of_50.xml │ ├── test_shard_44_of_50.cache_status │ ├── test_shard_44_of_50.log │ ├── test_shard_44_of_50.xml │ ├── test_shard_45_of_50.cache_status │ ├── test_shard_45_of_50.log │ ├── test_shard_45_of_50.xml │ ├── test_shard_46_of_50.cache_status │ ├── test_shard_46_of_50.log │ ├── test_shard_46_of_50.xml │ ├── test_shard_47_of_50.cache_status │ ├── test_shard_47_of_50.log │ ├── test_shard_47_of_50.xml │ ├── test_shard_48_of_50.cache_status │ ├── test_shard_48_of_50.log │ ├── test_shard_48_of_50.xml │ ├── test_shard_49_of_50.cache_status │ ├── test_shard_49_of_50.log │ ├── test_shard_49_of_50.xml │ ├── test_shard_4_of_50.cache_status │ ├── test_shard_4_of_50.log │ ├── test_shard_4_of_50.xml │ ├── test_shard_50_of_50.cache_status │ ├── test_shard_50_of_50.log │ ├── test_shard_50_of_50.xml │ ├── test_shard_5_of_50.cache_status │ ├── test_shard_5_of_50.log │ ├── test_shard_5_of_50.xml │ ├── test_shard_6_of_50.cache_status │ ├── test_shard_6_of_50.log │ ├── test_shard_6_of_50.xml │ ├── test_shard_7_of_50.cache_status │ ├── test_shard_7_of_50.log │ ├── test_shard_7_of_50.xml │ ├── test_shard_8_of_50.cache_status │ ├── test_shard_8_of_50.log │ ├── test_shard_8_of_50.xml │ ├── test_shard_9_of_50.cache_status │ ├── test_shard_9_of_50.log │ └── test_shard_9_of_50.xml │ ├── extract_image_patches_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── fft_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── fifo_queue_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── functional_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── gather_nd_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── gather_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── gradient_correctness_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── identity_op_py_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── in_topk_op_test │ ├── test.cache_status │ └── test.log │ ├── init_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── io_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── linalg_grad_test │ ├── test_shard_10_of_50.cache_status │ ├── test_shard_10_of_50.log │ ├── test_shard_10_of_50.xml │ ├── test_shard_11_of_50.cache_status │ ├── test_shard_11_of_50.log │ ├── test_shard_11_of_50.xml │ ├── test_shard_12_of_50.cache_status │ ├── test_shard_12_of_50.log │ ├── test_shard_12_of_50.xml │ ├── test_shard_13_of_50.cache_status │ ├── test_shard_13_of_50.log │ ├── test_shard_13_of_50.xml │ ├── test_shard_14_of_50.cache_status │ ├── test_shard_14_of_50.log │ ├── test_shard_14_of_50.xml │ ├── test_shard_15_of_50.cache_status │ ├── test_shard_15_of_50.log │ ├── test_shard_15_of_50.xml │ ├── test_shard_16_of_50.cache_status │ ├── test_shard_16_of_50.log │ ├── test_shard_16_of_50.xml │ ├── test_shard_17_of_50.cache_status │ ├── test_shard_17_of_50.log │ ├── test_shard_17_of_50.xml │ ├── test_shard_18_of_50.cache_status │ ├── test_shard_18_of_50.log │ ├── test_shard_18_of_50.xml │ ├── test_shard_19_of_50.cache_status │ ├── test_shard_19_of_50.log │ ├── test_shard_19_of_50.xml │ ├── test_shard_1_of_50.cache_status │ ├── test_shard_1_of_50.log │ ├── test_shard_1_of_50.xml │ ├── test_shard_20_of_50.cache_status │ ├── test_shard_20_of_50.log │ ├── test_shard_20_of_50.xml │ ├── test_shard_21_of_50.cache_status │ ├── test_shard_21_of_50.log │ ├── test_shard_21_of_50.xml │ ├── test_shard_22_of_50.cache_status │ ├── test_shard_22_of_50.log │ ├── test_shard_22_of_50.xml │ ├── test_shard_23_of_50.cache_status │ ├── test_shard_23_of_50.log │ ├── test_shard_23_of_50.xml │ ├── test_shard_24_of_50.cache_status │ ├── test_shard_24_of_50.log │ ├── test_shard_24_of_50.xml │ ├── test_shard_25_of_50.cache_status │ ├── test_shard_25_of_50.log │ ├── test_shard_25_of_50.xml │ ├── test_shard_26_of_50.cache_status │ ├── test_shard_26_of_50.log │ ├── test_shard_26_of_50.xml │ ├── test_shard_27_of_50.cache_status │ ├── test_shard_27_of_50.log │ ├── test_shard_27_of_50.xml │ ├── test_shard_28_of_50.cache_status │ ├── test_shard_28_of_50.log │ ├── test_shard_28_of_50.xml │ ├── test_shard_29_of_50.cache_status │ ├── test_shard_29_of_50.log │ ├── test_shard_29_of_50.xml │ ├── test_shard_2_of_50.cache_status │ ├── test_shard_2_of_50.log │ ├── test_shard_2_of_50.xml │ ├── test_shard_30_of_50.cache_status │ ├── test_shard_30_of_50.log │ ├── test_shard_30_of_50.xml │ ├── test_shard_31_of_50.cache_status │ ├── test_shard_31_of_50.log │ ├── test_shard_31_of_50.xml │ ├── test_shard_32_of_50.cache_status │ ├── test_shard_32_of_50.log │ ├── test_shard_32_of_50.xml │ ├── test_shard_33_of_50.cache_status │ ├── test_shard_33_of_50.log │ ├── test_shard_33_of_50.xml │ ├── test_shard_34_of_50.cache_status │ ├── test_shard_34_of_50.log │ ├── test_shard_34_of_50.xml │ ├── test_shard_35_of_50.cache_status │ ├── test_shard_35_of_50.log │ ├── test_shard_35_of_50.xml │ ├── test_shard_36_of_50.cache_status │ ├── test_shard_36_of_50.log │ ├── test_shard_36_of_50.xml │ ├── test_shard_37_of_50.cache_status │ ├── test_shard_37_of_50.log │ ├── test_shard_37_of_50.xml │ ├── test_shard_38_of_50.cache_status │ ├── test_shard_38_of_50.log │ ├── test_shard_38_of_50.xml │ ├── test_shard_39_of_50.cache_status │ ├── test_shard_39_of_50.log │ ├── test_shard_39_of_50.xml │ ├── test_shard_3_of_50.cache_status │ ├── test_shard_3_of_50.log │ ├── test_shard_3_of_50.xml │ ├── test_shard_40_of_50.cache_status │ ├── test_shard_40_of_50.log │ ├── test_shard_40_of_50.xml │ ├── test_shard_41_of_50.cache_status │ ├── test_shard_41_of_50.log │ ├── test_shard_41_of_50.xml │ ├── test_shard_42_of_50.cache_status │ ├── test_shard_42_of_50.log │ ├── test_shard_42_of_50.xml │ ├── test_shard_43_of_50.cache_status │ ├── test_shard_43_of_50.log │ ├── test_shard_43_of_50.xml │ ├── test_shard_44_of_50.cache_status │ ├── test_shard_44_of_50.log │ ├── test_shard_44_of_50.xml │ ├── test_shard_45_of_50.cache_status │ ├── test_shard_45_of_50.log │ ├── test_shard_45_of_50.xml │ ├── test_shard_46_of_50.cache_status │ ├── test_shard_46_of_50.log │ ├── test_shard_46_of_50.xml │ ├── test_shard_47_of_50.cache_status │ ├── test_shard_47_of_50.log │ ├── test_shard_47_of_50.xml │ ├── test_shard_48_of_50.cache_status │ ├── test_shard_48_of_50.log │ ├── test_shard_48_of_50.xml │ ├── test_shard_49_of_50.cache_status │ ├── test_shard_49_of_50.log │ ├── test_shard_49_of_50.xml │ ├── test_shard_4_of_50.cache_status │ ├── test_shard_4_of_50.log │ ├── test_shard_4_of_50.xml │ ├── test_shard_50_of_50.cache_status │ ├── test_shard_50_of_50.log │ ├── test_shard_50_of_50.xml │ ├── test_shard_5_of_50.cache_status │ ├── test_shard_5_of_50.log │ ├── test_shard_5_of_50.xml │ ├── test_shard_6_of_50.cache_status │ ├── test_shard_6_of_50.log │ ├── test_shard_6_of_50.xml │ ├── test_shard_7_of_50.cache_status │ ├── test_shard_7_of_50.log │ ├── test_shard_7_of_50.xml │ ├── test_shard_8_of_50.cache_status │ ├── test_shard_8_of_50.log │ ├── test_shard_8_of_50.xml │ ├── test_shard_9_of_50.cache_status │ ├── test_shard_9_of_50.log │ └── test_shard_9_of_50.xml │ ├── linalg_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── listdiff_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── logging_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── lrn_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── matmul_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── matrix_inverse_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── matrix_solve_ls_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── matrix_solve_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── matrix_triangular_solve_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── morphological_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── multinomial_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── numerics_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── one_hot_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── pack_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── pad_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── padding_fifo_queue_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── parameterized_truncated_normal_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── parsing_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── partitioned_variables_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── pooling_ops_3d_test │ ├── test.cache_status │ └── test.log │ ├── pooling_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── priority_queue_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── py_func_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── random_crop_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── random_gamma_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── random_ops_test │ ├── test.cache_status │ └── test.log │ ├── random_shuffle_queue_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── reader_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── reduce_join_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── reduction_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── relu_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── reshape_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── reverse_sequence_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── rnn_cell_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── rnn_test │ ├── test.cache_status │ └── test.log │ ├── save_restore_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── scalar_strict_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── scan_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── scatter_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── segment_reduction_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── self_adjoint_eig_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── seq2seq_test │ ├── test.cache_status │ └── test.log │ ├── session_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── shape_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── slice_op_test │ ├── test.cache_status │ └── test.log │ ├── softmax_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── softplus_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── softsign_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── spacetobatch_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── spacetodepth_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_add_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_concat_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_matmul_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_reorder_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_reshape_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_serialization_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_split_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_tensor_dense_matmul_grad_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_tensor_dense_matmul_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_to_dense_op_py_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparse_xent_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── sparsemask_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── split_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── stack_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── string_join_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── string_to_hash_bucket_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── string_to_number_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── summary_audio_op_test │ ├── test.cache_status │ └── test.log │ ├── summary_image_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── summary_ops_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── template_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── tensor_array_ops_test │ ├── test.cache_status │ └── test.log │ ├── topk_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── trace_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── transpose_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── unique_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── unpack_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── variable_ops_test │ ├── test.cache_status │ └── test.log │ ├── variable_scope_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── variables_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── where_op_test │ ├── test.cache_status │ ├── test.log │ └── test.xml │ ├── xent_op_test │ ├── test.cache_status │ └── test.log │ └── zero_division_test │ ├── test.cache_status │ ├── test.log │ └── test.xml └── python3 └── 2016_07_17 ├── console_output.txt └── tensorflow └── python └── kernel_tests ├── argmax_op_test ├── test.cache_status ├── test.log └── test.xml ├── array_ops_test ├── test.cache_status └── test.log ├── as_string_op_test ├── test.cache_status └── test.log ├── attention_ops_test ├── test.cache_status ├── test.log └── test.xml ├── barrier_ops_test ├── test.cache_status └── test.log ├── batch_matmul_op_test ├── test.cache_status └── test.log ├── batch_matrix_band_part_op_test ├── test_shard_10_of_50.cache_status ├── test_shard_10_of_50.log ├── test_shard_10_of_50.xml ├── test_shard_11_of_50.cache_status ├── test_shard_11_of_50.log ├── test_shard_11_of_50.xml ├── test_shard_12_of_50.cache_status ├── test_shard_12_of_50.log ├── test_shard_12_of_50.xml ├── test_shard_13_of_50.cache_status ├── test_shard_13_of_50.log ├── test_shard_13_of_50.xml ├── test_shard_14_of_50.cache_status ├── test_shard_14_of_50.log ├── test_shard_14_of_50.xml ├── test_shard_15_of_50.cache_status ├── test_shard_15_of_50.log ├── test_shard_15_of_50.xml ├── test_shard_16_of_50.cache_status ├── test_shard_16_of_50.log ├── test_shard_16_of_50.xml ├── test_shard_17_of_50.cache_status ├── test_shard_17_of_50.log ├── test_shard_17_of_50.xml ├── test_shard_18_of_50.cache_status ├── test_shard_18_of_50.log ├── test_shard_18_of_50.xml ├── test_shard_19_of_50.cache_status ├── test_shard_19_of_50.log ├── test_shard_19_of_50.xml ├── test_shard_1_of_50.cache_status ├── test_shard_1_of_50.log ├── test_shard_1_of_50.xml ├── test_shard_20_of_50.cache_status ├── test_shard_20_of_50.log ├── test_shard_20_of_50.xml ├── test_shard_21_of_50.cache_status ├── test_shard_21_of_50.log ├── test_shard_21_of_50.xml ├── test_shard_22_of_50.cache_status ├── test_shard_22_of_50.log ├── test_shard_22_of_50.xml ├── test_shard_23_of_50.cache_status ├── test_shard_23_of_50.log ├── test_shard_23_of_50.xml ├── test_shard_24_of_50.cache_status ├── test_shard_24_of_50.log ├── test_shard_24_of_50.xml ├── test_shard_25_of_50.cache_status ├── test_shard_25_of_50.log ├── test_shard_25_of_50.xml ├── test_shard_26_of_50.cache_status ├── test_shard_26_of_50.log ├── test_shard_26_of_50.xml ├── test_shard_27_of_50.cache_status ├── test_shard_27_of_50.log ├── test_shard_27_of_50.xml ├── test_shard_28_of_50.cache_status ├── test_shard_28_of_50.log ├── test_shard_28_of_50.xml ├── test_shard_29_of_50.cache_status ├── test_shard_29_of_50.log ├── test_shard_29_of_50.xml ├── test_shard_2_of_50.cache_status ├── test_shard_2_of_50.log ├── test_shard_2_of_50.xml ├── test_shard_30_of_50.cache_status ├── test_shard_30_of_50.log ├── test_shard_30_of_50.xml ├── test_shard_31_of_50.cache_status ├── test_shard_31_of_50.log ├── test_shard_31_of_50.xml ├── test_shard_32_of_50.cache_status ├── test_shard_32_of_50.log ├── test_shard_32_of_50.xml ├── test_shard_33_of_50.cache_status ├── test_shard_33_of_50.log ├── test_shard_33_of_50.xml ├── test_shard_34_of_50.cache_status ├── test_shard_34_of_50.log ├── test_shard_34_of_50.xml ├── test_shard_35_of_50.cache_status ├── test_shard_35_of_50.log ├── test_shard_35_of_50.xml ├── test_shard_36_of_50.cache_status ├── test_shard_36_of_50.log ├── test_shard_36_of_50.xml ├── test_shard_37_of_50.cache_status ├── test_shard_37_of_50.log ├── test_shard_37_of_50.xml ├── test_shard_38_of_50.cache_status ├── test_shard_38_of_50.log ├── test_shard_38_of_50.xml ├── test_shard_39_of_50.cache_status ├── test_shard_39_of_50.log ├── test_shard_39_of_50.xml ├── test_shard_3_of_50.cache_status ├── test_shard_3_of_50.log ├── test_shard_3_of_50.xml ├── test_shard_40_of_50.cache_status ├── test_shard_40_of_50.log ├── test_shard_40_of_50.xml ├── test_shard_41_of_50.cache_status ├── test_shard_41_of_50.log ├── test_shard_41_of_50.xml ├── test_shard_42_of_50.cache_status ├── test_shard_42_of_50.log ├── test_shard_42_of_50.xml ├── test_shard_43_of_50.cache_status ├── test_shard_43_of_50.log ├── test_shard_43_of_50.xml ├── test_shard_44_of_50.cache_status ├── test_shard_44_of_50.log ├── test_shard_44_of_50.xml ├── test_shard_45_of_50.cache_status ├── test_shard_45_of_50.log ├── test_shard_45_of_50.xml ├── test_shard_46_of_50.cache_status ├── test_shard_46_of_50.log ├── test_shard_46_of_50.xml ├── test_shard_47_of_50.cache_status ├── test_shard_47_of_50.log ├── test_shard_47_of_50.xml ├── test_shard_48_of_50.cache_status ├── test_shard_48_of_50.log ├── test_shard_48_of_50.xml ├── test_shard_49_of_50.cache_status ├── test_shard_49_of_50.log ├── test_shard_49_of_50.xml ├── test_shard_4_of_50.cache_status ├── test_shard_4_of_50.log ├── test_shard_4_of_50.xml ├── test_shard_50_of_50.cache_status ├── test_shard_50_of_50.log ├── test_shard_50_of_50.xml ├── test_shard_5_of_50.cache_status ├── test_shard_5_of_50.log ├── test_shard_5_of_50.xml ├── test_shard_6_of_50.cache_status ├── test_shard_6_of_50.log ├── test_shard_6_of_50.xml ├── test_shard_7_of_50.cache_status ├── test_shard_7_of_50.log ├── test_shard_7_of_50.xml ├── test_shard_8_of_50.cache_status ├── test_shard_8_of_50.log ├── test_shard_8_of_50.xml ├── test_shard_9_of_50.cache_status ├── test_shard_9_of_50.log └── test_shard_9_of_50.xml ├── batchtospace_op_test ├── test.cache_status ├── test.log └── test.xml ├── bcast_ops_test ├── test.cache_status ├── test.log └── test.xml ├── benchmark_test ├── test.cache_status ├── test.log └── test.xml ├── bias_op_test ├── test.cache_status ├── test.log └── test.xml ├── bitcast_op_test ├── test.cache_status ├── test.log └── test.xml ├── candidate_sampler_ops_test ├── test.cache_status ├── test.log └── test.xml ├── cast_op_test ├── test.cache_status ├── test.log └── test.xml ├── check_ops_test ├── test.cache_status ├── test.log └── test.xml ├── cholesky_op_test ├── test.cache_status ├── test.log └── test.xml ├── clip_ops_test ├── test.cache_status ├── test.log └── test.xml ├── concat_op_test ├── test.cache_status ├── test.log └── test.xml ├── constant_op_test ├── test.cache_status ├── test.log └── test.xml ├── control_flow_ops_py_test ├── test.cache_status └── test.log ├── conv_ops_3d_test ├── test_shard_10_of_50.cache_status ├── test_shard_10_of_50.log ├── test_shard_10_of_50.xml ├── test_shard_11_of_50.cache_status ├── test_shard_11_of_50.log ├── test_shard_11_of_50.xml ├── test_shard_12_of_50.cache_status ├── test_shard_12_of_50.log ├── test_shard_12_of_50.xml ├── test_shard_13_of_50.cache_status ├── test_shard_13_of_50.log ├── test_shard_13_of_50.xml ├── test_shard_14_of_50.cache_status ├── test_shard_14_of_50.log ├── test_shard_14_of_50.xml ├── test_shard_15_of_50.cache_status ├── test_shard_15_of_50.log ├── test_shard_15_of_50.xml ├── test_shard_16_of_50.cache_status ├── test_shard_16_of_50.log ├── test_shard_16_of_50.xml ├── test_shard_17_of_50.cache_status ├── test_shard_17_of_50.log ├── test_shard_17_of_50.xml ├── test_shard_18_of_50.cache_status ├── test_shard_18_of_50.log ├── test_shard_18_of_50.xml ├── test_shard_19_of_50.cache_status ├── test_shard_19_of_50.log ├── test_shard_19_of_50.xml ├── test_shard_1_of_50.cache_status ├── test_shard_1_of_50.log ├── test_shard_1_of_50.xml ├── test_shard_20_of_50.cache_status ├── test_shard_20_of_50.log ├── test_shard_20_of_50.xml ├── test_shard_21_of_50.cache_status ├── test_shard_21_of_50.log ├── test_shard_21_of_50.xml ├── test_shard_22_of_50.cache_status ├── test_shard_22_of_50.log ├── test_shard_22_of_50.xml ├── test_shard_23_of_50.cache_status ├── test_shard_23_of_50.log ├── test_shard_23_of_50.xml ├── test_shard_24_of_50.cache_status ├── test_shard_24_of_50.log ├── test_shard_24_of_50.xml ├── test_shard_25_of_50.cache_status ├── test_shard_25_of_50.log ├── test_shard_25_of_50.xml ├── test_shard_26_of_50.cache_status ├── test_shard_26_of_50.log ├── test_shard_26_of_50.xml ├── test_shard_27_of_50.cache_status ├── test_shard_27_of_50.log ├── test_shard_27_of_50.xml ├── test_shard_28_of_50.cache_status ├── test_shard_28_of_50.log ├── test_shard_28_of_50.xml ├── test_shard_29_of_50.cache_status ├── test_shard_29_of_50.log ├── test_shard_29_of_50.xml ├── test_shard_2_of_50.cache_status ├── test_shard_2_of_50.log ├── test_shard_2_of_50.xml ├── test_shard_30_of_50.cache_status ├── test_shard_30_of_50.log ├── test_shard_30_of_50.xml ├── test_shard_31_of_50.cache_status ├── test_shard_31_of_50.log ├── test_shard_31_of_50.xml ├── test_shard_32_of_50.cache_status ├── test_shard_32_of_50.log ├── test_shard_32_of_50.xml ├── test_shard_33_of_50.cache_status ├── test_shard_33_of_50.log ├── test_shard_33_of_50.xml ├── test_shard_34_of_50.cache_status ├── test_shard_34_of_50.log ├── test_shard_34_of_50.xml ├── test_shard_35_of_50.cache_status ├── test_shard_35_of_50.log ├── test_shard_35_of_50.xml ├── test_shard_36_of_50.cache_status ├── test_shard_36_of_50.log ├── test_shard_36_of_50.xml ├── test_shard_37_of_50.cache_status ├── test_shard_37_of_50.log ├── test_shard_37_of_50.xml ├── test_shard_38_of_50.cache_status ├── test_shard_38_of_50.log ├── test_shard_38_of_50.xml ├── test_shard_39_of_50.cache_status ├── test_shard_39_of_50.log ├── test_shard_39_of_50.xml ├── test_shard_3_of_50.cache_status ├── test_shard_3_of_50.log ├── test_shard_3_of_50.xml ├── test_shard_40_of_50.cache_status ├── test_shard_40_of_50.log ├── test_shard_40_of_50.xml ├── test_shard_41_of_50.cache_status ├── test_shard_41_of_50.log ├── test_shard_41_of_50.xml ├── test_shard_42_of_50.cache_status ├── test_shard_42_of_50.log ├── test_shard_42_of_50.xml ├── test_shard_43_of_50.cache_status ├── test_shard_43_of_50.log ├── test_shard_43_of_50.xml ├── test_shard_44_of_50.cache_status ├── test_shard_44_of_50.log ├── test_shard_44_of_50.xml ├── test_shard_45_of_50.cache_status ├── test_shard_45_of_50.log ├── test_shard_45_of_50.xml ├── test_shard_46_of_50.cache_status ├── test_shard_46_of_50.log ├── test_shard_46_of_50.xml ├── test_shard_47_of_50.cache_status ├── test_shard_47_of_50.log ├── test_shard_47_of_50.xml ├── test_shard_48_of_50.cache_status ├── test_shard_48_of_50.log ├── test_shard_48_of_50.xml ├── test_shard_49_of_50.cache_status ├── test_shard_49_of_50.log ├── test_shard_49_of_50.xml ├── test_shard_4_of_50.cache_status ├── test_shard_4_of_50.log ├── test_shard_4_of_50.xml ├── test_shard_50_of_50.cache_status ├── test_shard_50_of_50.log ├── test_shard_50_of_50.xml ├── test_shard_5_of_50.cache_status ├── test_shard_5_of_50.log ├── test_shard_5_of_50.xml ├── test_shard_6_of_50.cache_status ├── test_shard_6_of_50.log ├── test_shard_6_of_50.xml ├── test_shard_7_of_50.cache_status ├── test_shard_7_of_50.log ├── test_shard_7_of_50.xml ├── test_shard_8_of_50.cache_status ├── test_shard_8_of_50.log ├── test_shard_8_of_50.xml ├── test_shard_9_of_50.cache_status ├── test_shard_9_of_50.log └── test_shard_9_of_50.xml ├── conv_ops_test ├── test.cache_status ├── test.log └── test.xml ├── cross_grad_test ├── test.cache_status ├── test.log └── test.xml ├── ctc_decoder_ops_test ├── test.cache_status ├── test.log └── test.xml ├── ctc_loss_op_test ├── test.cache_status ├── test.log └── test.xml ├── cwise_ops_test ├── test_shard_10_of_50.cache_status ├── test_shard_10_of_50.log ├── test_shard_10_of_50.xml ├── test_shard_11_of_50.cache_status ├── test_shard_11_of_50.log ├── test_shard_11_of_50.xml ├── test_shard_12_of_50.cache_status ├── test_shard_12_of_50.log ├── test_shard_12_of_50.xml ├── test_shard_13_of_50.cache_status ├── test_shard_13_of_50.log ├── test_shard_13_of_50.xml ├── test_shard_14_of_50.cache_status ├── test_shard_14_of_50.log ├── test_shard_14_of_50.xml ├── test_shard_15_of_50.cache_status ├── test_shard_15_of_50.log ├── test_shard_15_of_50.xml ├── test_shard_16_of_50.cache_status ├── test_shard_16_of_50.log ├── test_shard_16_of_50.xml ├── test_shard_17_of_50.cache_status ├── test_shard_17_of_50.log ├── test_shard_17_of_50.xml ├── test_shard_18_of_50.cache_status ├── test_shard_18_of_50.log ├── test_shard_18_of_50.xml ├── test_shard_19_of_50.cache_status ├── test_shard_19_of_50.log ├── test_shard_19_of_50.xml ├── test_shard_1_of_50.cache_status ├── test_shard_1_of_50.log ├── test_shard_1_of_50.xml ├── test_shard_20_of_50.cache_status ├── test_shard_20_of_50.log ├── test_shard_20_of_50.xml ├── test_shard_21_of_50.cache_status ├── test_shard_21_of_50.log ├── test_shard_21_of_50.xml ├── test_shard_22_of_50.cache_status ├── test_shard_22_of_50.log ├── test_shard_22_of_50.xml ├── test_shard_23_of_50.cache_status ├── test_shard_23_of_50.log ├── test_shard_23_of_50.xml ├── test_shard_24_of_50.cache_status ├── test_shard_24_of_50.log ├── test_shard_24_of_50.xml ├── test_shard_25_of_50.cache_status ├── test_shard_25_of_50.log ├── test_shard_25_of_50.xml ├── test_shard_26_of_50.cache_status ├── test_shard_26_of_50.log ├── test_shard_26_of_50.xml ├── test_shard_27_of_50.cache_status ├── test_shard_27_of_50.log ├── test_shard_27_of_50.xml ├── test_shard_28_of_50.cache_status ├── test_shard_28_of_50.log ├── test_shard_28_of_50.xml ├── test_shard_29_of_50.cache_status ├── test_shard_29_of_50.log ├── test_shard_29_of_50.xml ├── test_shard_2_of_50.cache_status ├── test_shard_2_of_50.log ├── test_shard_2_of_50.xml ├── test_shard_30_of_50.cache_status ├── test_shard_30_of_50.log ├── test_shard_30_of_50.xml ├── test_shard_31_of_50.cache_status ├── test_shard_31_of_50.log ├── test_shard_31_of_50.xml ├── test_shard_32_of_50.cache_status ├── test_shard_32_of_50.log ├── test_shard_32_of_50.xml ├── test_shard_33_of_50.cache_status ├── test_shard_33_of_50.log ├── test_shard_33_of_50.xml ├── test_shard_34_of_50.cache_status ├── test_shard_34_of_50.log ├── test_shard_34_of_50.xml ├── test_shard_35_of_50.cache_status ├── test_shard_35_of_50.log ├── test_shard_35_of_50.xml ├── test_shard_36_of_50.cache_status ├── test_shard_36_of_50.log ├── test_shard_36_of_50.xml ├── test_shard_37_of_50.cache_status ├── test_shard_37_of_50.log ├── test_shard_37_of_50.xml ├── test_shard_38_of_50.cache_status ├── test_shard_38_of_50.log ├── test_shard_38_of_50.xml ├── test_shard_39_of_50.cache_status ├── test_shard_39_of_50.log ├── test_shard_39_of_50.xml ├── test_shard_3_of_50.cache_status ├── test_shard_3_of_50.log ├── test_shard_3_of_50.xml ├── test_shard_40_of_50.cache_status ├── test_shard_40_of_50.log ├── test_shard_40_of_50.xml ├── test_shard_41_of_50.cache_status ├── test_shard_41_of_50.log ├── test_shard_41_of_50.xml ├── test_shard_42_of_50.cache_status ├── test_shard_42_of_50.log ├── test_shard_42_of_50.xml ├── test_shard_43_of_50.cache_status ├── test_shard_43_of_50.log ├── test_shard_43_of_50.xml ├── test_shard_44_of_50.cache_status ├── test_shard_44_of_50.log ├── test_shard_44_of_50.xml ├── test_shard_45_of_50.cache_status ├── test_shard_45_of_50.log ├── test_shard_45_of_50.xml ├── test_shard_46_of_50.cache_status ├── test_shard_46_of_50.log ├── test_shard_46_of_50.xml ├── test_shard_47_of_50.cache_status ├── test_shard_47_of_50.log ├── test_shard_47_of_50.xml ├── test_shard_48_of_50.cache_status ├── test_shard_48_of_50.log ├── test_shard_48_of_50.xml ├── test_shard_49_of_50.cache_status ├── test_shard_49_of_50.log ├── test_shard_49_of_50.xml ├── test_shard_4_of_50.cache_status ├── test_shard_4_of_50.log ├── test_shard_4_of_50.xml ├── test_shard_50_of_50.cache_status ├── test_shard_50_of_50.log ├── test_shard_50_of_50.xml ├── test_shard_5_of_50.cache_status ├── test_shard_5_of_50.log ├── test_shard_5_of_50.xml ├── test_shard_6_of_50.cache_status ├── test_shard_6_of_50.log ├── test_shard_6_of_50.xml ├── test_shard_7_of_50.cache_status ├── test_shard_7_of_50.log ├── test_shard_7_of_50.xml ├── test_shard_8_of_50.cache_status ├── test_shard_8_of_50.log ├── test_shard_8_of_50.xml ├── test_shard_9_of_50.cache_status ├── test_shard_9_of_50.log └── test_shard_9_of_50.xml ├── decode_csv_op_test ├── test.cache_status ├── test.log └── test.xml ├── decode_png_op_test ├── test.cache_status ├── test.log └── test.xml ├── decode_raw_op_test ├── test.cache_status ├── test.log └── test.xml ├── denormal_test ├── test.cache_status ├── test.log └── test.xml ├── dense_update_ops_no_tsan_test ├── test.cache_status ├── test.log └── test.xml ├── dense_update_ops_test ├── test.cache_status ├── test.log └── test.xml ├── depthtospace_op_test ├── test.cache_status ├── test.log └── test.xml ├── depthwise_conv_op_test ├── test.cache_status └── test.log ├── determinant_op_test ├── test.cache_status ├── test.log └── test.xml ├── diag_op_test ├── test.cache_status └── test.log ├── division_future_test ├── test.cache_status ├── test.log └── test.xml ├── division_past_test ├── test.cache_status └── test.log ├── dynamic_partition_op_test ├── test.cache_status ├── test.log └── test.xml ├── dynamic_stitch_op_test ├── test.cache_status ├── test.log └── test.xml ├── edit_distance_op_test ├── test.cache_status ├── test.log └── test.xml ├── embedding_ops_test ├── test_shard_10_of_50.cache_status ├── test_shard_10_of_50.log ├── test_shard_10_of_50.xml ├── test_shard_11_of_50.cache_status ├── test_shard_11_of_50.log ├── test_shard_11_of_50.xml ├── test_shard_12_of_50.cache_status ├── test_shard_12_of_50.log ├── test_shard_12_of_50.xml ├── test_shard_13_of_50.cache_status ├── test_shard_13_of_50.log ├── test_shard_13_of_50.xml ├── test_shard_14_of_50.cache_status ├── test_shard_14_of_50.log ├── test_shard_14_of_50.xml ├── test_shard_15_of_50.cache_status ├── test_shard_15_of_50.log ├── test_shard_15_of_50.xml ├── test_shard_16_of_50.cache_status ├── test_shard_16_of_50.log ├── test_shard_16_of_50.xml ├── test_shard_17_of_50.cache_status ├── test_shard_17_of_50.log ├── test_shard_17_of_50.xml ├── test_shard_18_of_50.cache_status ├── test_shard_18_of_50.log ├── test_shard_18_of_50.xml ├── test_shard_19_of_50.cache_status ├── test_shard_19_of_50.log ├── test_shard_19_of_50.xml ├── test_shard_1_of_50.cache_status ├── test_shard_1_of_50.log ├── test_shard_1_of_50.xml ├── test_shard_20_of_50.cache_status ├── test_shard_20_of_50.log ├── test_shard_20_of_50.xml ├── test_shard_21_of_50.cache_status ├── test_shard_21_of_50.log ├── test_shard_21_of_50.xml ├── test_shard_22_of_50.cache_status ├── test_shard_22_of_50.log ├── test_shard_22_of_50.xml ├── test_shard_23_of_50.cache_status ├── test_shard_23_of_50.log ├── test_shard_23_of_50.xml ├── test_shard_24_of_50.cache_status ├── test_shard_24_of_50.log ├── test_shard_24_of_50.xml ├── test_shard_25_of_50.cache_status ├── test_shard_25_of_50.log ├── test_shard_25_of_50.xml ├── test_shard_26_of_50.cache_status ├── test_shard_26_of_50.log ├── test_shard_26_of_50.xml ├── test_shard_27_of_50.cache_status ├── test_shard_27_of_50.log ├── test_shard_27_of_50.xml ├── test_shard_28_of_50.cache_status ├── test_shard_28_of_50.log ├── test_shard_28_of_50.xml ├── test_shard_29_of_50.cache_status ├── test_shard_29_of_50.log ├── test_shard_29_of_50.xml ├── test_shard_2_of_50.cache_status ├── test_shard_2_of_50.log ├── test_shard_2_of_50.xml ├── test_shard_30_of_50.cache_status ├── test_shard_30_of_50.log ├── test_shard_30_of_50.xml ├── test_shard_31_of_50.cache_status ├── test_shard_31_of_50.log ├── test_shard_31_of_50.xml ├── test_shard_32_of_50.cache_status ├── test_shard_32_of_50.log ├── test_shard_32_of_50.xml ├── test_shard_33_of_50.cache_status ├── test_shard_33_of_50.log ├── test_shard_33_of_50.xml ├── test_shard_34_of_50.cache_status ├── test_shard_34_of_50.log ├── test_shard_34_of_50.xml ├── test_shard_35_of_50.cache_status ├── test_shard_35_of_50.log ├── test_shard_35_of_50.xml ├── test_shard_36_of_50.cache_status ├── test_shard_36_of_50.log ├── test_shard_36_of_50.xml ├── test_shard_37_of_50.cache_status ├── test_shard_37_of_50.log ├── test_shard_37_of_50.xml ├── test_shard_38_of_50.cache_status ├── test_shard_38_of_50.log ├── test_shard_38_of_50.xml ├── test_shard_39_of_50.cache_status ├── test_shard_39_of_50.log ├── test_shard_39_of_50.xml ├── test_shard_3_of_50.cache_status ├── test_shard_3_of_50.log ├── test_shard_3_of_50.xml ├── test_shard_40_of_50.cache_status ├── test_shard_40_of_50.log ├── test_shard_40_of_50.xml ├── test_shard_41_of_50.cache_status ├── test_shard_41_of_50.log ├── test_shard_41_of_50.xml ├── test_shard_42_of_50.cache_status ├── test_shard_42_of_50.log ├── test_shard_42_of_50.xml ├── test_shard_43_of_50.cache_status ├── test_shard_43_of_50.log ├── test_shard_43_of_50.xml ├── test_shard_44_of_50.cache_status ├── test_shard_44_of_50.log ├── test_shard_44_of_50.xml ├── test_shard_45_of_50.cache_status ├── test_shard_45_of_50.log ├── test_shard_45_of_50.xml ├── test_shard_46_of_50.cache_status ├── test_shard_46_of_50.log ├── test_shard_46_of_50.xml ├── test_shard_47_of_50.cache_status ├── test_shard_47_of_50.log ├── test_shard_47_of_50.xml ├── test_shard_48_of_50.cache_status ├── test_shard_48_of_50.log ├── test_shard_48_of_50.xml ├── test_shard_49_of_50.cache_status ├── test_shard_49_of_50.log ├── test_shard_49_of_50.xml ├── test_shard_4_of_50.cache_status ├── test_shard_4_of_50.log ├── test_shard_4_of_50.xml ├── test_shard_50_of_50.cache_status ├── test_shard_50_of_50.log ├── test_shard_50_of_50.xml ├── test_shard_5_of_50.cache_status ├── test_shard_5_of_50.log ├── test_shard_5_of_50.xml ├── test_shard_6_of_50.cache_status ├── test_shard_6_of_50.log ├── test_shard_6_of_50.xml ├── test_shard_7_of_50.cache_status ├── test_shard_7_of_50.log ├── test_shard_7_of_50.xml ├── test_shard_8_of_50.cache_status ├── test_shard_8_of_50.log ├── test_shard_8_of_50.xml ├── test_shard_9_of_50.cache_status ├── test_shard_9_of_50.log └── test_shard_9_of_50.xml ├── extract_image_patches_op_test ├── test.cache_status ├── test.log └── test.xml ├── fft_ops_test ├── test.cache_status ├── test.log └── test.xml ├── fifo_queue_test ├── test.cache_status ├── test.log └── test.xml ├── functional_ops_test ├── test.cache_status └── test.log ├── gather_nd_op_test ├── test.cache_status ├── test.log └── test.xml ├── gather_op_test ├── test.cache_status ├── test.log └── test.xml ├── gradient_correctness_test ├── test.cache_status ├── test.log └── test.xml ├── identity_op_py_test ├── test.cache_status ├── test.log └── test.xml ├── in_topk_op_test ├── test.cache_status ├── test.log └── test.xml ├── init_ops_test ├── test.cache_status ├── test.log └── test.xml ├── io_ops_test ├── test.cache_status ├── test.log └── test.xml ├── linalg_grad_test ├── test_shard_10_of_50.cache_status ├── test_shard_10_of_50.log ├── test_shard_10_of_50.xml ├── test_shard_11_of_50.cache_status ├── test_shard_11_of_50.log ├── test_shard_11_of_50.xml ├── test_shard_12_of_50.cache_status ├── test_shard_12_of_50.log ├── test_shard_12_of_50.xml ├── test_shard_13_of_50.cache_status ├── test_shard_13_of_50.log ├── test_shard_13_of_50.xml ├── test_shard_14_of_50.cache_status ├── test_shard_14_of_50.log ├── test_shard_14_of_50.xml ├── test_shard_15_of_50.cache_status ├── test_shard_15_of_50.log ├── test_shard_15_of_50.xml ├── test_shard_16_of_50.cache_status ├── test_shard_16_of_50.log ├── test_shard_16_of_50.xml ├── test_shard_17_of_50.cache_status ├── test_shard_17_of_50.log ├── test_shard_17_of_50.xml ├── test_shard_18_of_50.cache_status ├── test_shard_18_of_50.log ├── test_shard_18_of_50.xml ├── test_shard_19_of_50.cache_status ├── test_shard_19_of_50.log ├── test_shard_19_of_50.xml ├── test_shard_1_of_50.cache_status ├── test_shard_1_of_50.log ├── test_shard_1_of_50.xml ├── test_shard_20_of_50.cache_status ├── test_shard_20_of_50.log ├── test_shard_20_of_50.xml ├── test_shard_21_of_50.cache_status ├── test_shard_21_of_50.log ├── test_shard_21_of_50.xml ├── test_shard_22_of_50.cache_status ├── test_shard_22_of_50.log ├── test_shard_22_of_50.xml ├── test_shard_23_of_50.cache_status ├── test_shard_23_of_50.log ├── test_shard_23_of_50.xml ├── test_shard_24_of_50.cache_status ├── test_shard_24_of_50.log ├── test_shard_24_of_50.xml ├── test_shard_25_of_50.cache_status ├── test_shard_25_of_50.log ├── test_shard_25_of_50.xml ├── test_shard_26_of_50.cache_status ├── test_shard_26_of_50.log ├── test_shard_26_of_50.xml ├── test_shard_27_of_50.cache_status ├── test_shard_27_of_50.log ├── test_shard_27_of_50.xml ├── test_shard_28_of_50.cache_status ├── test_shard_28_of_50.log ├── test_shard_28_of_50.xml ├── test_shard_29_of_50.cache_status ├── test_shard_29_of_50.log ├── test_shard_29_of_50.xml ├── test_shard_2_of_50.cache_status ├── test_shard_2_of_50.log ├── test_shard_2_of_50.xml ├── test_shard_30_of_50.cache_status ├── test_shard_30_of_50.log ├── test_shard_30_of_50.xml ├── test_shard_31_of_50.cache_status ├── test_shard_31_of_50.log ├── test_shard_31_of_50.xml ├── test_shard_32_of_50.cache_status ├── test_shard_32_of_50.log ├── test_shard_32_of_50.xml ├── test_shard_33_of_50.cache_status ├── test_shard_33_of_50.log ├── test_shard_33_of_50.xml ├── test_shard_34_of_50.cache_status ├── test_shard_34_of_50.log ├── test_shard_34_of_50.xml ├── test_shard_35_of_50.cache_status ├── test_shard_35_of_50.log ├── test_shard_35_of_50.xml ├── test_shard_36_of_50.cache_status ├── test_shard_36_of_50.log ├── test_shard_36_of_50.xml ├── test_shard_37_of_50.cache_status ├── test_shard_37_of_50.log ├── test_shard_37_of_50.xml ├── test_shard_38_of_50.cache_status ├── test_shard_38_of_50.log ├── test_shard_38_of_50.xml ├── test_shard_39_of_50.cache_status ├── test_shard_39_of_50.log ├── test_shard_39_of_50.xml ├── test_shard_3_of_50.cache_status ├── test_shard_3_of_50.log ├── test_shard_3_of_50.xml ├── test_shard_40_of_50.cache_status ├── test_shard_40_of_50.log ├── test_shard_40_of_50.xml ├── test_shard_41_of_50.cache_status ├── test_shard_41_of_50.log ├── test_shard_41_of_50.xml ├── test_shard_42_of_50.cache_status ├── test_shard_42_of_50.log ├── test_shard_42_of_50.xml ├── test_shard_43_of_50.cache_status ├── test_shard_43_of_50.log ├── test_shard_43_of_50.xml ├── test_shard_44_of_50.cache_status ├── test_shard_44_of_50.log ├── test_shard_44_of_50.xml ├── test_shard_45_of_50.cache_status ├── test_shard_45_of_50.log ├── test_shard_45_of_50.xml ├── test_shard_46_of_50.cache_status ├── test_shard_46_of_50.log ├── test_shard_46_of_50.xml ├── test_shard_47_of_50.cache_status ├── test_shard_47_of_50.log ├── test_shard_47_of_50.xml ├── test_shard_48_of_50.cache_status ├── test_shard_48_of_50.log ├── test_shard_48_of_50.xml ├── test_shard_49_of_50.cache_status ├── test_shard_49_of_50.log ├── test_shard_49_of_50.xml ├── test_shard_4_of_50.cache_status ├── test_shard_4_of_50.log ├── test_shard_4_of_50.xml ├── test_shard_50_of_50.cache_status ├── test_shard_50_of_50.log ├── test_shard_50_of_50.xml ├── test_shard_5_of_50.cache_status ├── test_shard_5_of_50.log ├── test_shard_5_of_50.xml ├── test_shard_6_of_50.cache_status ├── test_shard_6_of_50.log ├── test_shard_6_of_50.xml ├── test_shard_7_of_50.cache_status ├── test_shard_7_of_50.log ├── test_shard_7_of_50.xml ├── test_shard_8_of_50.cache_status ├── test_shard_8_of_50.log ├── test_shard_8_of_50.xml ├── test_shard_9_of_50.cache_status ├── test_shard_9_of_50.log └── test_shard_9_of_50.xml ├── linalg_ops_test ├── test.cache_status ├── test.log └── test.xml ├── listdiff_op_test ├── test.cache_status ├── test.log └── test.xml ├── logging_ops_test ├── test.cache_status ├── test.log └── test.xml ├── lrn_op_test ├── test.cache_status ├── test.log └── test.xml ├── matmul_op_test ├── test.cache_status ├── test.log └── test.xml ├── matrix_inverse_op_test ├── test.cache_status ├── test.log └── test.xml ├── matrix_solve_ls_op_test ├── test.cache_status ├── test.log └── test.xml ├── matrix_solve_op_test ├── test.cache_status ├── test.log └── test.xml ├── matrix_triangular_solve_op_test ├── test.cache_status ├── test.log └── test.xml ├── morphological_ops_test ├── test.cache_status └── test.log ├── multinomial_op_test ├── test.cache_status └── test.log ├── numerics_test ├── test.cache_status ├── test.log └── test.xml ├── one_hot_op_test ├── test.cache_status ├── test.log └── test.xml ├── pack_op_test ├── test.cache_status ├── test.log └── test.xml ├── pad_op_test ├── test.cache_status ├── test.log └── test.xml ├── padding_fifo_queue_test ├── test.cache_status ├── test.log └── test.xml ├── parameterized_truncated_normal_op_test ├── test.cache_status ├── test.log └── test.xml ├── parsing_ops_test ├── test.cache_status ├── test.log └── test.xml ├── partitioned_variables_test ├── test.cache_status ├── test.log └── test.xml ├── pooling_ops_3d_test ├── test.cache_status └── test.log ├── pooling_ops_test ├── test.cache_status ├── test.log └── test.xml ├── priority_queue_test ├── test.cache_status ├── test.log └── test.xml ├── py_func_test ├── test.cache_status ├── test.log └── test.xml ├── random_crop_test ├── test.cache_status ├── test.log └── test.xml ├── random_gamma_test ├── test.cache_status ├── test.log └── test.xml ├── random_ops_test ├── test.cache_status └── test.log ├── random_shuffle_queue_test ├── test.cache_status ├── test.log └── test.xml ├── reader_ops_test ├── test.cache_status ├── test.log └── test.xml ├── reduce_join_op_test ├── test.cache_status ├── test.log └── test.xml ├── reduction_ops_test ├── test.cache_status └── test.log ├── relu_op_test ├── test.cache_status ├── test.log └── test.xml ├── reshape_op_test ├── test.cache_status ├── test.log └── test.xml ├── reverse_sequence_op_test ├── test.cache_status └── test.log ├── rnn_cell_test ├── test.cache_status ├── test.log └── test.xml ├── rnn_test ├── test.cache_status └── test.log ├── save_restore_ops_test ├── test.cache_status ├── test.log └── test.xml ├── scalar_strict_test ├── test.cache_status ├── test.log └── test.xml ├── scan_ops_test ├── test.cache_status └── test.log ├── scatter_ops_test ├── test.cache_status ├── test.log └── test.xml ├── segment_reduction_ops_test ├── test.cache_status ├── test.log └── test.xml ├── self_adjoint_eig_op_test ├── test.cache_status ├── test.log └── test.xml ├── seq2seq_test ├── test.cache_status └── test.log ├── session_ops_test ├── test.cache_status ├── test.log └── test.xml ├── shape_ops_test ├── test.cache_status ├── test.log └── test.xml ├── slice_op_test ├── test.cache_status └── test.log ├── softmax_op_test ├── test.cache_status ├── test.log └── test.xml ├── softplus_op_test ├── test.cache_status ├── test.log └── test.xml ├── softsign_op_test ├── test.cache_status ├── test.log └── test.xml ├── spacetobatch_op_test ├── test.cache_status ├── test.log └── test.xml ├── spacetodepth_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_add_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_concat_op_test ├── test.cache_status └── test.log ├── sparse_matmul_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_ops_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_reorder_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_reshape_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_serialization_ops_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_split_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_tensor_dense_matmul_grad_test ├── test.cache_status └── test.log ├── sparse_tensor_dense_matmul_op_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_to_dense_op_py_test ├── test.cache_status ├── test.log └── test.xml ├── sparse_xent_op_test ├── test.cache_status └── test.log ├── sparsemask_op_test ├── test.cache_status ├── test.log └── test.xml ├── split_op_test ├── test.cache_status ├── test.log └── test.xml ├── stack_ops_test ├── test.cache_status ├── test.log └── test.xml ├── string_join_op_test ├── test.cache_status ├── test.log └── test.xml ├── string_to_hash_bucket_op_test ├── test.cache_status ├── test.log └── test.xml ├── string_to_number_op_test ├── test.cache_status ├── test.log └── test.xml ├── summary_audio_op_test ├── test.cache_status ├── test.log └── test.xml ├── summary_image_op_test ├── test.cache_status ├── test.log └── test.xml ├── summary_ops_test ├── test.cache_status ├── test.log └── test.xml ├── template_test ├── test.cache_status ├── test.log └── test.xml ├── tensor_array_ops_test ├── test.cache_status └── test.log ├── topk_op_test ├── test.cache_status ├── test.log └── test.xml ├── trace_op_test ├── test.cache_status ├── test.log └── test.xml ├── transpose_op_test ├── test.cache_status ├── test.log └── test.xml ├── unique_op_test ├── test.cache_status ├── test.log └── test.xml ├── unpack_op_test ├── test.cache_status ├── test.log └── test.xml ├── variable_ops_test ├── test.cache_status ├── test.log └── test.xml ├── variable_scope_test ├── test.cache_status ├── test.log └── test.xml ├── variables_test ├── test.cache_status ├── test.log └── test.xml ├── where_op_test ├── test.cache_status ├── test.log └── test.xml ├── xent_op_test ├── test.cache_status ├── test.log └── test.xml └── zero_division_test ├── test.cache_status ├── test.log └── test.xml /.gitignore: -------------------------------------------------------------------------------- 1 | archive/ 2 | bin/ 3 | -------------------------------------------------------------------------------- /GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/GUIDE.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/README.md -------------------------------------------------------------------------------- /TENSORFLOW_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/TENSORFLOW_LICENSE -------------------------------------------------------------------------------- /benchmarks/inceptionv3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/benchmarks/inceptionv3/README.md -------------------------------------------------------------------------------- /benchmarks/inceptionv3/classify_image_timed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/benchmarks/inceptionv3/classify_image_timed.py -------------------------------------------------------------------------------- /old_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/old_readme.md -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/console_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/console_output.txt -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log -------------------------------------------------------------------------------- /testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python27/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/console_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/console_output.txt -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/argmax_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/array_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/as_string_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/attention_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/barrier_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batch_matmul_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/batchtospace_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bcast_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/benchmark_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bias_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/bitcast_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/candidate_sampler_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cast_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/check_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cholesky_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/clip_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/concat_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/constant_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/control_flow_ops_py_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/conv_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/cross_grad_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_decoder_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/ctc_loss_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_csv_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_png_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/decode_raw_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/denormal_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dense_update_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthtospace_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/depthwise_conv_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/determinant_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/diag_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_future_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/division_past_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_partition_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/dynamic_stitch_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/edit_distance_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fft_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/fifo_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/functional_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_nd_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gather_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/gradient_correctness_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/identity_op_py_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/in_topk_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/init_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/io_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/linalg_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/listdiff_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/logging_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/lrn_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matmul_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_inverse_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_ls_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/matrix_solve_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/morphological_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/multinomial_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/numerics_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/one_hot_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pack_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pad_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/padding_fifo_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/parsing_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/partitioned_variables_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_3d_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/pooling_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/priority_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/py_func_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_crop_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_gamma_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/random_shuffle_queue_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reader_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduce_join_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reduction_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/relu_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reshape_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/reverse_sequence_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_cell_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/rnn_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/save_restore_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scalar_strict_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scan_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/scatter_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/segment_reduction_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/self_adjoint_eig_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/seq2seq_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/session_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/shape_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/slice_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softmax_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softplus_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/softsign_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetobatch_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/spacetodepth_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_add_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_concat_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_matmul_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reorder_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_reshape_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_split_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_to_dense_op_py_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparse_xent_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/sparsemask_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/split_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/stack_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_join_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/string_to_number_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_audio_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_image_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/summary_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/template_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/tensor_array_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/topk_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/trace_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/transpose_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unique_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/unpack_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_ops_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variable_scope_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/variables_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/where_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.cache_status -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/xent_op_test/test.xml -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.log -------------------------------------------------------------------------------- /testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samjabrahams/tensorflow-on-raspberry-pi/HEAD/testlogs/python3/2016_07_17/tensorflow/python/kernel_tests/zero_division_test/test.xml --------------------------------------------------------------------------------