source
stringlengths
3
92
c
stringlengths
26
2.25M
barrier.c
// RUN: %compile-run-and-check #include <omp.h> #include <stdio.h> int main(int argc, char *argv[]) { int data, out, flag = 0; #pragma omp target teams num_teams(2) map(tofrom \ : out) map(to \ ...
mixed_tentusscher_myo_epi_2004_S3_15.c
// Scenario 3 - Mixed-Model TenTusscher 2004 (Myocardium + Epicardium) // (AP + max:dvdt + Rc) #include <stdio.h> #include "mixed_tentusscher_myo_epi_2004_S3_15.h" GET_CELL_MODEL_DATA(init_cell_model_data) { if(get_initial_v) cell_model->initial_v = INITIAL_V; if(get_neq) cell_model->number_o...
data.h
/*! * Copyright (c) 2015 by Contributors * \file data.h * \brief The input data structure of xgboost. * \author Tianqi Chen */ #ifndef XGBOOST_DATA_H_ #define XGBOOST_DATA_H_ #include <dmlc/base.h> #include <dmlc/data.h> #include <rabit/rabit.h> #include <xgboost/base.h> #include <xgboost/span.h> #include <xgboos...
JacobiSMatTranspose.c
#include "mex.h" #include <omp.h> void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) { //mex -largeArrayDims GaussSeidelSMatTranspose.c int i; int id, Nthrds, istart, iend; mwIndex j,k; double temp; double omega = 0.8; mwIndex *C_t = mx...
tutorial_region_prof.c
/* * Copyright (c) 2015, 2016, 2017, 2018, 2019, 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 must retain the above copyright * notice,...
convolution_3x3_int8.h
// BUG1989 is pleased to support the open source community by supporting ncnn available. // // Copyright (C) 2019 BUG1989. All rights reserved. // Copyright (C) 2019 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 /...
psicov21.c
/* PSICOV - Protein Sparse Inverse COVariance analysis program */ /* by David T. Jones August 2011 - Copyright (C) 2011 University College London */ /* This code is licensed under the terms of GNU General Public License v2 or later */ /* Version 2.1beta3 - Last Edit 27/4/14 */ #include <stdio.h> #include <stdlib.h>...
snap_red.c
#include <stdio.h> #define N 10 int main (void) { long int aa=0; int res = 0; int ng =12; int cmom = 14; int nxyz = 5000; // fails for 149 and above: nxyz=149; // for testing: nxyz = 10; #pragma omp target teams distribute num_teams(nxyz) thread_limit(ng*(cmom-1)) map(tofrom:aa) for (int gid = 0; gid...
matmult_omp_bagoftasks.c
/* Matrix multiplication example OpenMP version, bag of tasks Jim Teresco, CS 338, Williams College, CS 341, Mount Holyoke College Sun Feb 23 18:54:41 EST 2003 Updated for CSIS-335, Siena College, Fall 2021 */ /* header files needed for printf, gettimeofday, struct timeval */ #include <stdio.h> #inc...
semiring.h
#ifndef __SEMIRING_H__ #define __SEMIRING_H__ #include "functions.h" #include "../sparse_formats/csr.h" #include "../sparse_formats/ccsr.h" #include "../redistribution/nosym_transp.h" #include <iostream> using namespace std; namespace CTF_int { template <typename dtype> dtype default_mul(dtype a, dtype b){ ...
gemm.c
#include "gemm.h" #include "utils.h" #include "opencl.h" #include <stdlib.h> #include <stdio.h> #include <math.h> void gemm_bin(int M, int N, int K, float ALPHA, char *A, int lda, float *B, int ldb, float *C, int ldc) { int i,j,k; for(i = 0; i < M; ++i){ for(k = 0; k < K; ++k...
GB_unop__abs_fp64_fc64.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...
ex_particle_OPENMP_seq.cuda.c
#include <stdio.h> __device__ inline int hclib_get_current_worker() { return blockIdx.x * blockDim.x + threadIdx.x; } template<class functor_type> __global__ void wrapper_kernel(unsigned iter_offset, unsigned niters, functor_type functor) { const int tid = blockIdx.x * blockDim.x + threadIdx.x; if (tid < n...
targc-273739.c
#include <omp.h> #include <stdio.h> int main (){ omp_set_default_device(0); double *x_d, *y_d; //allocate memory on the device size_t N = 1024*1024*10; int use_device = 1; int chunk = 1; x_d = (double*) omp_target_alloc(N*sizeof(double), omp_get_initial_device() ); y_d = (double*) omp_target_alloc(N...
GB_unaryop__lnot_uint8_fp32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
GB_unop__bnot_int16_int16.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...
GB_emult_08_template.c
//------------------------------------------------------------------------------ // GB_emult_08_template: C=A.*B, C<M or !M>=A.*B when C is sparse/hyper //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SP...
SceneGraphConverterOCC.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 ...
GB_unaryop__minv_bool_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...
compatibility.h
// -*- C++ -*- // Copyright (C) 2007, 2008, 2009, 2010, 2012 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the terms // of the GNU General Public License as published by the Free Software // Foundatio...
GB_unaryop__ainv_uint16_uint16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
residualbased_elimination_builder_and_solver.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Riccardo Rossi // // ...
pdpotrf.c
/** * * @file pdpotrf.c * * PLASMA auxiliary routines * PLASMA is a software package provided by Univ. of Tennessee, * Univ. of California Berkeley and Univ. of Colorado Denver * * @version 2.6.0 * @author Jakub Kurzak * @author Hatem Ltaief * @author Mathieu Faverge * @date 2010-11-15 * @generated d Tu...
pagerank.c
#include <getopt.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <sys/time.h> #include <unistd.h> #include <omp.h> #include "mt19937p.h" #define g(x, y) (g[(y)*n+(x)]) int run_block(int n, double d, int* restrict g, double* restrict w, double* restrict wnew, int* restrict deg...
GB_unop__erfc_fp64_fp64.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...
omp_for_schedule_guided.c
<ompts:test> <ompts:testdescription>Test which checks the guided option of the omp for schedule directive.</ompts:testdescription> <ompts:ompversion>2.0</ompts:ompversion> <ompts:directive>omp for schedule(guided)</ompts:directive> <ompts:dependences>omp flush,omp for nowait,omp critical,omp single</ompts:dependences> ...
x_solve.c
//-------------------------------------------------------------------------// // // // This benchmark is a serial C version of the NPB BT code. This C // // version is developed by the Center for Manycore Programming at Seoul // // Nati...
convolution_3x3_pack4.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 ...
bucle-forModificado.c
#include <stdio.h> #include <stdlib.h> #ifdef _OPENMP #include <omp.h> #else #define omp_get_thread_num() 0 #define omp_get_num_threads() 1 #endif int main(int argc, char ** argv) { int i, n = 9; if(argc < 2) { fprintf(stderr,"\n[ERROR] - Falta nº iteraciones \n"); exit(-1); } n = atoi(argv[1]);...
GB_unaryop__identity_uint64_fp32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
reductionOMP.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> int Suma(int a, int b); int sumaglobal=0; int main(int argc, char *argv[]){ int numeroDeHilos=strtol(argv[1],NULL,10); int resultado=0; int a=10, b=20; #pragma omp parallel num_threads(numeroDeHilos) \ reduction(+ : resultado) resultado+=Suma(a,b); printf...
flow_cutter.h
#ifndef FLOW_CUTTER_H #define FLOW_CUTTER_H #include "tiny_id_func.h" #include "array_id_func.h" #include "id_string.h" #include "id_func.h" #include "dijkstra.h" #include "min_max.h" #include <vector> #include <algorithm> #include <sstream> #include <random> #include <memory> #include <omp.h> #include "flow_cutter_...
Fig_6.8_6.9_mandelbrotWrong.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <omp.h> # define NPOINTS 1000 # define MAXITER 1000 void testpoint(void); struct d_complex { double r; double i; }; struct d_complex c; int numoutside = 0; int main() { int i, j; double area, error, eps = 1.0e-5; // Loop over grid of po...
image-view.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % IIIII M M AAA GGGG EEEEE ...
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...
dds.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
fx.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
bodysystemcpu_impl.h
/* * Copyright 1993-2010 NVIDIA Corporation. All rights reserved. * * Please refer to the NVIDIA end user license agreement (EULA) associated * with this source code for terms and conditions that govern your use of * this software. Any use, reproduction, disclosure, or distribution of * this software and related...
Updater.h
/* * Copyright 2016 [See AUTHORS file for list of 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 require...
mxEvaluatePostFunc2d.c
#include "mex.h" #include "mxSWE2d.h" #ifdef _OPENMP #include <omp.h> #endif #define NRHS 5 #define NLHS 1 #define NVAR 3 void mexFunction(int nlhs, mxArray* plhs[], int nrhs, const mxArray* prhs[]) { /* check input & output */ if (nrhs != NRHS) { mexPrintf("Matlab:%s:InvalidNumberInput,\n", __FILE__); m...
aarch64_vfabi_WidestDataSize.c
// RUN: %clang_cc1 -triple aarch64-linux-gnu -target-feature +sve -fopenmp -x c -emit-llvm %s -o - -femit-all-decls | FileCheck %s // RUN: %clang_cc1 -triple aarch64-linux-gnu -target-feature +sve -fopenmp-simd -x c -emit-llvm %s -o - -femit-all-decls | FileCheck %s // REQUIRES: aarch64-registered-target // Not...
single.c
#include <stdio.h> #include <omp.h> int main() { int n = 9, i, a; int b[n]; int t[n]; for (i=0; i<n; i++) b[i] = -3; #pragma omp parallel { #pragma omp single { printf("Introduce valor de inicialización a: "); scanf("%d", &a ); printf("Single ejecutada por el thread %d\n",...
convolution_3x3_pack4.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2022 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 ...
GB_binop__bxnor_int8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
Loop.h
// This file is part of the Peano project. For conditions of distribution and // use, please see the copyright notice at www.peano-framework.org /** * This file defines some macros for d-dimensional loops. * * @version $Revision: 1.10 $ * @author Tobias Weinzierl */ #ifndef _PEANO_UTILS_LOOP_H_ #define _PEANO_UT...
area.c
#include <stdio.h> #include <math.h> #define LEFT 0.0F #define RIGHT 3.1416F #define SLICES 100000000 #define WIDTH ((RIGHT-LEFT)/SLICES) int main() { int i; double area=0.0f, s; #pragma omp parallel for private(s) for (i=0;i<SLICES;++i) { s = sin(LEFT+i*WIDTH)*WIDTH; #pragma omp critical ...
builder.h
// Copyright (c) 2015, The Regents of the University of California (Regents) // See LICENSE.txt for license details #ifndef BUILDER_H_ #define BUILDER_H_ #include <algorithm> #include <cinttypes> #include <fstream> #include <functional> #include <type_traits> #include <utility> #include "timer.h" #include "command_l...
rfw_random.h
/* Algorithm for Steiner Problem in Graphs Copyright (c) Microsoft Corporation All rights reserved. MIT License 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, in...
basic_openmp.c
#include <stdio.h> #include <stdlib.h> int main(){ #pragma omp parallel { printf( "Hello World\n" ); } return EXIT_SUCCESS; }
bt.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 3.0 structured OpenMP C versions - BT This benchmark is an OpenMP C version of the NPB BT code. The OpenMP C 2.3 versions are derived by RWCP from the serial Fortran versions in "NPB 2.3-serial" developed by N...
OMPIRBuilder.h
//===- IR/OpenMPIRBuilder.h - OpenMP encoding builder for LLVM IR - 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 // //===---------------------------...
StreamTriad_par1.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include "timer.h" int main(int argc, char *argv[]){ int nsize = 20000000, ntimes=16; double a[nsize]; double b[nsize]; double c[nsize]; struct timespec tstart; // initializing data and arrays double scalar = 3.0, time_sum = 0.0; #pragma o...
GB_binop__le_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
GB_unaryop__ainv_uint32_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
GB_binop__eq_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
cache.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
parallel-simple.c
/* * parallel-simple.c -- Archer testcase */ //===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // // See tools/archer/LICENSE.txt for details. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception ...
opi.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <omp.h> int main(int argc, char **argv) { //seed random number generator // Q2b: get the number of threads to run with from agrv and // add OpenMP API code to set number of threads here int Nthreads = atoi(argv[1]); omp_set_num_threads(Nth...
convolution_sgemm.h
// BUG1989 is pleased to support the open source community by supporting ncnn available. // // Copyright (C) 2019 BUG1989. 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 the License at // //...
convolution_pack4to1_bf16s.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 ...
DRB035-truedepscalar-orig-yes.c
/* Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory Written by Chunhua Liao, Pei-Hung Lin, Joshua Asplund, Markus Schordan, and Ian Karlin (email: liao6@llnl.gov, lin32@llnl.gov, asplund1@llnl.gov, schordan1@llnl.gov, karlin1@llnl.gov) LLNL-CODE-73214...
special_random_ops.h
/******************************************************************************* * Copyright (c) 2015-2018 Skymind, Inc. * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at * https://www.apache.org/licenses/LICENSE-2.0. * *...
convolution_1x1_packnto1_fp16s.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 ...
convolution_sgemm.h
// BUG1989 is pleased to support the open source community by supporting ncnn available. // // Copyright (C) 2019 BUG1989. 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 the License at // //...
lai.c
#include<stdio.h> #include "gdal.h" #include<omp.h> #include "cpl_string.h" /* mcd15A3 MODLAND_QC bits [0-1] * 0 -> class 0: LAI produced, Good quality (main algorithm with or without saturation) * 1 -> class 1: LAI produced, Other Quality (back-up algorithm or fill values) */ #define NODATA 255 #define Null 100000...
deprecate.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
zgeadd.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @precisions normal z -> s d c * **/ #include "plasma.h" #include "plasma_async.h" #include "plasma_context.h" #include "plasma_descriptor.h" #include "plasma_internal.h" #include ...
DRB025-simdtruedep-var-yes.c
/* Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory Written by Chunhua Liao, Pei-Hung Lin, Joshua Asplund, Markus Schordan, and Ian Karlin (email: liao6@llnl.gov, lin32@llnl.gov, asplund1@llnl.gov, schordan1@llnl.gov, karlin1@llnl.gov) LLNL-CODE-73214...
DRB039-truedepsingleelement-orig-yes.c
/* Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory Written by Chunhua Liao, Pei-Hung Lin, Joshua Asplund, Markus Schordan, and Ian Karlin (email: liao6@llnl.gov, lin32@llnl.gov, asplund1@llnl.gov, schordan1@llnl.gov, karlin1@llnl.gov) LLNL-CODE-73214...
GB_binop__isne_int8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
graph.h
// Copyright (c) 2015, The Regents of the University of California (Regents) // See LICENSE.txt for license details #ifndef GRAPH_H_ #define GRAPH_H_ #include <algorithm> #include <cinttypes> #include <cstddef> #include <iostream> #include <type_traits> #include "pvector.h" #include "util.h" /* GAP Benchmark Suite...
core_dtsmlq.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @generated from /home/luszczek/workspace/plasma/bitbucket/plasma/core_blas/core_ztsmlq.c, normal z -> d, Fri Sep 28 17:38:24 2018 * **/ #include <plasma_core_blas.h> #include "pla...
GB_binop__islt_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
graphAdjLinkedList.c
// ----------------------------------------------------------------------------- // // "00_AccelGraph" // // ----------------------------------------------------------------------------- // Copyright (c) 2014-2019 All rights reserved // ----------------------------------------------------------------------------- ...
BlockMatching_private_initializer.h
#include <algorithm> #include <cmath> #include <iostream> #include <new> #include <stdexcept> template <class T> BlockMatching<T>::BlockMatching(void) { _width = 0; _height = 0; _block_size = 0; _cells_width = 0; _cells_height = 0; _subpixel_scale = 1; } template <class T> BlockMatching<T>::BlockMatching(...
DRB095-doall2-taskloop-orig-yes.c
/* Copyright (C) 1991-2018 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it andor modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the L...
Mrpt.h
#ifndef CPP_MRPT_H_ #define CPP_MRPT_H_ #include <algorithm> #include <functional> #include <numeric> #include <random> #include <string> #include <vector> #include <cmath> #include <Eigen/Dense> #include <Eigen/SparseCore> using namespace Eigen; class Mrpt { public: /** * The constructo...
GMS_simd_memops.h
#ifndef __GMS_SIMD_MEMOPS_H__ #define __GMS_SIMD_MEMOPS_H__ namespace file_info { const unsigned int gGMS_SIMD_MEMOPS_MAJOR = 1U; const unsigned int gGMS_SIMD_MEMOPS_MINOR = 1U; const unsigned int gGMS_SIMD_MEMOPS_MICRO = 0U; const unsigned int gGMS_SIMD_MEMOPS_FULLVER = 1000U*gGMS_SIMD_MEMOPS...
for_loop.c
// RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s // REQUIRES: ompt // UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8 #include "callback.h" #include <omp.h> int main() { int y[] = {0,1,2,3}; #pragma omp parallel num_threads(2) { //implicit barrier at end of for loop int i; #pragma omp f...
GB_unop__acosh_fc64_fc64.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...
common.h
#ifndef COMMON_H #define COMMON_H #include <sys/time.h> #ifdef ENABLE_OPENMP #include <omp.h> #endif //#define GCC_EXTENSION #define OPENMP_3_1 double rtclock() { struct timezone Tzp; struct timeval Tp; int stat; stat = gettimeofday (&Tp, &Tzp); if (stat != 0) printf("Error return from gettimeofday: %d",stat); r...
GB_unop__identity_fp64_fc32.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...
constant_density_acoustic_time_scalar_2D_6.h
#ifndef __CDA_TIME_SCALAR_2D_6__ #define __CDA_TIME_SCALAR_2D_6__ #include <stdlib.h> template< typename T, int ACCURACY > void cda_time_scalar_2D_6( T* km1_u, int nr_km1_u, int nc_km1_u, // in - padded wavefield shape T* k_Phix, int nr_k_Phix, int nc_k_Phix, // in...
program5.5.c
#include <stdlib.h> #include <stdio.h> #include <omp.h> #include <time.h> #include <malloc.h> int main(int agrc, char* argv[]) { int thread_count = strtol(argv[1], NULL, 10); int n = strtol(argv[2], NULL, 10); int* array = (int *)malloc(n * sizeof(int)); int temp; double start, end; srand(time...
vector.h
/****************************************************************************************************************/ /* */ /* OpenNN: Open Neural Networks Library ...
uts.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...
no_option.c
// RUN: %clang_cc1 -verify -o - %s // RUN: %clang_cc1 -verify -o - %s // SIMD-ONLY0-NOT: {{__kmpc|__tgt}} // expected-no-diagnostics int a; #pragma omp threadprivate(a, b) #pragma omp parallel
convolution_5x5.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2017 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 ...
OmpForBeginLink.c
int main() { int i; #pragma omp for for (i = 0; i < 10; i++) { } }
composite.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
mat_mul_blocks.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <omp.h> struct matrix { int ncols; int nrows; double* mat; }; #define BLOCKSIZE 64 void readMatrix(double** m, FILE* file, int rows, int cols); void printMatrix(double** m, FILE* file, int rows, int cols); void matrixMul(int BS, double** m1, doub...
MASK_merge_core.c
/* This works has been developed at Diamond Light Source Ltd. * * Copyright 2019 Daniil Kazantsev * * 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/LICE...
ipa-fnsummary.c
/* Function summary pass. Copyright (C) 2003-2020 Free Software Foundation, Inc. Contributed by Jan Hubicka This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, o...
Load.c
/***************************************************************************** ! * ! * Elmer, A Finite Element Software for Multiphysical Problems ! * ! * Copyright 1st April 1995 - , CSC - IT Center for Science Ltd., Finland ! * ! * This library is free software; you can redistribute it and/or ! * modify it under...
convolution_1x1_pack8to16.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2022 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 ...
GB_unop__ainv_fp64_fp64.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://...
update_W_b.c
#include "q_incs.h" #include "dnn_types.h" #include "update_W_b.h" int update_W_b( float ***W, float ***dW, float **b, float **db, int nl, int *npl, bool **d, // true => dropout; false => keep float alpha // learning rate ) { int status = 0; // Updates the 'W' and 'b' for ( int...
zlange.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @precisions normal z -> s d c * **/ #include "plasma.h" #include "plasma_async.h" #include "plasma_context.h" #include "plasma_descriptor.h" #include "plasma_internal.h" #include ...
StmtOpenMP.h
//===- StmtOpenMP.h - Classes for OpenMP directives ------------*- 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 // //===---------------------------...
rwpng.c
/*--------------------------------------------------------------------------- pngquant: RGBA -> RGBA-palette quantization program rwpng.c --------------------------------------------------------------------------- © 1998-2000 by Greg Roelofs. © 2009-2014 by Kornel Lesiński. All rights res...