source
stringlengths
3
92
c
stringlengths
26
2.25M
a.4.1.c
/* { dg-do run } */ #include <omp.h> extern void abort (void); void subdomain (float *x, int istart, int ipoints) { int i; for (i = 0; i < ipoints; i++) x[istart + i] = 123.456; } void sub (float *x, int npoints) { int iam, nt, ipoints, istart; #pragma omp parallel default(shared) private(iam,nt,ipoints,ist...
visual-effects.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
SpatialFractionalMaxPooling.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "THNN/generic/SpatialFractionalMaxPooling.c" #else static int64_t* THNN_(SpatialFractionalMaxPooling_generateIntervals)( scalar_t sample, int64_t inputSize, int64_t outputSize, int poolSize) { scalar_t alpha = (scalar_t) (inputSize - poolSize) / (scalar_t) (out...
semtry.c
#include <stdio.h> #include <stdlib.h> int mutex = 1; // Number of full slots as 0 int full = 0; // Number of empty slots as size // of buffer int empty = 10, x = 0; // Function for producer void producer() { // Decrease mutex value by 1 --mutex; // Increase the number of full // slots by 1 ...
GB_unop__identity_fp64_uint64.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...
dft.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <assert.h> #include <float.h> #include <stdint.h> #include <getopt.h> #include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/time.h> #include <sys/resource.h> #include <fcntl.h> #include <complex.h> #include <f...
ofmo-os-xxxx.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include "ofmo-index.h" #include "ofmo-twoint.h" #ifdef _OPENMP #include <omp.h> #else #include "omp-dummy.h" #endif extern void fmt( double F[], const int m, const double T, const double cssss ); extern int ofmo_integ_add_fock( const int nao, const size_t n...
mpi-openmp.c
#include <stdio.h> #include <stdlib.h> #ifdef _OPENMP #include <omp.h> #else #warning Your compiler does not support OpenMP, at least with the flags you're using. #endif #include <mpi.h> #define MPI_THREAD_STRING(level) \ ( level==MPI_THREAD_SERIALIZED ? "THREAD_SERIALIZED" : \ ( level==MPI_...
laplace_par.h
#ifndef _LAPLACE_PAR_ #define _LAPLACE_PAR_ #include<omp.h> template<int SIZE> inline void initialize(double a[SIZE + 2][SIZE + 2], double b[SIZE + 2][SIZE + 2]) { //TODO implement your solution in here #pragma omp parallel for for (int i = 0; i < SIZE + 2; i++) for (int j = 0; j < SIZE + 2; j++) {...
permute.c
// Permutations that enable SSE and AVX vectorization. #include "fasttransforms.h" void permute(const double * A, double * B, const int N, const int M, const int L) { #pragma omp parallel for if (N < 2*M) for (int j = 0; j < M; j += L) for (int i = 0; i < L*N; i++) B[(L*i)%(L*N)+(L*i)/(L*N...
DecisionFunctionGenerator.h
/** * rafl: DecisionFunctionGenerator.h * Copyright (c) Torr Vision Group, University of Oxford, 2015. All rights reserved. */ #ifndef H_RAFL_DECISIONFUNCTIONGENERATOR #define H_RAFL_DECISIONFUNCTIONGENERATOR #include <utility> #ifdef WITH_OPENMP #include <omp.h> #endif #include "../examples/ExampleReservoir.h" ...
spot.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "pix.h" /*------------------------------------------------------------------------- * * Used to sort spots in descent of frame IDs. * *------------------------------------------------------------------------*/ int spot_cmp(const void *a, const void *...
GB_binop__max_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
chkompt.c
// RUN: %libomp-compile && env OMP_CANCELLATION=true %libomp-run | %sort-threads | FileCheck %s #define __STDC_FORMAT_MACROS #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <omp.h> #include <omp-tools.h> #include "chkompt.h" int nfails = 0; void (*skew_delay_ptr)(int) = ske...
GB_unaryop__identity_int32_int64.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
tworkshare.c
#include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <pthread.h> #include <stdbool.h> #include <string.h> #include <omp.h> /* OpenMP */ long result=0; void foo() { #pragma omp parallel { #pragma omp for for (long i = 0; i < 10; i++) { #pragma omp atomic result++; } #pragm...
alignment.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...
GB_unaryop__abs_int8_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...
quick_sect_d.c
#include <stdlib.h> #include <stdio.h> #include <math.h> #include <omp.h> /* OpenMP Parallel Quicksort - Sections with depth checking * Checking for depth allows for nested parallelism. * @author: ANDREW VAILLANCOURT * 2019 */ int partition (int p, int r, int *data){ int x = data[p]; int k = p; ...
ctl_pager.c
/********************************************************************[libaroma]* * Copyright (C) 2011-2015 Ahmad Amarullah (http://amarullz.com/) * * 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 Lic...
stepper.c
#include "stepper.h" #include <stdlib.h> #include <string.h> #include <math.h> #include <assert.h> #include <stdbool.h> #include <omp.h> //ldoc on /** * ## Implementation * * ### Structure allocation */ central2d_t* central2d_init(float w, float h, int nx, int ny, int nfield, flux_t f...
gather_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...
map.h
#pragma once #include <stk/image/volume.h> #include <functional> namespace stk { template<typename TVoxelInputType, typename TVoxelOutputType> VolumeHelper<TVoxelOutputType> map( const stk::VolumeHelper<TVoxelInputType>& image, const std::function<TVoxelOutputType(TVoxelInputType)> op, Volum...
solver_dcmt_omp.c
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright 2021, Liheng Zheng This file is part of UBER. UBER is free software: you can redistribute it and/or modify it under the terms of the MIT License as published by Massachusetts Institute of Technology. UBER is di...
DRB066-pointernoaliasing-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...
lsearch.h
#pragma once #ifndef FGC_LOCAL_SEARCH_H__ #define FGC_LOCAL_SEARCH_H__ #include "diskmat/diskmat.h" #include "minicore/util/oracle.h" #include "minicore/optim/kcenter.h" #include "discreture/include/discreture.hpp" #include "libsimdsampling/argminmax.h" #include <atomic> /* * In this file, we use the local search heu...
zboxloop.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) **************************************...
GB_binop__rminus_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...
conv3x3s1_winograd64_neon4_AoA.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 ...
raceCond1.c
// a progrm with race condition // online source: http://sourceforge.net/apps/trac/cppcheck/ticket/663 #include <omp.h> int main() { int a[50],i; a[0] = 1; #pragma omp parallel for for(i=1; i<50; i++) { a[i] = i + a[i-1]; } }
GB_subassign_03.c
//------------------------------------------------------------------------------ // GB_subassign_03: C(I,J) += scalar ; using S //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-License-Identifier: Ap...
try.c
#include <stdio.h> #include <string.h> #include <stdlib.h> #include "omp.h" #define N 1499336 //33554432 // 2 ^ 25 void comp(long long int *input_array, long long int *out, unsigned long size) { long long int nthr,*tt,*pp, *x = out; #pragma omp parallel num_threads(3) { long long int i; #pragma omp singl...
GB_binop__iseq_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...
parallel_for.h
/* Copyright (c) 2013, Taiga Nomi and the respective contributors All rights reserved. Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ #pragma once #include <cassert> #include <cstdio> #include <limits> #include <string> #include <type_traits> #incl...
my_functions.h
#ifndef _MY_FUNCTIONS #define _MY_FUNCTIONS #endif #ifndef PI #define PI 3.14159265358979323846 #endif // New transpose function that deals with cache miss problem // Exact implementation is modified from // http://stackoverflow.com/questions/5200338/a-cache-efficient-matrix-transpose-program void transpose_cache(dou...
krb5_tgs_fmt_plug.c
/* * Based on the work by Tim Medin * Port from his Pythonscript to John by Michael Kramer (SySS GmbH) * * This software is * Copyright (c) 2015 Michael Kramer <michael.kramer@uni-konstanz.de>, * Copyright (c) 2015 magnum * Copyright (c) 2016 Fist0urs <eddy.maaalou@gmail.com> * * Modified by Fist0urs to improv...
matrix.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
quick_sort_omp.h
// g++ -std=c++17 -fopenmp test_quick_sort.cpp -o test // Multithreaded quicksort using openMP #include <omp.h> // Swaps two pointer values template<typename T> void swap(T* a, T* b) { T tmp = *a; *a = *b; *b = tmp; } // Partitions the array such that: // - The entry args[j] is in its final place in the array, f...
GB_subref_template.c
//------------------------------------------------------------------------------ // GB_subref_template: C = A(I,J) //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 //-...
GB_binop__islt_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
mpm_search_element_utility.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ \. // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Bodhinanda Chandra // #ifndef KRATOS_MPM...
array_section_use_device_ptr.c
// RUN: %libomptarget-compile-generic -fopenmp-version=51 // RUN: %libomptarget-run-generic 2>&1 \ // RUN: | %fcheck-generic #include <stdio.h> #include <stdlib.h> #define N 1024 #define FROM 64 #define LENGTH 128 int main() { float *A = (float *)malloc(N * sizeof(float)); #pragma omp target enter data map(to : A...
pr38704.c
// RUN: %libomptarget-compile-run-and-check-generic // Clang 6.0 doesn't use the new map interface, undefined behavior when // the compiler emits "old" interface code for structures. // UNSUPPORTED: clang-6 #include <stdio.h> #include <stdlib.h> typedef struct { int *ptr1; int *ptr2; } StructWithPtrs; int main(...
GB_unop__minv_int64_int64.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...
ast-dump-openmp-begin-declare-variant_4.c
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -verify -ast-dump %s | FileCheck %s // RUN: %clang_cc1 -triple x86_64-unknown-unknown -fopenmp -verify -ast-dump %s -x c++| FileCheck %s // expected-no-diagnostics #pragma omp begin declare variant match(device={kind(cpu)}) int also_before(void) { retu...
vednnActivationForward.c
#include <stdio.h> #include <stdint.h> #include "vednnActivationForward.h" #ifdef VEDNN_USE_OPENMP #include <stdint.h> #include <omp.h> extern int __vednn_omp_num_threads ; #endif static inline vednnError_t vednnActivationForward_wrapper( vednnActivationForward_t pFunc, const void *pDataIn, void *...
boundary.c
/** * @file boundary.c * @brief Implementation of all boundary conditions. * @author Hanno Rein <hanno@hanno-rein.de> * * @details The code supports different boundary conditions. * * * @section LICENSE * Copyright (c) 2015 Hanno Rein, Shangfei Liu * * This file is part of rebound. * * rebound is fr...
blockchain.c
/********************************************************************* Homework 5 CS 110: Computer Architecture, Spring 2021 ShanghaiTech University * Last Modified: 03/28/2021 *********************************************************************/ #include "blockchain.h" #include <stdlib.h> #include <string.h> #inclu...
tinyexr.h
/* Copyright (c) 2014 - 2019, Syoyo Fujita and many contributors. 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 l...
SpatialMaxUnpooling.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "THNN/generic/SpatialMaxUnpooling.c" #else static void THNN_(SpatialMaxUnpooling_updateOutput_frame)(scalar_t *input_p, scalar_t *output_p, THIndex_t *ind_p, int n...
main.c
#include <math.h> #include <stdio.h> #include <stdlib.h> #include <mpi.h> #include <PeriodicFMM/FMMWrapper-c.h> #include <PeriodicFMM/FMMWrapperWall2D-c.h> int main(int argc, char **argv) { MPI_Init(&argc, &argv); int rank = 0, size = 0; MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WO...
hci.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...
prospector.c
#define _POSIX_C_SOURCE 200112L #include <math.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <fcntl.h> #include <dlfcn.h> #include <unistd.h> #include <sys/mman.h> #include <sys/time.h> #define ABI __attribute__((sysv_abi)) #define countof(a) ((int)(siz...
3d7pt.c
/* * Order-1, 3D 7 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) ...
eavlSourceTopologyGatherMapOp.h
// Copyright 2010-2014 UT-Battelle, LLC. See LICENSE.txt for more information. #ifndef EAVL_SOURCE_TOPOLOGY_GATHER_MAP_OP_H #define EAVL_SOURCE_TOPOLOGY_GATHER_MAP_OP_H #include "eavlCUDA.h" #include "eavlCellSet.h" #include "eavlCellSetExplicit.h" #include "eavlCellSetAllStructured.h" #include "eavlDataSet.h" #inclu...
GB_bitmap_assign_A_whole_template.c
//------------------------------------------------------------------------------ // GB_bitmap_assign_A_whole_template: traverse A for bitmap assignment into C //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved....
morphology.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_unop__abs_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...
jacobi-ompacc.c
// Naive version without any optimizations #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_stamp() { struct timeval t; double time; gettimeofday(&t,(struct timezone*)NULL); time = t.tv_s...
mttkrp.c
/* This file is part of ParTI!. ParTI! is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ParTI! is distributed...
heptane_3sp.c
#include <math.h> #include <stdio.h> #include <string.h> #include <stdlib.h> #if defined(BL_FORT_USE_UPPERCASE) #define CKINDX CKINDX #define CKINIT CKINIT #define CKFINALIZE CKFINALIZE #define CKXNUM CKXNUM #define CKSYME CKSYME #define CKSYMS CKSYMS #define CKRP CKRP #define CKPX CKPX #define CKPY CKPY #define CKPC...
GxB_BinaryOp_ytype.c
//------------------------------------------------------------------------------ // GxB_BinaryOp_ytype: return the type of y for z=f(x,y) //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-License-Iden...
convolution_channel.c
/* * Copyright (C) 2016-2022 T-Head Semiconductor Co., Ltd. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * 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 * * www.apache....
GB_unaryop__abs_int64_uint8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
target_update_array_extension.c
// -------------------------------------------------- // Check 'to' and extends before // -------------------------------------------------- // RUN: %libomptarget-compile-aarch64-unknown-linux-gnu \ // RUN: -fopenmp-version=51 -DCLAUSE=to -DEXTENDS=BEFORE // RUN: %libomptarget-run-fail-aarch64-unknown-linux-gnu 2>&1...
coll.h
#ifndef G24_LIB_COLL #define G24_LIB_COLL /********************************************** * * * BIBLIOTECA DE FUNÇÕES MULTI-DIMENSIONAIS * * * * Por: Gonçalo Vaz (87321) * * Nuno Fernandes (87342) ...
matmul.c
#include <stdio.h> #include <stdlib.h> #include <sys/time.h> //#include <malloc.h> #if OMP == 1 #include <omp.h> #endif #ifndef _N_ #define _N_ 8192 #endif #define MUL(x,y) ((x)*(y)) #ifndef VERIFICATION #define VERIFICATION 0 #endif #ifndef TRANSPOSE_Bs #define TRANSPOSE_Bs 0 #endif #ifnd...
2.norace7.c
// RUN: clang %loadLLOV %s -o /dev/null 2>&1 | FileCheck %s #include <omp.h> #define N 20 int main() { double A[N], B[N], sum0 = 0.0, sum1 = 0.0; #pragma omp parallel { #pragma omp for for (int i = 0; i < N; i++) { A[i] = i; B[i] = i * i; } #pragma omp simd reduction(+ : sum0) for (int i =...
composite.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
udr-2.c
/* { dg-do compile } */ /* { dg-options "-fopenmp" } */ struct W { int w; }; void init (struct W *, int, int *); int v; #pragma omp declare reduction (foo : long int : omp_out |= v) /* { dg-error "combiner refers to variable" } */ #pragma omp declare reduction (foo : char : omp_out = v) /* { dg-error "combiner refers ...
test_helper.h
// // Created by liql2007 on 2020/12/23. // #ifndef EFANNA2E_TEST_HELPER_H #define EFANNA2E_TEST_HELPER_H #include <iostream> #include <fstream> #include <cassert> #include <cstring> #include <sys/stat.h> #include <efanna2e/util.h> #include <efanna2e/distance.h> #include <efanna2e/neighbor.h> template<typename T> vo...
drupal7_fmt_plug.c
/* * Drupal 7 phpass variant using SHA-512 and hashes cut at 258 bits. * * 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. * * These are 8 by...
interpolation_pl.c
//------------------------------------------------------------------------------------------------------------------------------ // Samuel Williams // SWWilliams@lbl.gov // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------...
statistic.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
boundary_conditions_and_contact_utilities.h
/* ============================================================================== Kratos A General Purpose Software for Multi-Physics Finite Element Analysis Version 1.0 (Released on march 05, 2007). Copyright 2007 Pooyan Dadvand, Riccardo Rossi pooyan@cimne.upc.edu rrossi@cimne.upc.edu CIMNE (International Center for...
openmp-simd-2.c
/* { dg-do compile } */ /* { dg-options "-fopenmp-simd -fdump-tree-original" } */ extern void abort (); int a[1024] __attribute__((aligned (32))) = { 1 }; struct S { int s; }; #pragma omp declare reduction (+:struct S:omp_out.s += omp_in.s) #pragma omp declare reduction (foo:struct S:omp_out.s += omp_in.s) #pragma omp...
target_teams_distribute_misc_messages.c
// RUN: %clang_cc1 -fsyntax-only -fopenmp -verify %s -Wuninitialized // RUN: %clang_cc1 -fsyntax-only -fopenmp-simd -verify %s -Wuninitialized // expected-error@+1 {{unexpected OpenMP directive '#pragma omp target teams distribute'}} #pragma omp target teams distribute // expected-error@+1 {{unexpected OpenMP direct...
1502.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...
eval_cf.c
/******************************************************************************* * 2pt_box/eval_cf.c: this file is part of the FCFC program. * FCFC: Fast Correlation Function Calculator. * Github repository: https://github.com/cheng-zhao/FCFC * Copyright (c) 2020 -- 2021 Cheng Zhao <zhaocheng03@gmail.com> [...
GB_unop__lnot_uint32_uint32.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...
shallow_base_openmp_v3.c
/* Code converted from shallow_base.f90 using F2C-ACC program. * Manually replaced: * - WRITE statements with printf * - MOD operator with % * - system_clock with wtime * Fixed several of the array references which had x dimension as 1, * instead of M_LEN. * Fixed values set using d and e notation. * (7 J...
hsrp_fmt_plug.c
/* * Cracker for MD5 authentication in HSRP, HSRPv2, VRRP, and GLBP. * http://www.rfc-editor.org/rfc/rfc1828.txt * * This is dedicated to Darya. You inspire me. * * This software is Copyright (c) 2014, Dhiru Kholia <dhiru [at] openwall.com>, * and it is hereby released to the general public under the following t...
matrix.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
a7a.c
#define N 100000000 int a[N],b[N]; long long s=0; main() { int i; /* inicialitzacio, no en paral.lel */ for(i=0;i<N;i++) { a[i]=1; b[i]=2; } #pragma omp parallel for for (i=0;i<N;i++) b[i] += a[i]; printf("Valor i %d, de b[i] %d \n",i-1,b[i-1]); #pragma omp parallel for for (i=0;i<N;i++) { int a=0; #pragma...
GB_emult_02.c
//------------------------------------------------------------------------------ // GB_emult_02: C = A.*B where A is sparse/hyper and B is bitmap/full //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
GB_unop__abs_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...
hnswalg.h
#pragma once #include "hnswlib.h" #include "visited_list_pool.h" #include <random> #include <iostream> #include <fstream> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unordered_set> #include <unordered_map> #include <array> #include <map> #include <cmath> #include <queue> template<typename T>...
profiles.c
#include "allvars.h" #include "profiles.h" void ComputeProfiles() { int i,j,k,ic,jc,kc,l,ii,jj,kk,next,ibin,in,m,NumGrid; double xc[3],xt[3],dx[3],vt[3],dist,Rho,GridSize[3]; double dR,DeltaDiff,DeltaCum,MinDist,MaxDist,GAP; double CGal[NumProfileBins],Suma[NumPro...
decorate.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
omp-parallel-for.c
#include <omp.h> #include <stdio.h> #define LEN 20 int main(void) { int num[LEN] = {0}, k=0; #pragma omp parallel for for (k=0; k<LEN; k++) { num[k] = omp_get_thread_num(); } return 0; }
wand-view.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % W W AAA N N DDDD ...
logger.h
/* * logger.h * * Created on: 2011/04/11 * Author: shu */ #ifndef LOGGER_H_ #define LOGGER_H_ #include <iostream> #include <ostream> #include <string> class Logger { public: static Logger* GetInstance() { static Logger instance; return &instance; } void ErrorLog(std::string message) { //#pr...
load_data.h
#ifndef CSKNOW_LOAD_DATA_H #define CSKNOW_LOAD_DATA_H #define NUM_PLAYERS 10 #include <string> #include <set> #include <vector> #include <iostream> #include <unordered_map> #include <list> using std::string; using std::vector; using std::set; using std::unordered_map; using std::vector; #define CT_TEAM 0 #define T_TEAM...
bodysystemcpu_impl.h
/* * Copyright 1993-2015 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...
multiimagereconstructor.h
#ifndef MULTILINEARRECONSTRUCTION_MULTIIMAGERECONSTRUCTOR_H #define MULTILINEARRECONSTRUCTION_MULTIIMAGERECONSTRUCTOR_H #ifndef MKL_BLAS #define MKL_BLAS MKL_DOMAIN_BLAS #endif #define EIGEN_USE_MKL_ALL #include <eigen3/Eigen/Dense> #include <eigen3/Eigen/Geometry> #include <eigen3/Eigen/LU> #include "ceres/ceres.h...
final.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> #include <omp.h> #include <cilk/cilk.h> #define NMAX 75000000 double* N; int* lt; int* gt; int* eq; double* local; void init(int size){ N = malloc(size * sizeof(double)...
GB_unop__cosh_fc32_fc32.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...
tlr_potrf.h
#ifndef __H2OPUS_TLR_POTRF_H__ #define __H2OPUS_TLR_POTRF_H__ #include <h2opus/core/hara_util.cuh> #include <h2opus/util/error_approximation.h> #include <h2opus/util/host_ara.h> #include <h2opus/core/tlr/tlr_defs.h> #include <h2opus/core/tlr/tlr_struct.h> #include <h2opus/core/tlr/tlr_trsm.h> #include <h2opus/core/tl...
fourier.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
line_search_contact_strategy.h
// KRATOS ______ __ __ _____ __ __ __ // / ____/___ ____ / /_____ ______/ /_/ ___// /________ _______/ /___ ___________ _/ / // / / / __ \/ __ \/ __/ __ `/ ___/ __/\__ \/ __/ ___/ / / / ___/ __/ / / / ___/ __ `/ / // / /___/ /_/...