source
stringlengths
3
92
c
stringlengths
26
2.25M
ztrsm.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 ...
util.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "base.h" #include "thd_info.h" #include "util.h" #include <omp.h> /******************************************************************...
vla-4.c
// { dg-do compile } void foo(int n, int i) { int A[n]; #pragma omp parallel firstprivate(A) { A[i] = 1; } }
pr85956.c
/* PR middle-end/85956 */ /* { dg-do compile } */ /* { dg-additional-options "-O2 -Wall" } */ void foo (int n, void *p) { int (*a)[n] = (int (*)[n]) p; #pragma omp parallel shared(a) default(none) #pragma omp master a[-1][-1] = 42; /* { dg-warning "array subscript -1 is below array bounds" } */ }
GB_binop__plus_uint8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
irbuilder_unroll_heuristic.c
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --function-signature --include-generated-funcs // RUN: %clang_cc1 -fopenmp-enable-irbuilder -verify -fopenmp -fopenmp-version=51 -x c -triple x86_64-unknown-unknown -emit-llvm %s -o - | FileCheck %s // expected-no-diagnostics #ifnd...
nco_rgr.c
/* $Header$ */ /* Purpose: NCO regridding utilities */ /* Copyright (C) 2015--present Charlie Zender This file is part of NCO, the netCDF Operators. NCO is free software. You may redistribute and/or modify NCO under the terms of the 3-Clause BSD License with exceptions described in the LICENSE file */ #inc...
task.c
#include <stdlib.h> #include <stdio.h> #include <omp.h> int main(int argc, char** argv) { int num_of_threads = atoi(argv[1]), counter = 0; omp_set_num_threads(num_of_threads); #pragma omp parallel shared(counter) { int index = omp_get_thread_num(); while (1) if (index == counter) { printf(...
streamcluster_omp.c
/*********************************************** streamcluster_omp.cpp : parallelized code of streamcluster using OpenMP - original code from PARSEC Benchmark Suite - parallelization with OpenMP API has been applied by Sang-Ha (a.k.a Shawn) Lee - sl4ge@virginia.edu University of Virginia Department of Electr...
MeshToImageEngine.h
/****************************************************************************** * SOFA, Simulation Open-Framework Architecture, development version * * (c) 2006-2017 INRIA, USTL, UJF, CNRS, MGH * * * ...
Example3b.c
#include <stdio.h> int main(){ int sum = 1; int i = 1; // increase sum by one each iteratiob using openmp #pragma omp parallel for private(i) reduction( + : sum ) for (i = i; i < 10; i ++) { sum +=1; } int equal = (sum == i); printf(" equal is %d\n", equal); return 0; }
nodal_two_step_v_p_strategy.h
// // Project Name: KratosPFEMFluidDynamicsApplication $ // Last modified by: $Author: AFranci $ // Date: $Date: June 2018 $ // Revision: $Revision: 0.0 $ // // #ifndef KRATOS_NODAL_TWO_STEP_V_P_STRATEGY_H #define KRATO...
relu6_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...
DRB031-truedepfirstdimension-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...
taskloop_nogroup_tied_scheduling.c
// RUN: %libomp-compile && env KMP_ABT_NUM_ESS=4 %libomp-run // REQUIRES: abt #include "omp_testsuite.h" #include "bolt_scheduling_util.h" int test_taskloop_nogroup_tied_scheduling() { int i, vals[6]; memset(vals, 0, sizeof(int) * 6); timeout_barrier_t barrier; timeout_barrier_init(&barrier); #pragma omp p...
sp.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 3.0 structured OpenMP C versions - SP This benchmark is an OpenMP C version of the NPB SP code. The OpenMP C 2.3 versions are derived by RWCP from the serial Fortran versions in "NPB 2.3-serial" developed by NA...
DRB046-doall2-orig-no.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...
3518.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...
mapper_utilities.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Philipp Bucher, Jordi Cotela // // See Master-The...
struct_matvec.c
/*BHEADER********************************************************************** * Copyright (c) 2008, Lawrence Livermore National Security, LLC. * Produced at the Lawrence Livermore National Laboratory. * This file is part of HYPRE. See file COPYRIGHT for details. * * HYPRE is free software; you can redistribute...
fft_host.h
#include <stdio.h> #include <assert.h> #include <vector> #include <iostream> #include <math.h> size_t bitreverse_host(size_t n, const size_t l) { size_t r = 0; for (size_t k = 0; k < l; ++k) { r = (r << 1) | (n & 1); n >>= 1; } return r; } template <typename FieldT> void _basic_ser...
matconcat.c
#include "matrix.h" /** \brief Concatenates two matrices * * \param[in] A Input first matrix * \param[in] B Input second matrix * \param[in] dim Concatenation direction (ROWS/COLS) * \return \f$ \left[\begin{array}{cc} A & B \end{array}\right] \f$ or \f$ \left[\begin{array}{c} A \\ B \end{array}\right] \f$ * *...
tree.h
#ifndef LIGHTGBM_TREE_H_ #define LIGHTGBM_TREE_H_ #include <LightGBM/meta.h> #include <LightGBM/dataset.h> #include <string> #include <vector> #include <memory> namespace LightGBM { #define kMaxTreeOutput (100) #define kCategoricalMask (1) #define kDefaultLeftMask (2) /*! * \brief Tree model */ class Tree { public...
atomic_read_codegen.c
// RUN: %clang_cc1 -verify -triple x86_64-apple-darwin10 -fopenmp -x c -emit-llvm %s -o - | FileCheck %s // RUN: %clang_cc1 -fopenmp -x c -triple x86_64-apple-darwin10 -emit-pch -o %t %s // RUN: %clang_cc1 -fopenmp -x c -triple x86_64-apple-darwin10 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s // expected-...
cauchy.c
/*! @copyright (c) 2017 King Abdullah University of Science and * Technology (KAUST). All rights reserved. * * STARS-H is a software package, provided by King Abdullah * University of Science and Technology (KAUST) * * @file src/applications/cauchy.c * @version 1.3.0 * @author A...
atomic_read_codegen.c
// RUN: %clang_cc1 -verify -triple x86_64-apple-darwin10 -target-cpu core2 -fopenmp -x c -emit-llvm %s -o - | FileCheck %s // RUN: %clang_cc1 -fopenmp -x c -triple x86_64-apple-darwin10 -target-cpu core2 -emit-pch -o %t %s // RUN: %clang_cc1 -fopenmp -x c -triple x86_64-apple-darwin10 -target-cpu core2 -include-pch %t ...
ccd.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "completion.h" #include "../csf.h" #include "../tile.h" #include "../util.h" #include <math.h> #include <omp.h> /* It is faster to co...
shared-clause.c
#include <stdio.h> #ifdef _OPENMP #include <omp.h> #endif int main() { int i, n = 7; int a[n]; for (i=0; i<n; i++) a[i] = i+1; #pragma omp parallel for shared(a) default(none) for (i=0; i<n; i++) a[i] += i; printf("Después de parallel for:\n"); for (i=0; i<n; i++) printf("a[%d...
ast-dump-openmp-taskwait.c
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -ast-dump %s | FileCheck --match-full-lines -implicit-check-not=openmp_structured_block %s void test() { #pragma omp taskwait } // CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc> // CHECK: `-FunctionDecl {{.*}} <{{.*}}ast-dump-openmp-taskwai...
par_mgr.c
/****************************************************************************** * Copyright 1998-2019 Lawrence Livermore National Security, LLC and other * HYPRE Project Developers. See the top-level COPYRIGHT file for details. * * SPDX-License-Identifier: (Apache-2.0 OR MIT) **************************************...
sectionsModificado.c
#include <stdio.h> #include <omp.h> void funcA() { printf("En funcA: esta sección la ejecuta el thread %d\n", omp_get_thread_num()); } void funcB() { printf("En funcB: esta sección la ejecuta el thread %d\n", omp_get_thread_num()); } int main() { #pragma omp parallel sections { #pragma omp section ...
omp_taskloop_grainsize.c
// RUN: %libomp-compile-and-run // RUN: %libomp-compile && env KMP_TASKLOOP_MIN_TASKS=1 %libomp-run // These compilers don't support the taskloop construct // UNSUPPORTED: gcc-4, gcc-5, icc-16 // GCC 6 has support for taskloops, but at least 6.3.0 is crashing on this test // UNSUPPORTED: gcc-6 /* * Test for taskloop...
bestcrypt_fmt_plug.c
/* * Format for cracking Jetico BestCrypt 8.x / 9.x containers. * * This software is Copyright (c) 2017, Dhiru Kholia <dhiru.kholia at gmail.com>, * and it is hereby released to the general public under the following terms: * * Redistribution and use in source and binary forms, with or without modification, * ar...
ParallelClusterCreator.h
#include <memory> #include <omp.h> //class for running clustering algorithm on Charts struct ParallelClusterCreator { static uint32_t create_charts(std::map<uint32_t, uint32_t> &chart_id_map, Polyhedron &P, const double cost_threshold, ...
HierarchicalModel.h
/* Copyright (c) 2017, Fabian Prada 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 discl...
CLHelper.h
//------------------------------------------ //--cambine:helper function for OpenCL //--programmer: Jianbin Fang //--date: 27/12/2010 //------------------------------------------ #ifndef _CL_HELPER_ #define _CL_HELPER_ #include <CL/cl.h> #include <fstream> #include <iostream> #include <string> #include <ve...
simd_misc_messages.c
// RUN: %clang_cc1 -fsyntax-only -fopenmp -verify %s // expected-error@+1 {{unexpected OpenMP directive '#pragma omp simd'}} #pragma omp simd // expected-error@+1 {{unexpected OpenMP directive '#pragma omp simd'}} #pragma omp simd foo // expected-error@+1 {{unexpected OpenMP directive '#pragma omp simd'}} #pragma om...
DRB031-truedepfirstdimension-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_unaryop__ainv_int8_uint8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
vtp_fmt_plug.c
/* * Cracker for MD5 based authentication in VTP. * * This software is Copyright (c) 2014 Alexey Lapitsky <lex at * realisticgroup.com> and Dhiru Kholia <dhiru at openwall.com>, and it is * hereby released to the general public under the following terms: * * Redistribution and use in source and binary forms, wit...
GB_binop__isgt_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-...
3d25pt.c
/* * Order-2, 3D 25 point stencil * Adapted from PLUTO and Pochoir test bench * * Tareq Malas */ #include <stdio.h> #include <stdlib.h> #include <sys/time.h> #ifdef LIKWID_PERFMON #include <likwid.h> #endif #include "print_utils.h" #define TESTS 2 #define MAX(a,b) ((a) > (b) ? a : b) #define MIN(a,b) ((a) < (b)...
soma_clustering.h
// ----------------------------------------------------------------------------- // // Copyright (C) 2021 CERN & Newcastle University for the benefit of the // BioDynaMo collaboration. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compl...
hmacSHA256_fmt_plug.c
/* * This software is Copyright (c) 2012 magnum, and it is hereby released to the * general public under the following terms: Redistribution and use in source * and binary forms, with or without modification, are permitted. * * Based on hmac-md5 by Bartavelle * * SIMD added Feb, 2015, JimF. */ #if FMT_EXTERNS...
GB_binop__pow_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
ExtraFullGraphSearcher.h
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #ifndef _SPTAG_SPANN_EXTRASEARCHER_H_ #define _SPTAG_SPANN_EXTRASEARCHER_H_ #include "inc/Helper/VectorSetReader.h" #include "inc/Helper/AsyncFileReader.h" #include "IExtraSearcher.h" #include "../Common/TruthSet.h" #incl...
GB_unop__identity_fc32_int8.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...
private-clause.c
#include <stdio.h> #ifdef _OPENMP #include <omp.h> #else #define omp_get_thread_num()0 #endif main(){ int i,n=7; int a[n], suma; for(i=0;i<n;i++) a[i]=i; #pragma omp parallel private(suma) { suma=0; #pragma omp for for(i=0; i<n; i++){ suma=suma+a[i]; printf ("thread %d suma a[%d...
indexreduce.h
/* * * Created on: Dec 28, 2015 * Author: agibsonccc */ #ifndef INDEXREDUCE_H_ #define INDEXREDUCE_H_ #include "../helpers/shape.h" #ifdef _OPENMP #include <omp.h> #endif #include <dll.h> #include <ops/ops.h> #include <op_boilerplate.h> #ifdef __CUDACC__ #include <helper_cuda.h> #include <cuda.h> #include <...
GB_unaryop__minv_uint64_int8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
image.c
/*! *********************************************************************** * \file image.c * * \brief * Decode a Slice * * \author * Main contributors (see contributors.h for copyright, address and affiliation details) * - Inge Lille-Langoy <inge.lille-langoy@telenor.com> *...
profile.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
block-3.c
// { dg-do compile } extern int test(int); void foo() { int i; for (i = 0; i < 10; ++i) { #pragma omp sections { continue; // { dg-error "invalid branch to/from OpenMP structured block" } } } #pragma omp sections { #pragma omp section { bad1: ; } #pragma omp section...
time_omp_eager_future.c
#ifdef HAVE_CONFIG_H # include "config.h" /* for _GNU_SOURCE */ #endif #include <assert.h> #include <stdio.h> #include <omp.h> #include <pthread.h> #include <qthread/qthread.h> #include <qthread/qtimer.h> #include "argparsing.h" static uint64_t *rets = NULL; static pthread_mutex_t *ret_sync = NULL; static...
ProgressBar.h
/** * Copyright (c) 2021 Darius Rückert * Licensed under the MIT License. * See LICENSE file for more information. */ #pragma once #include "saiga/config.h" #include "saiga/core/math/imath.h" #include "saiga/core/time/all.h" #include "saiga/core/util/Thread/SpinLock.h" #include "saiga/core/util/Thread/threadName.h...
Sigmoid.h
// -------------------------------------------------------------------------- // Binary Brain -- binary neural net framework // // Copyright (C) 2018-2019 by Ryuji Fuchikami // https://github.com/ryuz // ryuji.fuchikami@nift...
GB_binop__isle_uint64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
iwork_fmt_plug.c
/* JtR format to crack iWork '09, and '13 / '14 files. * * This software is Copyright (c) 2015, Dhiru Kholia <kholia at kth.se> and * Maxime Hulliger <hulliger at kth.se>, and it is hereby released to the * general public under the following terms: * * Redistribution and use in source and binary forms, with or wi...
main.c
/****************************************************************************** * * * MAIN.C * * * ...
lsm3d_blsm_openmp_v2.c
#include "openst/eikonal/lsm.h" #define M_LSM3D_IMP_NAME "BLSMv2" const char OPENST_LSM3D_COMPUTEPARTIAL_IMP_NAME[] = M_LSM3D_IMP_NAME; const size_t OPENST_LSM3D_COMPUTEPARTIAL_IMP_NAME_LENGTH = sizeof(M_LSM3D_IMP_NAME); #include <pthread.h> #include <semaphore.h> #include <errno.h> sem_t *sem; int OpenST_LSM3D_C...
t_factorize_root_parallel.c
/* ========================================================================== */ /* === GPU/t_factorize_root_parallel.c ====================================== */ /* ========================================================================== */ /* -------------------------------------------------------------------------...
kernel.c
/****************************************************************************** * Copyright (c) Intel Corporation - All rights reserved. * * This file is part of the LIBXSMM library. * * * ...
cache.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_binop__ge_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:...
superimpose.c
/******************************************************************************* * -/_|:|_|_\- * * File: qcprot.c * Version: 1.4 * * Function: Rapid calculation of the least-squares rotation using a * quaternion-based characteristic polynomial and * ...
episerver_fmt_plug.c
/* *New* EPiServer cracker patch for JtR. Hacked together during Summer of * 2012 by Dhiru Kholia <dhiru.kholia at gmail.com> for GSoC. Based on sample * code by hashcat's atom. * * This software is Copyright (c) 2012, Dhiru Kholia <dhiru.kholia at gmail.com>, * and it is hereby released to the general public unde...
MatrixVector.c
/****************************************************************************** * Example - Matrix-vector multiplication - C/C++ Version * FILE: MatrixVector.c * DESCRIPTION: * This example multiplies matrix A with a vector element and * stores the summed products in vector c. **********************************...
3d25pt.lbpar.c
#include <omp.h> #include <math.h> #define ceild(n,d) ceil(((double)(n))/((double)(d))) #define floord(n,d) floor(((double)(n))/((double)(d))) #define max(x,y) ((x) > (y)? (x) : (y)) #define min(x,y) ((x) < (y)? (x) : (y)) /* * Order-2, 3D 25 point stencil * Adapted from PLUTO and Pochoir test bench * * Tar...
mg.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 3.0 structured OpenMP C versions - MG This benchmark is an OpenMP C version of the NPB MG code. The OpenMP C 2.3 versions are derived by RWCP from the serial Fortran versions in "NPB 2.3-serial" developed by N...
linear-1.c
/* { dg-do compile } */ /* { dg-options "-fopenmp" } */ int i, j; void f1 (void) { #pragma omp for linear (i:1) /* { dg-error "iteration variable .i. should not be linear" } */ for (i = 0; i < 32; i++) ; } void f2 (void) { #pragma omp distribute parallel for linear (i:1) /* { dg-error ".linear. is not vali...
lastPrivate.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> int main(void){ int i; int x; x=44; #pragma omp parallel #pragma omp for lastprivate(x) for(i=0;i<=10;i++){ x=i; printf("Thread number: %d x: %d\n",omp_get_thread_num(),x); } printf("x is %d\n", x); }
convolutiondepthwise_3x3.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 ...
GB_unop__bnot_uint32_uint32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://...
sum.c
// Jacobi 3D skeleton program #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include "timing.h" int main(int argc, char** argv) { double wct_start,wct_end,cput_start,cput_end,runtime,r; int iter,size,i,j,k,n; double *f1, *f2; iter=1000; double mintime = 4.0; if (argc != 2 ...
rmse.c
/*************************************************************************/ /** File: rmse.c **/ /** Description: calculate root mean squared error of particular **/ /** clustering. **/ /** Author: Sang-Ha Lee **/ /** University of Virginia....
host_as_target.c
// Check that specifying device as omp_get_initial_device(): // - Doesn't cause the runtime to fail. // - Offloads code to the host. // - Doesn't transfer data. In this case, just check that neither host data nor // default device data are affected by the specified transfers. // - Works whether it's specified direct...
ApproxWeightPerfectMatching.h
// // ApproxWeightPerfectMatching.h // // // Created by Ariful Azad on 8/22/17. // // #ifndef ApproxWeightPerfectMatching_h #define ApproxWeightPerfectMatching_h #include "CombBLAS/CombBLAS.h" #include "BPMaximalMatching.h" #include "BPMaximumMatching.h" #include <parallel/algorithm> #include <parallel/numeric> #...
TRPO_Lightweight.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <sys/time.h> #include "omp.h" #include "TRPO.h" #include "lbfgs.h" double TRPO_Lightweight (TRPOparam param, const int NumIter, const size_t NumThreads) { //////////////////// Read Parameters //////////////////// // OpenM...
bias_add.h
// Copyright 2018 Xiaomi, Inc. 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 applicab...
md2_fmt_plug.c
/* MD2 cracker patch for JtR. Hacked together during May of 2013 by Dhiru * Kholia <dhiru at openwall.com>. * * This software is Copyright (c) 2013 Dhiru Kholia <dhiru at openwall.com> and * it is hereby released to the general public under the following terms: * * Redistribution and use in source and binary form...
CRC64.h
/* * Copyright (C) 2015, UChicago Argonne, LLC * All Rights Reserved * * Generic IO (ANL-15-066) * Hal Finkel, Argonne National Laboratory * * OPEN SOURCE LICENSE * * Under the terms ...
vms_fmt_plug.c
/* * This file is part of John the Ripper password cracker. * * It comes from OpenVMS support 2.4(jtr_vms_2-4.zip) patch * posted by David Jones. * * Converted to OpenVMS format module by David Jones * * Copyright (c) 2011 by David L. Jones <jonesd/at/columbus.rr.com>, * Copyright (c) 2012 by Dhiru Kholia <dhi...
task_detach_aio.c
// Inspired by document: OpenMP API Examples // version 5.1 August 2021 // Section 4.4. "Task Detachment" // Pass -lrt to linker #include <stdio.h> #include <unistd.h> #include <fcntl.h> #include <aio.h> #include <errno.h> #include <signal.h> #include <omp.h> #define IO_SIGNAL SIGUSR1 // Signal used to notify I/O co...
GB_binop__second_uint64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
gs.c
#include <stdio.h> #include <stddef.h> #include <stdlib.h> #include <string.h> #include "c99.h" #include "name.h" #include "fail.h" #include "types.h" #ifdef _OPENMP #include "omp.h" #endif #define gs_op gs_op_t /* fix conflict with fortran */ #include "gs_defs.h" #include "gs_local.h" #include "comm.h" #include ...
Example_set_dynamic_nthrs.1.c
/* * @@name: set_dynamic_nthrs.1c * @@type: C * @@compilable: yes * @@linkable: no * @@expect: success */ #include <omp.h> #include <stdlib.h> void do_by_16(float *x, int iam, int ipoints) {} void dynthreads(float *x, int npoints) { int iam, ipoints; omp_set_dynamic(0); omp_set_num_threads(16); #pragma omp ...
threadpool.h
/* Copyright 2015 The TensorFlow 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 a...
runtime.c
#include "runtime.h" #if 0 /* Maximum number of simultaneous tasks */ #define MAX_TASK 256 struct rt_s_tasks{ int n_task; volatile int *task_pool; } RT_TASK; #endif int RT_get_runtime() { plasma_context_t *plasma; plasma = plasma_context_self(); return plasma->runtime; } void RT_get_size() { plasma_context_t *...
pooling_3x3.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 ...
openmp.c
#include <stdio.h> #include <stdlib.h> #include <string.h> // #include <omp.h> #include <time.h> //Student ID: 21804416 //Name: SUN QIANG //Where use openmp speed up: //Here we have four tasks using openmp to speed up //1. use openmp to sort all columns //2. use openmp to generate blocks //3. The key point here, use ...
dataracetest2.c
// NO data race int main() { double a[10][10]; for(int d=0;d<1;d++) { #pragma omp parallel for for(int i=0;i<10;i++) { for(int j=0;j<10;j++) { a[i][j]=0; #pragma ivdep #pragma vector always #pragma simd for(int k=0;k<10;k++) { a[i][k]=1; } } } } return 0;...
ft_ao.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 required ...
pre_utilities.h
#ifndef PRE_UTILITES_H #define PRE_UTILITES_H /* System includes */ #include <limits> #include <iostream> #include <iomanip> #include <fstream> #include <vector> #include <stdlib.h> #include <time.h> #include <string> /* External includes */ #ifdef _OPENMP #include <omp.h> #endif /* Project includes */ #include "inc...
projsplx.h
/*! * Software SPAMS v2.5 - Copyright 2009-2014 Julien Mairal * * This file is part of SPAMS. * * SPAMS 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 of the License, or * (at your o...
GB_binop__isne_int8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
kernel1d.h
// Copyright 2021 Yan Yan // // 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 writ...
mish_kernel_ref_fp32.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...
unpk.c
/* unpack_grib * 3/2008 public domain Wesley Ebisuzaki * 5/2016 public domain DWD */ #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> #include <stddef.h> #include "wgrib2.h" #include "grb2.h" #ifdef USE_PNG #include <png.h> int dec_png_clone(unsigned char *,int *,int *,char *); ...
omp_sample2.c
#include <stdio.h> #include <omp.h> #define N 1200 void add(int *a, int *b, int *c, int min, int max){ int i; printf("add thread_id=%d\n",omp_get_thread_num()); for(i=min; i < max; i++){ c[i] = a[i] + b[i]; } } void mul(int *a, int *b, int *d, int min, int max){ int i; printf("mul thread_id=%d \n",omp...
GB_unop__ainv_uint8_uint8.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://...