Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 14, 2024
1 parent 6e5f3f7 commit 68f5d61
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions c_api/tests/c_api_interop_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,9 @@ TEST_F(CapiTest, TestCUDAImport) {

#ifdef TI_WITH_CUDA
TEST_F(CapiTest, TestCUDAStreamSet) {
void* temp_stream = nullptr;
void *temp_stream = nullptr;

ti_get_cuda_stream(&temp_stream)
EXPECT_EQ(temp_stream, nullptr);
ti_get_cuda_stream(&temp_stream) EXPECT_EQ(temp_stream, nullptr);

void *stream1 = reinterpret_cast<void *>(0x12345678);
void *stream2 = reinterpret_cast<void *>(0x87654321);
Expand Down

0 comments on commit 68f5d61

Please sign in to comment.