Skip to content

Commit

Permalink
* version bump to v0.2.2-f1, going for release
Browse files Browse the repository at this point in the history
 * disabled spir-v param workaround by default, always using byval actually seems to work (+amd has more problems when this is enabled ...)
  • Loading branch information
a2flo committed Jul 30, 2016
1 parent 704e946 commit afc3517
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion floor/build_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7112
7113
2 changes: 1 addition & 1 deletion floor/build_version.hpp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define FLOOR_BUILD_VERSION 7112
#define FLOOR_BUILD_VERSION 7113
2 changes: 1 addition & 1 deletion floor/floor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ void floor::init(const char* callpath_, const char* datapath_,
config.opencl_validate_spirv = config_doc.get<bool>("compute.opencl.validate_spirv", false);
config.opencl_force_spirv_check = config_doc.get<bool>("compute.opencl.force_spirv", false);
config.opencl_disable_spirv = config_doc.get<bool>("compute.opencl.disable_spirv", false);
config.opencl_spirv_param_workaround = config_doc.get<bool>("compute.opencl.spirv_param_workaround", true);
config.opencl_spirv_param_workaround = config_doc.get<bool>("compute.opencl.spirv_param_workaround", false);
extract_whitelist(config.opencl_whitelist, "compute.opencl.whitelist");
config.opencl_compiler = config_doc.get<string>("compute.opencl.compiler", config.default_compiler);
config.opencl_llc = config_doc.get<string>("compute.opencl.llc", config.default_llc);
Expand Down
4 changes: 2 additions & 2 deletions floor/floor_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
#define FLOOR_MAJOR_VERSION 0
#define FLOOR_MINOR_VERSION 2
#define FLOOR_REVISION_VERSION 2
#define FLOOR_DEV_STAGE_VERSION 0xb3
#define FLOOR_DEV_STAGE_VERSION_STR "b3"
#define FLOOR_DEV_STAGE_VERSION 0xf1
#define FLOOR_DEV_STAGE_VERSION_STR "f1"
// FLOOR_BUILD_VERSION defined in build_version.hpp

#define FLOOR_MAJOR_VERSION_STR FLOOR_VERSION_EVAL(FLOOR_MAJOR_VERSION)
Expand Down

0 comments on commit afc3517

Please sign in to comment.