/*
* cudadl version 0.9: Compute discrete logs in smooth group orders
* using CUDA
* Copyright (C) 2012 by Ryan Henry and Ian Goldberg
* {rhenry,iang}@cs.uwaterloo.ca
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of version 3 of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#ifndef __CUDADL_H__
#define __CUDADL_H__
#include
#include
NTL_CLIENT
int cuda_init(int deviceid);
void cuda_dl(const ZZ_p &base, const ZZ_p &target, const ZZ &order,
const ZZ &modulus, unsigned int dpfreq, void *data);
#endif