
c++
文章平均质量分 62
iteye_62
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
opencl
[code="java"][/code]#include "AESEncrypt.h" #include /*** Global variables***/ cl_uchar sbox[256] = { 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b, 0xfe, 0xd7, 0xab, ...原创 2013-01-05 23:03:23 · 218 阅读 · 0 评论 -
device.cpp
[code="java"][/code]#include "device.h" #include //Class Timer member function implementation int Timer::createTimer() { _start = 0; _clocks = 0; #ifdef _WIN32 QueryPerformanceFreque...原创 2013-01-05 23:06:06 · 180 阅读 · 0 评论 -
device.h
[code="java"][/code]#ifndef DEVICE_H #define DEVICE_H #include #include #include #include #include #include #include #ifdef _WIN32 #include #else #include #include #endif...原创 2013-01-05 23:06:59 · 182 阅读 · 0 评论 -
makefile
[code="java"][/code]DEPTH = ../../../../.. include $(DEPTH)/make/openclsdkdefs.mk #### # # Targets # #### OPENCL = 1 SAMPLE_EXE = 1 EXE_TARGET = Advanced-Multi-GPU EXE_TARGET_IN...原创 2013-01-05 23:07:43 · 100 阅读 · 0 评论