forked from libxsmm/libxsmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generator_packed_spgemm_csc_bsparse.h
26 lines (21 loc) · 1.5 KB
/
generator_packed_spgemm_csc_bsparse.h
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
/******************************************************************************
* Copyright (c) Intel Corporation - All rights reserved. *
* This file is part of the LIBXSMM library. *
* *
* For information on the license, see the LICENSE file. *
* Further information: https://github.com/hfp/libxsmm/ *
* SPDX-License-Identifier: BSD-3-Clause *
******************************************************************************/
/* Alexander Heinecke (Intel Corp.)
******************************************************************************/
#ifndef GENERATOR_PACKED_SPGEMM_CSC_BSPARSE_H
#define GENERATOR_PACKED_SPGEMM_CSC_BSPARSE_H
#include <libxsmm_generator.h>
LIBXSMM_API_INTERN
void libxsmm_generator_packed_spgemm_csc_bsparse( libxsmm_generated_code* io_generated_code,
const libxsmm_gemm_descriptor* i_xgemm_desc,
const unsigned int* i_row_idx,
const unsigned int* i_column_idx,
const void* i_values,
const unsigned int i_packed_width );
#endif /* GENERATOR_PACKED_SPGEMM_CSC_BSPARSE_H */