/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ #ifndef PULSAR_NATIVE_INCLUDE_RENDERER_CALC_SIGNATURE_INSTANTIATE_H_ #define PULSAR_NATIVE_INCLUDE_RENDERER_CALC_SIGNATURE_INSTANTIATE_H_ #include "./renderer.calc_signature.device.h" namespace pulsar { namespace Renderer { template GLOBAL void calc_signature( Renderer renderer, float3 const* const RESTRICT vert_poss, float const* const RESTRICT vert_cols, float const* const RESTRICT vert_rads, const uint num_balls); } } // namespace pulsar #endif