Skip to content

Commit 3d394f5

Browse files
author
Diptorup Deb
committed
Add license header.
1 parent a3c8646 commit 3d394f5

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

numba_dpex/core/runtime/_queuestruct.h

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1-
#ifndef NUMBA_DPEX_QUEUESTRUCT_H_
2-
#define NUMBA_DPEX_QUEUESTRUCT_H_
3-
/*
4-
* Fill in the *queuestruct* with information from the Numpy array *obj*.
5-
* *queuestruct*'s layout is defined in numba.targets.arrayobj (look
6-
* for the ArrayTemplate class).
7-
*/
1+
// SPDX-FileCopyrightText: 2020 - 2023 Intel Corporation
2+
//
3+
// SPDX-License-Identifier: Apache-2.0
4+
5+
//===----------------------------------------------------------------------===//
6+
///
7+
/// \file
8+
/// Defines the numba-dpex native representation for a dpctl.SyclQueue
9+
///
10+
//===----------------------------------------------------------------------===//
11+
12+
#pragma once
813

914
#include <Python.h>
1015

@@ -13,5 +18,3 @@ typedef struct
1318
PyObject *parent;
1419
void *queue_ref;
1520
} queuestruct_t;
16-
17-
#endif /* NUMBA_DPEX_QUEUESTRUCT_H_ */

0 commit comments

Comments
 (0)