Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
composable_kernel_ROCM
Commits
fedb9211
Commit
fedb9211
authored
Dec 20, 2024
by
Ville Pietilä
Browse files
Fix failing test.
parent
f5e4438c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
test/utility/test_utility.cpp
test/utility/test_utility.cpp
+2
-2
No files found.
test/utility/test_utility.cpp
View file @
fedb9211
...
@@ -32,8 +32,8 @@ TEST(UtilityTests, PinnedHostMemoryAllocator_recycle_pinned_host_memory)
...
@@ -32,8 +32,8 @@ TEST(UtilityTests, PinnedHostMemoryAllocator_recycle_pinned_host_memory)
std
::
vector
<
int
,
PinnedHostMemoryAllocator
<
int
>>
v3
(
vSize
);
std
::
vector
<
int
,
PinnedHostMemoryAllocator
<
int
>>
v3
(
vSize
);
std
::
vector
<
int
,
PinnedHostMemoryAllocator
<
int
>>
v4
(
2
*
vSize
);
std
::
vector
<
int
,
PinnedHostMemoryAllocator
<
int
>>
v4
(
2
*
vSize
);
EXPECT_E
Q
(
v3
.
data
()
,
ptr1
);
EXPECT_
TRU
E
(
v3
.
data
()
!=
ptr1
);
EXPECT_E
Q
(
v4
.
data
()
,
ptr2
);
EXPECT_
TRU
E
(
v4
.
data
()
!=
ptr2
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment