File: cuda.C

package info (click to toggle)
fflas-ffpack 2.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,200 kB
  • sloc: cpp: 26,712; makefile: 784; sh: 430; csh: 95; ansic: 20
file content (9 lines) | stat: -rw-r--r-- 153 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <cuda_runtime.h>
#include <cusparse.h>

int main() {
	cusparseHandle_t handle = 0;
	cusparseCreate( &handle );
	return 0 ;
}