Home
last modified time | relevance | path

Searched refs:entire_volume_patch_row_major (Results 1 – 1 of 1) sorted by relevance

/external/eigen/unsupported/test/
Dcxx11_tensor_volume_patch.cpp60 Tensor<float, 6, RowMajor> entire_volume_patch_row_major; in test_entire_volume_patch() local
61entire_volume_patch_row_major = tensor_row_major.extract_volume_patches(patch_z, patch_y, patch_x); in test_entire_volume_patch()
62 VERIFY_IS_EQUAL(entire_volume_patch_row_major.dimension(0), batch); in test_entire_volume_patch()
63 VERIFY_IS_EQUAL(entire_volume_patch_row_major.dimension(1), patch_z * patch_y * patch_x); in test_entire_volume_patch()
64 VERIFY_IS_EQUAL(entire_volume_patch_row_major.dimension(2), patch_x); in test_entire_volume_patch()
65 VERIFY_IS_EQUAL(entire_volume_patch_row_major.dimension(3), patch_y); in test_entire_volume_patch()
66 VERIFY_IS_EQUAL(entire_volume_patch_row_major.dimension(4), patch_z); in test_entire_volume_patch()
67 VERIFY_IS_EQUAL(entire_volume_patch_row_major.dimension(5), depth); in test_entire_volume_patch()
97 … VERIFY_IS_EQUAL(entire_volume_patch_row_major(b, patchId, x, y, z, d), expected_row_major); in test_entire_volume_patch()