/****************************************************************************** * * Copyright (c) 2018-2019, NVIDIA CORPORATION. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************/ #pragma once #include #include namespace at { namespace native { namespace nhwc { // Hashing machinery for Params // Fowler–Noll–Vo hash function // see https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function template struct ParamsHash { // Params must be a POD because we read out its memory // contenst as char* when hashing static_assert(std::is_pod::value, "Params is not POD"); size_t operator()(const Params& params) const { auto ptr = reinterpret_cast(¶ms); uint32_t value = 0x811C9DC5; for (int i = 0; i < (int)sizeof(Params); ++i) { value ^= ptr[i]; value *= 0x01000193; } return (size_t)value; } }; template struct ParamsEqual { // Params must be a POD because we read out its memory // contenst as char* when comparing static_assert(std::is_pod::value, "Params is not POD"); bool operator()(const Params& a, const Params& b) const { auto ptr1 = reinterpret_cast(&a); auto ptr2 = reinterpret_cast(&b); return memcmp(ptr1, ptr2, sizeof(Params)) == 0; } }; }}} // at::native