Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a copyright messaging to the BpackingAvx512.hh #1691

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions c++/src/BpackingAvx512.hh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,46 @@
* limitations under the License.
*/

/*******************************************************************************
* Copyright (C) 2022 Intel Corporation
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you give us the original source link?

*
* SPDX-License-Identifier: MIT
******************************************************************************/

/**
* @brief Contains implementation of functions for unpacking 1..32-bit data to bytes
*
* @details Function list:
* - @ref vectorUnpack1
* - @ref vectorUnpack2
* - @ref vectorUnpack3
* - @ref vectorUnpack4
* - @ref vectorUnpack5
* - @ref vectorUnpack6
* - @ref vectorUnpack7
* - @ref vectorUnpack9
* - @ref vectorUnpack10
* - @ref vectorUnpack11
* - @ref vectorUnpack12
* - @ref vectorUnpack13
* - @ref vectorUnpack14
* - @ref vectorUnpack15
* - @ref vectorUnpack16
* - @ref vectorUnpack17
* - @ref vectorUnpack18
* - @ref vectorUnpack19
* - @ref vectorUnpack20
* - @ref vectorUnpack21
* - @ref vectorUnpack22
* - @ref vectorUnpack23
* - @ref vectorUnpack24
* - @ref vectorUnpack26
* - @ref vectorUnpack28
* - @ref vectorUnpack30
* - @ref vectorUnpack32
*
*/

#ifndef ORC_BPACKINGAVX512_HH
#define ORC_BPACKINGAVX512_HH

Expand Down
Loading