context_serialize.cpp 840 Bytes
Newer Older
Shucai Xiao's avatar
Shucai Xiao committed
1
2
3
4
5
6
7
#include <iostream>
#include <vector>
#include <migraphx/verify.hpp>
#include <migraphx/gpu/context.hpp>
#include <migraphx/context.hpp>
#include "test.hpp"

8
TEST_CASE(gpu_context_serialize)
Shucai Xiao's avatar
Shucai Xiao committed
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    migraphx::context ctx = migraphx::gpu::context{0, 3};

    auto v = ctx.to_value();
    EXPECT(v.size() == 2);

    EXPECT(v.contains("events"));
    EXPECT(v.at("events").without_key().to<std::size_t>() == 0);

    EXPECT(v.contains("streams"));
    EXPECT(v.at("streams").without_key().to<std::size_t>() == 3);

    migraphx::gpu::context g_ctx;
    g_ctx.from_value(v);

    auto v1 = g_ctx.to_value();
    EXPECT(v == v1);
}

28
29
30
31
32
33
TEST_CASE(context_queue)
{
    migraphx::context ctx = migraphx::gpu::context{0, 3};
    EXPECT(ctx.get_queue().get<hipStream_t>() != nullptr);
}

Shucai Xiao's avatar
Shucai Xiao committed
34
int main(int argc, const char* argv[]) { test::run(argc, argv); }