Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/device/cpu/kernel_function.h
| Show All 10 Lines | |||||
| * distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | ||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| #include "util/util_debug.h" | #include "util/debug.h" | ||||
| #include "util/util_system.h" | #include "util/system.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| /* A wrapper around per-microarchitecture variant of a kernel function. | /* A wrapper around per-microarchitecture variant of a kernel function. | ||||
| * | * | ||||
| * Provides a function-call-like API which gets routed to the most suitable implementation. | * Provides a function-call-like API which gets routed to the most suitable implementation. | ||||
| * | * | ||||
| * For example, on a computer which only has SSE4.1 the kernel_sse41 will be used. */ | * For example, on a computer which only has SSE4.1 the kernel_sse41 will be used. */ | ||||
| ▲ Show 20 Lines • Show All 96 Lines • Show Last 20 Lines | |||||