// !!! This is a file automatically generated by hipify!!! #include "hip/hip_runtime.h" /* * Copyright (c) 2023, NVIDIA CORPORATION. * * 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. */ #include #include #include #include #include namespace gpu_cache { template static_table::static_table(const size_t table_size, const size_t embedding_vec_size, const float default_value) : table_size_(table_size), embedding_vec_size_(embedding_vec_size), default_value_(default_value), static_hash_table_(table_size, embedding_vec_size) { if (embedding_vec_size_ == 0) { printf("Error: Invalid value for embedding_vec_size.\n"); return; } } template void static_table::Query(const key_type* d_keys, const size_t len, float* d_values, hipStream_t stream) { static_hash_table_.lookup(d_keys, d_values, len, default_value_, stream); } template void static_table::Init(const key_type* d_keys, const size_t len, const float* d_values, hipStream_t stream) { static_hash_table_.insert(d_keys, d_values, len, stream); } template void static_table::Clear(hipStream_t stream) { static_hash_table_.clear(stream); } template class static_table; template class static_table; } // namespace gpu_cache