/* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of NVIDIA CORPORATION nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include "utils/utils.h" extern "C" __device__ __noinline__ void count_instrs(int num_instrs, int count_warp_level, uint64_t pcounter) { /* all the active threads will compute the active mask */ const int active_mask = __ballot_sync(__activemask(), 1); /* each thread will get a lane id (get_lane_id is implemented in * utils/utils.h) */ const int laneid = get_laneid(); /* get the id of the first active thread */ const int first_laneid = __ffs(active_mask) - 1; /* count all the active thread */ const int num_threads = __popc(active_mask); /* only the first active thread will perform the atomic */ if (first_laneid == laneid) { if (count_warp_level) { atomicAdd((unsigned long long*)pcounter, 1 * num_instrs); } else { atomicAdd((unsigned long long*)pcounter, num_threads * num_instrs); } } } extern "C" __device__ __noinline__ void count_pred_off(int predicate, int count_warp_level, uint64_t pcounter) { /* all the active threads will compute the active mask */ const int active_mask = __ballot_sync(__activemask(), 1); /* each thread will get a lane id (get_lane_id is implemented in * utils/utils.h) */ const int laneid = get_laneid(); /* get the id of the first active thread */ const int first_laneid = __ffs(active_mask) - 1; /* get predicate mask */ const int predicate_mask = __ballot_sync(__activemask(), predicate); /* get mask of threads that have their predicate off */ const int mask_off = active_mask ^ predicate_mask; /* count the number of threads that have their predicate off */ const int num_threads_off = __popc(mask_off); /* only the first active thread updates the counter of predicated off * threads */ if (first_laneid == laneid) { if (count_warp_level) { if (predicate_mask == 0) { atomicAdd((unsigned long long*)pcounter, 1); } } else { atomicAdd((unsigned long long*)pcounter, num_threads_off); } } }