aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compute/skc/platforms/cl_12/block_pool_cl_12.h
blob: 6fa8a39ca00957c58a546344b4f163b1b447baf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can
 * be found in the LICENSE file.
 *
 */

#pragma once

//
//
//

#include "block_pool_cl.h"
#include "extent_cl_12.h"

//
// device side block pool
//

struct skc_block_pool
{
  union  skc_block_pool_size const * size;

  struct skc_extent_pdrw             blocks;
  struct skc_extent_pdrw             ids;
  struct skc_extent_phr_pdrw         atomics;
};

//
//
//