source
stringlengths
3
92
c
stringlengths
26
2.25M
w7_e3b_matvec.c
#include <stdlib.h> #include <stdio.h> #include <omp.h> #include "matvec.h" // Indexing function. #define idx(i,j) (i*n + j) int main(int argc, char const *argv[]) { if (argc < 3) { printf("Must provide m and n.\n"); return 1; } int m = atoi(argv[1]); int n = atoi(argv[2]); double...
pi2_worksharing.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <omp.h> void Usage(char *prog_name); /* * worksharing */ int main(int argc, char *argv[]) { long long n, i; double factor; double sum = 0.0; if (argc != 2) Usage(argv[0]); n = strtoll(argv[1], NULL, 10); if (n < 1) ...
complex_pk.c
#include <stdlib.h> #include <string.h> #include <limits.h> #include <math.h> #include "wgrib2.h" // #define DEBUG // // public domain 7/2009 Wesley Ebisuzaki // // return number of bits for an unsigned int // #define LEN_SEC_MAX 1023 // #define WIDTH_BITS 10 // #define LEN_SEC_MAX 255 // #define LEN_SEC_MAX 1023000...
vec_add_for.c
/* for Directive Example */ #include <omp.h> #define N 1000 #define CHUNKSIZE 100 main(int argc, char *argv[]) { int i, chunk; float a[N], b[N], c[N]; /* Some initializations */ for (i=0; i < N; i++) a[i] = b[i] = i * 1.0; chunk = CHUNKSIZE; #pragma omp parallel shared(a,b,c,chunk) pr...
otfft_avxdif16omp.h
// Copyright (c) 2015, OK おじさん(岡久卓也) // Copyright (c) 2015, OK Ojisan(Takuya OKAHISA) // Copyright (c) 2017 to the present, DEWETRON GmbH // OTFFT Implementation Version 9.5 // based on Stockham FFT algorithm // from OK Ojisan(Takuya OKAHISA), source: http://www.moon.sannet.ne.jp/okahisa/stockham/stockham.html #pragma...
sigmoid_arm_func.h
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or...
SubTVec.h
/* * NOTICE * * This work was produced at the Lawrence Livermore National Laboratory (LLNL) * under contract no. DE-AC-52-07NA27344 (Contract 44) between the U.S. * Department of Energy (DOE) and Lawrence Livermore National Security, LLC * (LLNS) for the operation of LLNL. The rights of the Federal Government are...
irbuilder_unroll_partial_heuristic_runtime_for.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 // RE...
GB_binop__pair_int16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
GnatNearestNeighbors.h
// // Copyright (c) 2009, Markus Rickert // 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 condit...
sm2x2avg_t1_1_1_1.c
#if (LEAF_PHASE_MATRICES_AUTOVECTORIZE) == 1 for(k=0; k != 2; ++k) { #if defined __INTEL_COMPILER __assume_aligned(scat2x2m,64); #pragma vector always #pragma code_align(64) #elif defined __GNUC__ && !defined __INTEL_COMPILER scat2x2m = (std::complex<float>*)__builtin_assume_aligned(scat2...
DRB104-nowait-barrier-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...
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) ...
mmc.c
/******************************************************************* * * M4RI: Linear Algebra over GF(2) * * Copyright (C) 2007, 2008 Gregory Bard <bard@fordham.edu> * Copyright (C) 2008 Martin Albrecht <M.R.Albrecht@rhul.ac.uk> * * Distributed under the terms of the GNU General Public License (G...
main.c
void foo(int N, int *A) { int TSize = 4; int T[4]; for (int I = 0; I < TSize; ++I) T[I] = I; #pragma spf region #pragma omp parallel default(shared) { #pragma omp for for (int I = 0; I < N; ++I) { A[I] = I; for (int J = 0; J < TSize; ++J) A[I] = A[I] + T[J]; } } }
cpotri.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/compute/zpotri.c, normal z -> c, Fri Sep 28 17:38:09 2018 * **/ #include "plasma.h" #include "plasma_async.h" #inc...
msxchem.c
/******************************************************************************* ** MODULE: MSXCHEM.C ** PROJECT: EPANET-MSX ** DESCRIPTION: Water quality chemistry functions. ** COPYRIGHT: Copyright (C) 2006 Feng Shang, Lewis Rossman, and James Uber. ** All Rights Reserved. See l...
omp_in_parallel.c
#include <stdio.h> #include "omp.h" #include "omp_testsuite.h" int check_omp_in_parallel (FILE * logFile) { /* checks that false is returned when called from serial region and true is returned when called within parallel region */ int serial = 1; int isparallel = 0; serial = omp_in_parallel (); #pragma om...
pztbsm.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_async.h" #include "plasma_context.h" #include "plasma_descriptor.h" #include "plasma_internal.h" #include "plasma_types.h" #in...
bvectorN.h
#ifndef BVECTOR_N_H #define BVECTOR_N_H class sbmatrixN; class sbmatrixCSR; class sbmatrixCSRA; class bvectorN { private: int n, on; vector3* v; // dot product friend m_real operator%( bvectorN const&, bvectorN const& ); public: bvectorN(); bvectorN(int); bvecto...
image.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
tree_functor.h
// ************************************************************************* // Copyright (C) 2014 by Arash Bakhtiari // You may not use this file except in compliance with the License. // You obtain a copy of the License in the LICENSE file. // Unless required by applicable law or agreed to in writing, software // di...
io_and_allocation.h
#ifndef IO_AND_ALLOCATION #define IO_AND_ALLOCATION #include <iostream> #include <string> #include <sstream> #include <fstream> #include <vector> #include <bitset> #include <ctime> #include <algorithm> #include <numeric> #include <random> #include <cmath> // log2 //#include <omp.h> #include "config.h" #include "help...
DuckingWrapper.h
/************************************* * * Filename : DuckingWrapper.h * * Projectname : diSTruct * * Author : Oskar Taubert * * Creation Date : Fri 27 Oct 2017 01:41:27 PM CEST * * Last Modified : Mon 16 Dec 2019 02:32:32 PM CET * * *************************************/ #ifndef DUCKINGWRAPPER_H #de...
GB_unaryop__identity_int32_int32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
c3d.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 the term...
run_fft_omp.c
#include "fft.h" #include <omp.h> #define MASTER 0 #define NTHREADS 8 int main(int argc, char* argv[]) { int_t len = 0, reps = 0; #ifdef N len = (int_t) N; #else if(argc > 1) { len = (int_t) atoi(argv[1]); } else { fprintf(stderr, "ERR...
sptensor.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "sptensor.h" #include "matrix.h" #include "sort.h" #include "io.h" #include "timer.h" #include <math.h> /*****************************...
DiracMatrix.h
////////////////////////////////////////////////////////////////////////////////////// // This file is distributed under the University of Illinois/NCSA Open Source License. // See LICENSE file in top directory for details. // // Copyright (c) 2019 QMCPACK developers. // // File developed by: Ye Luo, yeluo@anl.gov, Arg...
lbfgs_utils.h
/** * Copyright (c) 2015 by Contributors */ #ifndef DIFACTO_LBFGS_LBFGS_UTILS_H_ #define DIFACTO_LBFGS_LBFGS_UTILS_H_ #include <string> #include <vector> #include "dmlc/memory_io.h" #include "dmlc/omp.h" #include "difacto/base.h" #include "difacto/sarray.h" namespace difacto { namespace lbfgs { struct Job { stati...
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) **************************************...
info.c
// RUN: %libomptarget-compile-nvptx64-nvidia-cuda -gline-tables-only && env LIBOMPTARGET_INFO=31 %libomptarget-run-nvptx64-nvidia-cuda 2>&1 | %fcheck-nvptx64-nvidia-cuda -allow-empty -check-prefix=INFO // REQUIRES: nvptx64-nvidia-cuda #include <stdio.h> #include <omp.h> #define N 64 extern void __tgt_set_info_flag(u...
spmv_N_thread_static.c
/* ********************************************* * 314 Principles of Programming Languages * * Fall 2016 * ********************************************* * * Read a real (non-complex) sparse matrix from a Matrix Market (v. 2.0) file * and a vector from a txt file, perform matrix mu...
GB_unop__identity_bool_uint16.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...
segment.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
npdot.c
/* Copyright 2014-2018 The PySCF Developers. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless requi...
dsdd.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/backends/openmp/blrm/dsdd.c * @version 1.3.0 * @au...
atomic.c
/** This program uses atomic for product sum of first 10 numbers * number of threads * Sai Suraj * 22/09/2021 **/ #include <stdio.h> #include <stdlib.h> #include <omp.h> int main(int argc, char* argv[]) { // Use 4 threads when creating OpenMP parallel regions omp_set_num_threads(4); int total = 0; ...
Parser.h
//===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
12.c
#include<stdio.h> #include<stdlib.h> #include<omp.h> int main() { // omp_set_num_threads(4); #pragma omp parallel { int tid = omp_get_thread_num(); printf("\n\t\t \"Hello World\" is being printed by the thread : %d\n", tid); if (tid == 0) { int nthreads = omp_get_num_t...
bfs.c
#include <math.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #ifdef _OPENMP #include <omp.h> #endif #include "BenchmarksUtil.h" #include <sys/time.h> //#define NUM_THREAD 4 #define OPEN int no_of_nodes; int edge_list_size; FILE *fp; // Structure to hold a node information typedef stru...
filter_codelet.c
#ifdef USE_OMP #include <omp.h> #endif #include "filter.h" void filter_codelet(int *matrix_ptr1, int *matrix_ptr2) { int i; int temp1; int v1; v1 = *matrix_ptr1++; #ifdef USE_OMP #pragma omp parallel for #endif for (i = 0; i < N * N; i++) { temp1 = abs(v1); *matrix_ptr2++ = (temp1 > T) ? 255 : 0...
s_texcombine.c
/* * Mesa 3-D graphics library * * Copyright (C) 1999-2008 Brian Paul All Rights Reserved. * Copyright (C) 2009 VMware, Inc. All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to de...
sw-vector.c
/* $Id: sw-vector.c,v 1.15 2009/06/16 23:26:21 rumble Exp $ */ #include <assert.h> #include <ctype.h> #include <errno.h> #include <math.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <unistd.h> #include <zlib.h> #include <mmintrin.h> /* MMX */ #include ...
3d7pt_var.c
/* * Order-1, 3D 7 point stencil with variable coefficients * 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) #...
GB_binop__land_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...
SparseOP.h
/* * SparseOP.h * * Created on: Jul 20, 2016 * Author: mason */ #ifndef SPARSEOP_H_ #define SPARSEOP_H_ #include "MyLib.h" #include "Alphabet.h" #include "Node.h" #include "Graph.h" #include "SparseParam.h" // for sparse features class SparseParams { public: SparseParam W; PAlphabet elems; i...
loopFilter.c
/*! ************************************************************************************* * \file loopFilter.c * * \brief * Filter to reduce blocking artifacts on a macroblock level. * The filter strength is QP dependent. * * \author * Contributors: * - Peter List Peter.List@t-sy...
GB_unaryop__lnot_int8_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...
omp-taskloop-nogroup.c
#include <omp.h> #include <unistd.h> #include <stdio.h> #define THREADS 6 #define LEN 4 int main(void) { int j=0; #pragma omp parallel num_threads(THREADS) { #pragma omp taskloop nogroup for (j=0; j<LEN; j++) { usleep(30); } #pragma omp taskwait } ...
pairwise3.c
/* Generated by Cython 0.25.2 */ /* BEGIN: Cython Metadata { "distutils": { "depends": [], "extra_compile_args": [ "-Wno-unused-function", "-Wno-maybe-uninitialized", "-O3", "-ffast-math", "-fopenmp" ], "extra_link_args": [...
gimplify.c
/* Tree lowering pass. This pass converts the GENERIC functions-as-trees tree representation into the GIMPLE form. Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. Major work done by Sebastian Pop <s.pop@laposte.net>, Diego Novillo <dnovillo@redhat.com> and Jason Merrill <jason@red...
GB_unaryop__identity_bool_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...
GB_binop__pow_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
GB_AxB_dot3_phase1_template.c
//------------------------------------------------------------------------------ // GB_AxB_dot3_phase1_template: analysis phase for dot3; C<M> = A'*B //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-...
ten_tusscher_2006_RS_CPU.c
#include <assert.h> #include <stdlib.h> #include "ten_tusscher_2006.h" GET_CELL_MODEL_DATA(init_cell_model_data) { assert(cell_model); if(get_initial_v) cell_model->initial_v = INITIAL_V; if(get_neq) cell_model->number_of_ode_equations = NEQ; } //TODO: this should be called only once f...
matrix.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
timing_kernels.c
#include <inttypes.h> #include <unistd.h> #include <sys/time.h> #include <assert.h> #include <math.h> #include <papi.h> #include <omp.h> #include "prepareArray.h" #include "timing_kernels.h" // For do_work macro in the header file volatile double x,y; int _papi_eventset = PAPI_NULL; extern int max_size; run_output_t...
diffusion3d_original.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> #include <sys/time.h> #include <omp.h> #define REAL float #define NX (64) #ifndef M_PI #define M_PI (3.1415926535897932384626) #endif void init(REAL *buff, const int nx, const int ny, const int nz, const REAL kx,...
comm.h
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
sse.h
/* SPDX-License-Identifier: MIT * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, copy, * modify, merge, publish, ...
graph.c
/****************************************************************************** * INCLUDES *****************************************************************************/ #include "base.h" #include "graph.h" #include "csf.h" #include "sort.h" #include "util.h" #ifdef SPLATT_USE_PATOH #include <patoh.h> #endif #...
btheader.h
// a header with OpenMP directive #define PROBLEM_SIZE 1024 static double cuf[PROBLEM_SIZE]; static double q[PROBLEM_SIZE]; static double ue[PROBLEM_SIZE][5]; static double buf[PROBLEM_SIZE][5]; #pragma omp threadprivate(cuf, q, ue, buf)
main.c
/* * SOURCE FILE: epoll.c - Implementation of functions declared in main.h * * PROGRAM: 8005-ass1 * * DATE: Jan. 20, 2018 * * FUNCTIONS: * void thread_work(const long count); * void process_work(const long count); * void openmp_work(const long count); * void *do_work(void *arg); * void do_cpu_work(void); *...
edge_vol_int.c
/****************************************************************************** ** Copyright (c) 2016-2017, Intel Corporation ** ** All rights reserved. ** ** ** ...
Sema.h
//===--- Sema.h - Semantic Analysis & AST Building --------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
lloyds_par32.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <stdbool.h> #include <omp.h> #include "csvparser.h" void vector_init(double *a, int length) { for (int i = 0; i < length; i++) { a[i] = 0; } } void vector_copy(double *dst, double *src, int length) { for (int i = 0; i < len...
sort_bottom_scan.h
int group_range = omp_get_num_teams(); int group = omp_get_team_num(); int local_range = omp_get_num_threads(); int lid = omp_get_thread_num(); // Use local memory to cache the scanned seeds // Keep a shared histogram of all instances seen by the current block // Keep a private histogram as well int histogram[16]; ...
GB_AxB_dot2_compmask.c
//------------------------------------------------------------------------------ // GB_AxB_dot2_compmask: C<!M>=A'*B via dot products //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://suitesparse.c...
fox_floats_timer_caching_omp_fileIO_benchmark.c
/* fox_floats_timer_caching_omp_fileIO_benchmark.c -- uses Fox's algorithm to multiply two square matrices * * Implementation of parallel matrix multiplication: * LaTeX: $C_{i,j} = \sum_{k} A_{i,k}B_{k,j}$ * * Input: * Input Matrix file name: A.dat, B.dat * * Output: * Output Matrix file name: C.dat...
conv_dw_kernel_fp16_arm82.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...
distribute_simd_misc_messages.c
// RUN: %clang_cc1 -fsyntax-only -fopenmp -verify %s // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}} #pragma omp distribute simd // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}} #pragma omp distribute simd foo // expected-error@+1 {{unexpected Open...
optimize.h
/// @file optimize.h /// CMA-ES function templates for nonlinear function optimization. /// @author Ralf Quast /// @date 2021 /// @copyright MIT License #ifndef ESPECIA_OPTIMIZE_H #define ESPECIA_OPTIMIZE_H #include <algorithm> #include <cmath> #include <limits> #include <thread> #include <valarray> #include <vector> ...
CB_PackingScalarCell.h
#ifndef _CB_PACK_S_CELL_H_ #define _CB_PACK_S_CELL_H_ /* ################################################################################### # # CBrick # # Copyright (c) 2017-2020 Research Institute for Information Technology(RIIT), # Kyushu University. All rights reserved. # ######################...
project.c
//----------------------------------------------------------------------------- // project.c // // Project: EPA SWMM5 // Version: 5.1 // Date: 03/19/14 (Build 5.1.000) // 04/14/14 (Build 5.1.004) // 09/15/14 (Build 5.1.007) // 03/19/15 (Build 5.1.008) // ...
sw_tstile.h
void sw_tstile(){ printf("- tstile [16] -\n\n"); int c0,c1,c2,c3,c4,c5,c6,c7,c8,c9,c11,c10,c12,c13,c14,c15; #pragma omp parallel for for( c1 = 0; c1 <= (N - 1)/16; c1 += 1) for( c3 = 0; c3 <= (N - 1) / 16; c3 += 1) for( c5 = 16 * c1 + 1; c5 <= min(N, 16 * c1 + 16); c5 += 1) for( c7 = 16 * c3 + 1; c7 <= m...
pvm-secuencial.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> main(int argc, char **argv) { int N = atoi(argv[1]); int i,j; omp_sched_t kind; int modifier; double **m, *v1, *v2; m = (double **)malloc (N*sizeof(double *)); for (i=0;i<N;i++) m[i] = (double *) malloc (N*sizeof(double)); v1 = (double *) ma...
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) ...
fc_compute.h
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or...
GB_unop__lnot_uint8_uint8.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...
coreFLT.c
#ifdef DT32 #define flt float #define DT_CALC DT_FLOAT32 #define epsilon FLT_EPSILON #else #define flt double #define DT_CALC DT_FLOAT64 #define epsilon DBL_EPSILON #endif #ifdef _MSC_VER #ifdef _M_X64 #define __x86_64__ #endif #endif //#include <float.h> #include "core.h" #include "print.h" #ifdef USING_TIMERS ...
DRB085-threadprivate-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...
GB_matlab_helper.c
//------------------------------------------------------------------------------ // GB_matlab_helper.c: helper functions for MATLAB interface //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-...
labyrinth.c
/* ============================================================================= * * labyrinth.c * * ============================================================================= * * Copyright (C) Stanford University, 2006. All Rights Reserved. * Author: Chi Cao Minh * * ======================================...
GB_binop__times_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
compute_pi.c
/* Example that uses the composite for simd construct The numerical solution for integration has a compute-intensive loop that is parallelized and vectorized. */ double compute_pi(int n) { const double dH = 1.0 / (double) n; double dX, dSum = 0.0; #pragma omp parallel for simd private(dX) \ ...
profile.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
spmv.c
////Example of sparse matrix-vector multiply, using CSR (compressed sparse row format). #include <stdio.h> #include <stdlib.h> #include <string.h> // Add timing support #include <sys/timeb.h> #define REAL float double read_timer() { struct timeb tm; ftime(&tm); return (double) tm.time + (double) tm.millit...
aula2809.c
// omp_schedule.cpp // compile with: /openmp //#include <windows.h> #include <stdio.h> #include <omp.h> #include <unistd.h> #define NUM_THREADS 4 #define STATIC_CHUNK 5 #define DYNAMIC_CHUNK 5 #define NUM_LOOPS 20 #define sleep_EVERY_N 3 int main( ) { int nStatic1[NUM_LOOPS], nStaticN[NUM_LOOPS]; int ...
ep.c
/*-------------------------------------------------------------------- NAS Parallel Benchmarks 3.0 structured OpenMP C versions - EP This benchmark is an OpenMP C version of the NPB EP code. The OpenMP C 2.3 versions are derived by RWCP from the serial Fortran versions in "NPB 2.3-serial" developed by NA...
Tutorial.h
//================================================================================================= /*! // \file blaze/Tutorial.h // \brief Tutorial of the Blaze library // // Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved // // This file is part of the Blaze library. You can redistribute it and/or m...
pt_to_pt_pingpong.c
/***************************************************************************** * * * Mixed-mode OpenMP/MPI MicroBenchmark Suite - Version 1.0 * * * * ...
kblas_gpu_timer.h
/** * @copyright (c) 2012- King Abdullah University of Science and * Technology (KAUST). All rights reserved. **/ /** * @file src/kblas_gpu_timer.h * KBLAS is a high performance CUDA library for subset of BLAS * and LAPACK routines optimized for NVIDIA GPUs. * KBLAS is provi...
fc_compute.h
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or...
chap_fmt_plug.c
/* iSCSI CHAP authentication cracker. Hacked together during September of 2012 * by Dhiru Kholia <dhiru.kholia at gmail.com>. * * This software is Copyright (c) 2012, Dhiru Kholia <dhiru.kholia at gmail.com>, * and it is hereby released to the general public under the following terms: * Redistribution and use in s...
GB_binop__times_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
lud_omp.c
#include <stdio.h> #ifdef _OPENMP #include <omp.h> #endif void lud_omp_cpu(float *a, int size) { int i, j, k; float sum; for (i = 0; i < size; i++) { for (j = i; j < size; j++) { sum = a[i * size + j]; for (k = 0; k < i; k++) sum -= a[i * size + k] * a[k * size + j]; a[i * size + j...
fourier.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
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 -no-opaque-pointers -fopenmp-enable-irbuilder -verify -fopenmp -fopenmp-version=51 -x c -triple x86_64-unknown-unknown -emit-llvm %s -o - | FileCheck %s // expected-n...
DRB095-doall2-taskloop-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...