| 123456789101112131415161718192021222324252627282930313233 |
- /*
- * 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 <http://www.gnu.org/licenses/>.
- */
- #ifndef __CUDADL_H__
- #define __CUDADL_H__
- #include <NTL/ZZ.h>
- #include <NTL/ZZ_p.h>
- 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
|