source
stringlengths
3
92
c
stringlengths
26
2.25M
eval_XC_func.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> #include "eval_XC_func.h" // ========================= LDA functionals ========================= // // Input parameters: // npt : Total number of points // rho : Size npt, electron density at each point // Output parameters: ...
OpenMPClause.h
//===- OpenMPClause.h - Classes for OpenMP clauses --------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
rose_jacobi_avx512.c
#include "rex_kmp.h" #include <stdio.h> #include <stdlib.h> #include <time.h> #include <sys/timeb.h> #include <malloc.h> #include <immintrin.h> #include <immintrin.h> #define REAL float static double read_timer_ms() { struct timeb tm; ftime(&tm); return ((double )tm . time) * 1000.0 + ((double )tm . millitm);...
openmp_eigen_static.c
#include <stdlib.h> #include <stdio.h> #include <mkl.h> #include <omp.h> #include <sys/time.h> /* This program demonstrates the OpenMP parallelization of a computationally intensive loop where the work per iteration is allowed to vary. Within the main loop, matrix is generated, the eigenvalue solver DYSEV is called a...
GB_unaryop__lnot_uint32_int64.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
Misc.h
//######################################################################## //## Copyright 2019 Da Yan http://www.cs.uab.edu/yanda //## //## 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 /...
kmeans.c
#include "kmeans.h" #include "kmeans_utils.h" #include "../../utils/matrix/csr_matrix/csr_to_vector_list.h" #include "../../utils/matrix/vector_list/vector_list_math.h" #include "../../utils/matrix/csr_matrix/csr_math.h" #include "../../utils/vector/common/common_vector_math.h" #include "../../utils/vector/sparse/spars...
sieve.c
/* * Adapted from: http://w...content-available-to-author-only...s.org/sieve-of-eratosthenes */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <math.h> int sieveOfEratosthenes(int n) { // Create a boolean array "prime[0..n]" and initialize // all entries it as...
LBMClass.h
#ifndef LIDDRIVENCAVITYLBM_LBMCLASS_H #define LIDDRIVENCAVITYLBM_LBMCLASS_H #include <iostream> #include <vector> #include <math.h> #include <omp.h> #include "Eigen/Dense" using namespace std; extern const double Re; extern const int N; extern const int M; extern const double Utop,Vtop;...
Parser.h
//===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
GB_AxB_rowscale_template.c
//------------------------------------------------------------------------------ // GB_AxB_rowscale_template: C=D*B where D is a square diagonal matrix //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPD...
packed_sgemm_a35.h
// Copyright (c) 2021 PaddlePaddle Authors. 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...
GeometryConverter.h
/* -*-c++-*- IfcQuery www.ifcquery.com * MIT License Copyright (c) 2017 Fabian Gerold Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the ...
pr88203-2.c
/* PR c++/88203 */ /* { dg-do compile } */ /* { dg-additional-options "-std=gnu99" { target c } } */ /* { dg-additional-options "-std=gnu++11" { target c++ } } */ void foo (const char *, const char *); #pragma omp declare target to (foo) void f1 (void) { #pragma omp parallel default(none) foo (__FUNCTION__, __PRE...
GB_matvec_type.c
//------------------------------------------------------------------------------ // GB_matvec_type: return the type of a matrix //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-Identifier: Ap...
perturbations.c
/** @file perturbations.c Documented perturbation module * * Julien Lesgourgues, 23.09.2010 * * Deals with the perturbation evolution. * This module has two purposes: * * - at the beginning; to initialize the perturbations, i.e. to * integrate the perturbation equations, and store temporarily the terms * contr...
coordinate_common.h
/*! * Copyright 2018 by Contributors * \author Rory Mitchell */ #pragma once #include <algorithm> #include <string> #include <utility> #include <vector> #include "../common/random.h" namespace xgboost { namespace linear { /** * \brief Calculate change in weight for a given feature. Applies l1/l2 penalty normalise...
parallel_invoker.h
// Copyright 2019 The MediaPipe Authors. // // 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 a...
opencl_keystore_fmt_plug.c
/* Java KeyStore password cracker for JtR. * (will NOT address password(s) for alias(es) within keystore). * * OpenCL plugin by Terry West. * Derived from keystore_fmt_plug.c, * written by Dhiru Kholia <dhiru at openwall.com> and * Narendra Kangralkar <narendrakangralkar at gmail.com>. * * Input Format: $keysto...
Sema.h
//===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
image.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_sparse_masker_template.c
//------------------------------------------------------------------------------ // GB_sparse_masker_template: R = masker (C, M, Z) where R is sparse/hyper //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. /...
floorplan.c
/**********************************************************************************************/ /* This program is part of the Barcelona OpenMP Tasks Suite */ /* Copyright (C) 2009 Barcelona Supercomputing Center - Centro Nacional de Supercomputacion */ /* Copyright (C) 2009 Univer...
xgboost_regrank_eval.h
#ifndef XGBOOST_REGRANK_EVAL_H #define XGBOOST_REGRANK_EVAL_H /*! * \file xgboost_regrank_eval.h * \brief evaluation metrics for regression and classification and rank * \author Kailong Chen: chenkl198812@gmail.com, Tianqi Chen: tianqi.tchen@gmail.com */ #include <cmath> #include <vector> #include <algorithm> #include...
grid_basis.c
/* * Author: Qiming Sun <osirpt.sun@gmail.com> */ #include <stdlib.h> #include <string.h> #include <math.h> #include "cint.h" #include "config.h" // 128s42p21d12f8g6h4i3j #define NCTR_CART 128 // 72s24p14d10f8g6h5i4j #define NCTR_SPH 72 #define NPRIMAX 64 #define BLKSIZE 96 #define EX...
GB_unaryop__ainv_uint8_bool.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
Par-02-OnlyOmpParallel.c
int main(int argc, char **argv) { int a[4] = {1,2,3,4}; #pragma omp parallel { for (int i = 0; i < 4; ++i) { a[i] = 3*a[i]; } } return 0; }
own_filters.c
/******************************************************************************* * Copyright (c) 2020, Intel Corporation * * 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 mus...
ThreadData.h
#ifndef THREAD_DATA_H #define THREAD_DATA_H #include <string> #include <unordered_map> #include <climits> #include <regex> #include "SecurityRules.h" typedef std::unordered_map<std::string, uint64_t> StringOccurrence; typedef std::unordered_map<int, uint64_t> IntOccurrence; /** * @brief minimal number of digits o...
grid_basis.c
/* Copyright 2014-2018 The PySCF Developers. 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 requi...
softmax-inl.h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
unparser.h
/* Copyright (c) 2013, 2014 Michael Foerster, <Michael.Foerster@com-science.de> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to ...
prand.c
//------------------------------------------------------------------------------ // GraphBLAS/Demo/Source/prand: parallel random number generator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://su...
KernelCaller.h
/* * kernelCaller.h * * Created on: Oct 2, 2019 * Author: carol */ #ifndef KERNELCALLER_H_ #define KERNELCALLER_H_ #include "nondmr_kernels.h" #include "dmr_kernels.h" #include "types.h" #include "block_threshold.h" #include <iomanip> // std::setprecision #include <sstream> // std::stringstream ...
deconvolution_pack4to1.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
NDArray.h
#ifndef NDARRAY_H #define NDARRAY_H #include <initializer_list> #include <functional> #include <shape.h> #include "NativeOpExcutioner.h" #include <memory/Workspace.h> #include <indexing/NDIndex.h> #include <indexing/IndicesList.h> #include <graph/Intervals.h> #include <array/DataType.h> #include <stdint.h> namespace...
Polygon.c
#include "Polygon.h" #include "utils.h" void P_init(Polygon *p){ p->_nb_vertices=0; p->_is_closed=FALSE; p->_is_filled=FALSE; p->_is_convex=TRUE; } // initialise un polygone (0 sommets) void P_copy(Polygon *original, Polygon *copie){ int i; copie->_nb_vertices=original->_nb_vertices; copie->_is_closed=origin...
GB_binop__lt_uint16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
GB_unaryop__identity_int16_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
test_omp.c
#include <nautilus/nautilus.h> #include <nautilus/shell.h> #include <rt/omp/omp.h> #define N 4 volatile float a[N]; volatile float b[N]; volatile float c[N]; static int omp_simple() { int i; for (i=0;i<N;i++) { a[i] = i; b[i] = i; } #pragma omp parallel nk_vc_printf("I am thread %d (%d total)\n",omp_...
density.h
// Copyright (c) 2013-2016 Anton Kozhevnikov, Thomas Schulthess // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are permitted provided that // the following conditions are met: // // 1. Redistributions of source code must retain the above copyright notic...
Index.h
// Index.h #ifndef INDEX_H #define INDEX_H #include "_ug.h" #include <nanoflann.hpp> #include <tuple> #include "Vec3.h" #include "Direction.h" #include "Picture.h" #include "Projection.h" #include "ProjectedStar.h" #include "Quad.h" #include "Pose.h" #include "IndexEighth.h" #include "Orientation.h" namespace ugps {...
mapped_avg_pool.h
#ifndef MAPPED_AVG_POOL_H_ #define MAPPED_AVG_POOL_H_ #include <math.h> #include <omp.h> #include <torch/extension.h> #include <limits> #include "common/mapped_avg_pool.h" #include "core/resample.h" namespace spherical { namespace cpu { template <typename T> void MappedAvgPool2D(const int num_kernels, torch::Tensor...
elemwise_binary_scalar_op.h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
bit_vector_functions.h
#ifndef BIT_VECTOR_FUNCTIONS_H #define BIT_VECTOR_FUNCTIONS_H #include <vector> #include <bitset> #include "helper/confusion.h" #include "config.h" #include "io_and_allocation.hpp" #include "updates_and_measures.cuh" using std::vector; template<typename bit_vector_t, typename index_t> size_t computeHammingDistance...
Partition.h
/* * Partition.h * * Created on: 03.10.2013 * Author: cls */ #ifndef PARTITION_H_ #define PARTITION_H_ #include <cinttypes> #include <set> #include <vector> #include <map> #include <cassert> #include <limits> #include "../Globals.h" namespace NetworKit { /** * @ingroup structures * Implements a partit...
schur_eliminator_impl.h
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2010, 2011, 2012 Google Inc. All rights reserved. // http://code.google.com/p/ceres-solver/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // ...
ten_tusscher_2004_epi_S2_12.c
//Original Ten Tusscher #include <assert.h> #include <stdlib.h> #include "ten_tusscher_2004_epi_S2_12.h" GET_CELL_MODEL_DATA(init_cell_model_data) { assert(cell_model); if(get_initial_v) cell_model->initial_v = INITIAL_V; if(get_neq) cell_model->number_of_ode_equations = NEQ; } //TODO...
vadd.base.c
#include <stdio.h> #include <stdlib.h> #include <sys/time.h> #include <omp.h> double getClock() { struct timezone tzp; struct timeval tp; gettimeofday (&tp, &tzp); return (tp.tv_sec + tp.tv_usec*1.0e-6); } int main(int argc, char *argv[]) { double *y; double *x1; double *x2; double *x3...
eavlSourceTopologyMapOp.h
// Copyright 2010-2014 UT-Battelle, LLC. See LICENSE.txt for more information. #ifndef EAVL_SOURCE_TOPOLOGY_MAP_OP_H #define EAVL_SOURCE_TOPOLOGY_MAP_OP_H #include "eavlCUDA.h" #include "eavlCellSet.h" #include "eavlCellSetExplicit.h" #include "eavlCellSetAllStructured.h" #include "eavlDataSet.h" #include "eavlArray....
GB_binop__second_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
core_zttmlq.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @precisions normal z -> c d s * **/ #include <plasma_core_blas.h> #include "plasma_types.h" #include "plasma_internal.h" #include "core_lapack.h" #include <omp.h> /*************...
npdot.c
/* Copyright 2014-2018 The PySCF Developers. 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 requi...
GB_binop__minus_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
project.c
//----------------------------------------------------------------------------- // project.c // // Project: EPA SWMM5 // Version: 5.1 // Date: 03/19/14 (Build 5.1.000) // 04/14/14 (Build 5.1.004) // 09/15/14 (Build 5.1.007) // 03/19/15 (Build 5.1.008) // ...
primes.c
/* Copyright (c) 2014, Ben Buhrow All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the fol...
resample.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_unop__erf_fp32_fp32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
transpose.c
/* Copyright (c) 2013, Intel Corporation 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...
adjvectorbqm.h
// Copyright 2020 D-Wave Systems Inc. // // 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 applicab...
sigmoid_ref.c
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * License); you ma...
GB_dense_ewise3_accum_template.c
//------------------------------------------------------------------------------ // GB_dense_ewise3_accum_template: C += A+B where all 3 matrices are dense //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. //...
vect-outer-simd-1.c
/* { dg-require-effective-target vect_simd_clones } */ /* { dg-additional-options "-fopenmp-simd -ffast-math" } */ #include <stdlib.h> #include "tree-vect.h" #define N 64 float *px, *py; float *tx, *ty; float *x1, *z1, *t1, *t2; static void inline bar(const float cx, float cy, float *vx, floa...
pattern.h
#ifndef PATTERN_H #define PATTERN_H #include <stdio.h> #include <stdbool.h> #include <omp.h> #include "utils.h" bool match(char* string, char* mask) { char* rs = 0, // Place to return in string if `*` didn't match * rm; // Place to return in mask for (;;) { if (*mask == '*') { ...
kernel.openmp.h
#include <iris/iris_openmp.h> static void ijk(float* C, float* A, float* B, IRIS_OPENMP_KERNEL_ARGS) { int i; #pragma omp parallel for shared(C, A, B) private(i) IRIS_OPENMP_KERNEL_BEGIN (i) for (int j = 0; j < _ndr; j++) { float sum = 0.0; for (int k = 0; k < _ndr; k++) { sum += A[i * _ndr + k] * ...
convolution_1x1_int8.h
// SenseNets is pleased to support the open source community by supporting ncnn available. // // Copyright (C) 2018 SenseNets Technology Ltd. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy of t...
GB_unop__identity_uint16_int32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-Li...
cross.h
// // @author raver119@gmail.com // #include <ops/declarable/helpers/helpers.h> namespace nd4j { namespace ops { namespace helpers { template <typename T> void FORCEINLINE _cross(NDArray<T> *a, NDArray<T> *b, NDArray<T> *o) { auto a0 = a->getScalar(0); auto a1 = a->getScalar(1); auto ...
GB_binop__rdiv_fc32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
2.race1.c
// RUN: clang %loadLLOV %s -o /dev/null 2>&1 | FileCheck %s #include <omp.h> #define N 20 int main() { int A[N][N]; #pragma omp simd for (int i = 1; i < N; i++) for (int j = 1; j < N; j++) A[i][j] = A[i - 1][j]; } // CHECK: Data Race detected // END
util.h
#ifndef CORE_UTIL_H_ #define CORE_UTIL_H_ #include <math.h> #include <omp.h> #include <cstdio> // For GCC #ifndef __host__ #define __host__ #endif #ifndef __device__ #define __device__ #endif // From // https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#atomic-functions // With help from https://stacko...
softmax-inl.h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
Method.h
// // Created by Александр Кучеров on 22/03/2018. // #ifndef METHOD_H #define METHOD_H #include <iostream> #include <utility> #include <algorithm> #include <vector> #include <string> #include "boost/graph/graph_traits.hpp" #include "boost/graph/adjacency_list.hpp" #include "boost/graph/breadth_first_search.hpp" #inc...
8495.c
/* POLYBENCH/GPU-OPENMP * * This file is a part of the Polybench/GPU-OpenMP suite * * Contact: * William Killian <killian@udel.edu> * * Copyright 2013, The University of Delaware */ #include <stdio.h> #include <unistd.h> #include <string.h> #include <math.h> /* Include polybench common header. */ #include <po...
dynamic_module.c
// RUN: %libomptarget-compile-aarch64-unknown-linux-gnu -DSHARED -shared -o %t.so && %libomptarget-compile-aarch64-unknown-linux-gnu %t.so && %libomptarget-run-aarch64-unknown-linux-gnu 2>&1 | %fcheck-aarch64-unknown-linux-gnu // RUN: %libomptarget-compile-powerpc64-ibm-linux-gnu -DSHARED -shared -o %t.so && %libomptar...
residual_based_implicit_time_scheme.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Vicente Mataix Ferrandiz // #if !defined(KRATOS...
rose_axpy.c
#include "rex_kmp.h" struct __tgt_bin_desc *__cubin_desc = 0; void __attribute__((destructor)) unregister_kernel_entries() { __tgt_unregister_lib(__cubin_desc); } char OUT__1__7253__axpy_ompacc__68__id__[] = "OUT__1__7253__axpy_ompacc__68__"; struct __tgt_offload_entry __offload_entries[1]; struct __tgt_offload_en...
convolution_3x3_pack8to4_fp16s.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a ...
stream.c
// Copyright 2009-2015 Sandia Corporation. Under the terms // of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S. // Government retains certain rights in this software. // // Copyright (c) 2009-2015, Sandia Corporation // All rights reserved. // // This file is part of the SST software package. For license ...
YAKL_parallel_for_fortran.h
#pragma once namespace fortran { template <class T> constexpr T fastmod(T a , T b) { return a < b ? a : a-b*(a/b); } /////////////////////////////////////////////////////////// // LBnd: Loop Bound -- Describes the bounds of one loop /////////////////////////////////////////////////////////// cla...
projectq.h
/** * Copyright 2021 Huawei Technologies Co., Ltd * * 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...
layerramdistancetransform.h
/********************************************************************************* * * Inviwo - Interactive Visualization Workshop * * Copyright (c) 2017-2020 Inviwo Foundation * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided th...
pyfr_gemm_rm.c
/****************************************************************************** ** Copyright (c) 2016-2018, Intel Corporation ** ** All rights reserved. ** ** ** ...
multiplications.c
/* This source file is part of the Geophysical Fluids Modeling Framework (GAME), which is released under the MIT license. Github repository: https://github.com/OpenNWP/GAME */ /* In this file, algebraic multiplications of fields are collected. */ #include <stdio.h> #include "../game_types.h" #include "spatial_operato...
MinMax.h
#ifndef DDM__ALGORITHM__MIN_MAX_H__ #define DDM__ALGORITHM__MIN_MAX_H__ #include "../../ddm/internal/Config.h" #include "../../ddm/Allocator.h" #include "../../ddm/algorithm/LocalRange.h" #include "../../ddm/util/Config.h" #include "../../ddm/util/Trace.h" #include "../../ddm/util/UnitLocality.h" #include "../../d...
cpd.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "base.h" #include "cpd.h" #include "matrix.h" #include "mttkrp.h" #include "timer.h" #include "thd_info.h" #include "util.h" #include <m...
GB_binop__copysign_fp64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
dipoledipoleinteraction.h
/* * Copyright 2009-2020 The VOTCA Development Team (http://www.votca.org) * * 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 * * Unle...
jacobi-ompacc-opt2.c
// Liao, 7/9/2014, add collapse() inside jacobi() // Liao, 1/22/2015, test nested map() clauses supported by device data environment reuse. #include <stdio.h> #include <math.h> #include <assert.h> #include <stdlib.h> #ifdef _OPENMP #include <omp.h> #endif // Add timing support #include <sys/time.h> double time_st...
gesummv_teams.c
/** * gesummv.c: This file was adapted from PolyBench/GPU 1.0 test * suite to run on GPU with OpenMP 4.0 pragmas and OpenCL driver. * * http://www.cse.ohio-state.edu/~pouchet/software/polybench/GPU * * Contacts: Marcio M Pereira <mpereira@ic.unicamp.br> * Rafael Cardoso F Sousa <rafael.cardoso@students...
pmv-OpenMP-reduction.c
/* * pmv-OpenMp-b.c * * Created on: 12/04/2014 * Author: Carlos de la Torre */ #include <stdio.h> #include <stdlib.h> #include <time.h> #include <omp.h> // biblioteca para programas paralelos #define PRINT_ALL_MIN 15 // Ponemos que los elementos mínimos para que se // impriman todos los valores de la matriz...
api_test.c
#include "ctest/ctest.h" #include "splatt_test.h" #include "../src/sptensor.h" /* API includes */ #include "../include/splatt.h" #ifdef _OPENMP #include <omp.h> #endif CTEST_DATA(api) { splatt_idx_t ntensors; sptensor_t * tensors[MAX_DSETS]; }; CTEST_SETUP(api) { data->ntensors = sizeof(datasets) / sizeof...
search_function.h
#include <random> #include <iostream> #include <fstream> #include <cstdio> #include <cstdlib> #include <cstring> #include <unordered_map> #include <unordered_set> #include <map> #include <cmath> #include <ctime> #include <queue> #include <vector> #include <omp.h> #include <chrono> #include <limits> #include <sys/tim...
integral_sync.c
#include<stdio.h> #include<omp.h> #define NUM_THREADS 4 static long num_steps = 100000; double step; int main(){ int i, nthreads; double pi = 0.0, init_time, finish_time; step = 1.0 / (double)num_steps; init_time = omp_get_wtime(); omp_set_num_threads(NUM_THREADS); #pragma omp parallel { int i, id, nthrds; ...
GB_unaryop__ainv_int32_uint32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
opt_sls_solver.h
/*++ Copyright (c) 2014 Microsoft Corporation Module Name: opt_sls_solver.h Abstract: Wraps a solver with SLS for improving a solution using an objective function. Author: Nikolaj Bjorner (nbjorner) 2014-4-18 Notes: --*/ #ifndef OPT_SLS_SOLVER_H_ #define OPT_SLS_SOLVER_H_ #include "solver_na2as...
helper.h
// // Created by Lei Ma on 9/8/17. // #ifndef HALO_PARALLEL_HELPER_H #define HALO_PARALLEL_HELPER_H #include "initializer.h" #include <ctime> #include <omp.h> // for openmp namespace Helper { double sgnf(double val) { return val/std::abs(val); } // Reverse an array of state_type and store in a ...
XSHA_fmt_plug.c
/* * This file is part of John the Ripper password cracker, * Copyright (c) 2008,2011 by Solar Designer * * Intrinsics support added by magnum 2011. */ #if FMT_EXTERNS_H extern struct fmt_main fmt_XSHA; #elif FMT_REGISTERS_H john_register_one(&fmt_XSHA); #else #include <string.h> #include "arch.h" #ifdef SIMD_...
LRUCache_Prefetch.h
#include <iostream> #include<stdint.h> #include <unordered_map> #include <vector> using namespace std; vector<int64_t>List_offset; struct AIOReadInfo { int64_t readlength; int64_t readoffset; int64_t listlength; int64_t offsetForenums; int64_t memoffset; int64_t curSendpos; uint8_t *list_data; uint32_t termid...
template_vector.h
/* Copyright 2015 The math21 Authors. 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 agree...