mirror of https://github.com/Jittor/Jittor
23 lines
616 B
C++
23 lines
616 B
C++
// ***************************************************************
|
|
// Copyright (c) 2021 Jittor. All Rights Reserved.
|
|
// Maintainers:
|
|
// Guoye Yang <498731903@qq.com>
|
|
// Dun Liang <randonlang@gmail.com>.
|
|
//
|
|
// This file is subject to the terms and conditions defined in
|
|
// file 'LICENSE.txt', which is part of this source code package.
|
|
// ***************************************************************
|
|
#pragma once
|
|
#include <cuda_runtime.h>
|
|
#include <cublas_v2.h>
|
|
|
|
#include "helper_cuda.h"
|
|
#include "fp16_emu.h"
|
|
#include "common.h"
|
|
|
|
namespace jittor {
|
|
|
|
extern cublasHandle_t cublas_handle;
|
|
|
|
} // jittor
|