Skip to content
Snippets Groups Projects
Commit e262e2d0 authored by Oren's avatar Oren
Browse files

Changed ConfigSettings to accept calls for all types. Note: Currently when...

Changed ConfigSettings to accept calls for all types. Note: Currently when using Altera OpenCL, CID only works one-way
parent 9b961a94
No related branches found
No related tags found
No related merge requests found
# $1 = ant build file name
# $2 = copy to folder name
# mkdir $2
ant -f $1
cp dist/libaparapi_x86_64.so dist.$2
......@@ -33,7 +33,7 @@
// Altera platform specific
///////////////////////////
#ifdef ALTERA_OPENCL
#define PLATFORM_FLOW_SUPPORT BINARY_FLOW
#define PLATFORM_FLOW_SUPPORT (SOURCE_FLOW | BINARY_FLOW | DEFAULT_FLOW)
#define PLATFORM_DEFAULT_FLOW BINARY_FLOW
#define BINARY_FILE_EXT ".aocx"
#define BINARY_FILE_SEP '.'
......@@ -47,7 +47,7 @@
///////////////////////////
// All other platforms - set the default for other platforms
///////////////////////////
#define PLATFORM_FLOW_SUPPORT (BINARY_FLOW | SOURCE_FLOW)
#define PLATFORM_FLOW_SUPPORT (SOURCE_FLOW | BINARY_FLOW | DEFAULT_FLOW)
#define PLATFORM_DEFAULT_FLOW SOURCE_FLOW
#define BINARY_FILE_EXT ".bcl"
#define BINARY_FILE_SEP '.'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment