Commit c9b029fe authored by Cianciosa, Mark's avatar Cianciosa, Mark
Browse files

Merge branch 'cpu_args' into 'main'

Reduce map access overhead in cpu kernels.

See merge request !23
parents 2c90922a 4a789412
Loading
Loading
Loading
Loading
+11 −3
Original line number Diff line number Diff line
@@ -884,7 +884,7 @@
			isa = PBXProject;
			attributes = {
				BuildIndependentTargetsInParallel = YES;
				LastUpgradeCheck = 1510;
				LastUpgradeCheck = 1520;
				ORGANIZATIONNAME = "Cianciosa, Mark R.";
				TargetAttributes = {
					C73690302A38C498001733B0 = {
@@ -1511,10 +1511,18 @@
				CODE_SIGN_STYLE = Automatic;
				DEAD_CODE_STRIPPING = YES;
				DEVELOPMENT_TEAM = "";
				GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"CXX_FLAGS=\\\"-g\\\"",
					"$(inherited)",
				);
				MACOSX_DEPLOYMENT_TARGET = 13.5;
				OTHER_CPLUSPLUSFLAGS = "";
				OTHER_LDFLAGS = "-lnetcdf";
				OTHER_LDFLAGS = (
					"-lnetcdf",
					"-ld_classic",
					"-rpath",
					/usr/local/lib,
				);
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
			};
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "1510"
   LastUpgradeVersion = "1520"
   version = "1.7">
   <BuildAction
      parallelizeBuildables = "YES"
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "1510"
   LastUpgradeVersion = "1520"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "1510"
   LastUpgradeVersion = "1520"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
+1 −1
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "1510"
   LastUpgradeVersion = "1520"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
Loading