source
stringlengths
3
92
c
stringlengths
26
2.25M
GB_binop__minus_fc64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
GB_unaryop__lnot_fp32_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...
pf_fold.c
/* * partiton function for single RNA secondary structures * * Simplified interfaces and backward compatibility * wrappers * * Ivo L Hofacker + Ronny Lorenz * Vienna RNA package */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /*####...
exchange_boundary.c
//------------------------------------------------------------------------------------------------------------------------------ // Samuel Williams // SWWilliams@lbl.gov // Lawrence Berkeley National Lab //------------------------------------------------------------------------------------------------------------------...
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 //-...
omp.c
// RUN: mlir-clang %s --function=* -fopenmp -S | FileCheck %s void square(double* x, int sstart, int send, int sinc) { #pragma omp parallel for for(int i=sstart; i < send; i+= sinc) { x[i] = i; } } // CHECK: func @square(%arg0: memref<?xf64>, %arg1: i32, %arg2: i32, %arg3: i32) attributes {llvm....
target-2.c
/* { dg-do run } */ #include <stdlib.h> #define N 100000 void init (char *a1, char *a2) { char s = -1; int i; for (i = 0; i < N; i++) { a1[i] = s; a2[i] = i; s = -s; } } void check (char *a, char *b) { int i; for (i = 0; i < N; i++) if (a[i] != b[i]) abort (); } void v...
main.c
// // main.c // omp_for_reduction // // Created by Vicente Cubells Nonell on 03/11/14. // Copyright (c) 2014 Vicente Cubells Nonell. All rights reserved. // #include <stdio.h> #include <omp.h> int main(int argc, const char * argv[]) { int n = 1000000; int suma = 0; int i; int n...
kmp_atomic.c
/* * kmp_atomic.c -- ATOMIC implementation routines */ /* <copyright> Copyright (c) 1997-2016 Intel Corporation. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributio...
harness_parallel.h
// Copyright (C) 2021 Intel Corporation // // SPDX-License-Identifier: Apache-2.0 // values for GRAIN macro #define GS_STATIC -1 #define GS_2CHUNKS -2 #define GS_3CHUNKS -3 #define GS_4CHUNKS -4 #define GS_5CHUNKS -5 #define GS_6CHUNKS -6 #define GS_7CHUNKS -7 #define GS_8CHUNKS -8 #define GS_16CHUNKS -16 #define GS_...
learnreg.h
#ifndef _LEARNREG_H // Include guard #define _LEARNREG_H #include <iostream> // cout,cerr,etc. #include <stdio.h> // printf, etc. #include <stdexcept> // Standard exceptions #include <omp.h> // Eigen #include <Eigen/Dense> #include <Eigen/SparseCore> #include "utils.h" typedef Eigen::VectorXd VecType; typedef Eigen...
pslansy.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/pzlansy.c, normal z -> s, Fri Sep 28 17:38:13 2018 * **/ #include "plasma_async.h" #include "plasma_contex...
ch_ompss.c
#include "ch_common.h" #include "../extrae.h" #include "../timing.h" /** * TODO: What is the lower bound for a circular deadlock? (0 waits for 1 waits for 2 waits for 0) * Example: Execution order on 1 is reversed: * 0 waits for 1/2/3, * 1 waits for 3/2/0, * 2 waits for 0/1/3, * 3 waits for 0/1/2 * ...
GB_AxB_rowscale_meta.c
//------------------------------------------------------------------------------ // GB_AxB_rowscale_meta: C=D*B where D is a square diagonal matrix //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
parallel_for.h
// //--------------------------------------------------------------------------- // // Copyright(C) 2017 Alexey Lysiuk // All rights reserved. // // This program 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 Fo...
compiler_cgen.c
/* Generated by Nim Compiler v0.15.0 */ /* (c) 2016 Andreas Rumpf */ /* The generated code is subject to the original license. */ #define NIM_INTBITS 32 #include "nimbase.h" #include <string.h> typedef struct Tcgen527027 Tcgen527027; typedef struct TNimType TNimType; typedef struct TNimNode TNimNode; typedef stru...
ParallelFor.h
/* Bullet Continuous Collision Detection and Physics Library Copyright (c) 2003-2006 Erwin Coumans http://continuousphysics.com/Bullet/ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permiss...
clascl.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/zlascl.c, normal z -> c, Fri Sep 28 17:38:08 2018 * **/ #include "plasma.h" #include "plasma_async.h" #inc...
GB_binop__lor_bool.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
oligo.c
/* * Copyright (c) 2014, Jason M. Wood <sandain@hotmail.com> * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * 1. Redistributions of source code must retain the above copyright ...
maxnum.c
#include <omp.h> #include <stdio.h> #include <stdlib.h> int main() { int max_threads, scalar_num_threads; int *num_threads; omp_set_num_threads(128); // We obtain the default number of threads in the target region #pragma omp target map(from:max_threads) { max_threads = omp_get_max_threads(); } num_...
GB_binop__bset_uint32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
cpu.c
// 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 ...
bitshuffle_core.c
/* * Bitshuffle - Filter for improving compression of typed binary data. * * Author: Kiyoshi Masui <kiyo@physics.ubc.ca> * Website: http://www.github.com/kiyo-masui/bitshuffle * Created: 2014 * * See LICENSE file for details about copyright and rights to use. * */ #include "bitshuffle_core.h" #include "bitshu...
nr_numint.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 ...
GB_atomics.h
//------------------------------------------------------------------------------ // GB_atomics.h: definitions for atomic operations //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-License-Identifier...
mobilenet_64.c
/* Pretrained MobileNet Convolutional Neural Network in C language and OpenMP API GitHUB Page: https://github.com/jcanore/vgg16 Author: ZFTurbo/jocare Compilation: gcc -O3 MobileNet_CPU_cifar.c -lm -fopenmp -o MobileNet_CPU_cifar Usage: MobileNet_CPU_cifar <weights_path> <file_with_list_of_...
TBBHashBackend.h
// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- // The MIT License (MIT) // // Copyright (c) 2018-2021 www.open3d.org // // Perm...
draw.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
3d7pt.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-1, 3D 7 point stencil * Adapted from PLUTO and Pochoir test bench * * Tare...
calculate_E_field_flat_all_in_one.h
int k_delta[3][3] = {{1,0,0}, {0,1,0}, {0,0,1}}; /* Calculate the electric flux on both faces in the input direction. */ void calculate_E_field_flat_all_in_one(const paramstruct *params,const REAL *auxevol_gfs,REAL *rhs_gfs,const int flux_dirn) { #include "GiRaFFE_standalone_...
core_dtrmm.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @generated from /home/luszczek/workspace/plasma/bitbucket/plasma/core_blas/core_ztrmm.c, normal z -> d, Fri Sep 28 17:38:23 2018 * **/ #include <plasma_core_blas.h> #include "plas...
polybench.c
/** * polybench.c: This file is part of the PolyBench/C 3.2 test suite. * * * Contact: Louis-Noel Pouchet <pouchet@cse.ohio-state.edu> * Web address: http://polybench.sourceforge.net * License: /LICENSE.OSU.txt */ #include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <assert.h> ...
par_interp.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...
outeronly2-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...
expm_multiply_parallel.h
#ifndef _EXPM_MULTIPLY_H #define _EXPM_MULTIPLY_H #include "complex_ops.h" #include <stdio.h> #include "openmp.h" #if defined(_OPENMP) #include "csrmv_merge.h" #else template<typename I, typename T1,typename T2,typename T3> void csr_matvec(const bool overwrite_y, const I n, const I Ap[], const I Aj[], ...
original.h
#ifndef _ORIGINAL_H_ #define _ORIGINAL_H_ #include <assert.h> #include <iostream> #include <malloc.h> #include <memory> #include "omp.h" #include <stdlib.h> #include <time.h> #include <vector> using namespace std; void origin_conv(float *In, float *Ker, float *Out, int Nb, int Nt, int Nx, int Ny, int N...
ast-dump-openmp-parallel-for.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_one(int x) { #pragma omp parallel for for (int i = 0; i < x; i++) ; } void test_two(int x, int y) { #pragma omp parallel for for (int i = 0; i < x; i+...
gimplify.c
/* Modula-3: modified */ /* Tree lowering pass. This pass converts the GENERIC functions-as-trees tree representation into the GIMPLE form. Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Major work done by Sebastian Pop <s.pop@laposte.net>, Diego...
mkldnn_os.h
/******************************************************************************* * Copyright 2017 NEC Labs America * MODIFICATIONS Copyright 2019 NEC Labs America * * 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 cop...
Layer_LSTM.h
// // smarties // Copyright (c) 2018 CSE-Lab, ETH Zurich, Switzerland. All rights reserved. // Distributed under the terms of the MIT license. // // Created by Guido Novati (novatig@ethz.ch). // #ifndef smarties_LSTMLayer_h #define smarties_LSTMLayer_h #include "Layers.h" namespace smarties { class LSTMLayer: p...
questao02.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include "omp.h" int main() { int *numeros; int sum_s = 0, sum_p = 0; int entrada, i; double t1_s, t2_s, t1_p, t2_p; srand(time(0)); printf("Informe um numero par positivo: "); scanf("%d", &entrada); if(entrada % 2 != 0) { printf("Entrada i...
cachebw.c
/****************************************************************************** ** Copyright (c) 2013-2020, Alexander Heinecke ** ** All rights reserved. ** ** ** ...
cancel_worksharing.c
// RUN: %libomp-compile && env OMP_CANCELLATION=true %libomp-run | %sort-threads | FileCheck %s // REQUIRES: ompt // Current GOMP interface implementation does not support cancellation; icc 16 does not distinguish between sections and loops // XFAIL: gcc, icc-16 #include "callback.h" #include <unistd.h> int main() { ...
pr57824.c
/* PR preprocessor/57824 */ /* { dg-do compile } */ /* { dg-options "-std=gnu99 -fopenmp" { target c } } */ /* { dg-options "-std=c++11 -fopenmp" { target c++ } } */ void bar (); void foo () { #pragma omp parallel num_threads(sizeof R"( abc )") bar (); }
GB_matvec_type_name.c
//------------------------------------------------------------------------------ // GB_matvec_type_name: return the name of the type of a matrix //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-Licen...
helloomp.c
#include <stdio.h> #include <omp.h> /* * This source code can be downloaded from supercomputingblog.com * The purpose of this code is to provide a basic understanding of OpenMP. * */ int main(int argc, char* argv[]) { // This statement should only print once printf("Starting Program!\n"); int nThreads, tid;...
symmetry.c
/* symmetry.c */ /* Copyright (C) 2008 Atsushi Togo */ #include <math.h> #include <stdio.h> #include <stdlib.h> #include "cell.h" #include "lattice.h" #include "mathfunc.h" #include "pointgroup.h" #include "primitive.h" #include "symmetry.h" #include "debug.h" #define NUM_ATOMS_CRITERION_FOR_OPENMP 1000 #define REDU...
GB_binop__isle_uint64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
morn_DES.c
/* Copyright (C) 2019-2020 JingWeiZhangHuai <jingweizhanghuai@163.com> Licensed under the Apache License, Version 2.0; 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 wri...
GB_binop__first_fc32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
multi_node_benchmark.h
/*! * Copyright (c) 2016 Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See LICENSE file in the project root for license information. */ #pragma once #include <LightGBM/boosting.h> #include <LightGBM/objective_function.h> #include <LightGBM/prediction_early_stop.h> #include <string> ...
LM.h
/** * Copyright (c) 2021 Darius Rückert * Licensed under the MIT License. * See LICENSE file for more information. */ #pragma once #include "../recursive/Recursive.h" namespace Saiga { template <typename T> void applyLMDiagonalInner(T& diag, double lambda = 1.00e-04, double min_lm_diagonal = 1e-6, ...
GB_unaryop__ainv_uint8_uint32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
GB_unop__atan_fc32_fc32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://...
fill_ints.c
/* * Author: Qiming Sun <osirpt.sun@gmail.com> */ #include <stdlib.h> #include <complex.h> #include "config.h" #include "cint.h" #define NCTRMAX 72 static void axpy_s1(double complex **out, double *in, double complex *expLk, int nkpts, int comp, size_t off, size_t ni...
3_parallel_queue_first_n_push.c
/* Program : 3 Author : Anish Topic : Write a C program using OpenMP features to create two parallel threads. The first thread should insert the first ‘N’ natural numbers into a queue in sequence, and the second thread should remove the numbers from the queue. */ #include<stdio.h> ...
SPGrid_Page_Map.h
//!##################################################################### //! \file SPGrid_Page_Map.h //!##################################################################### // Class SPGrid_Page_Map //###################################################################### #ifndef __SPGrid_Page_Map__ #define __SPGrid_Pag...
block-7.c
// { dg-do compile } void foo() { int i, j; for (i = 0; i < 10; ++i) { #pragma omp for for (j = ({ continue; 0; }); // { dg-error "invalid branch to/from OpenMP structured block" } j < ({ continue; 10; }); // { dg-error "invalid branch to/from OpenMP structured block" } j += ({ continue; 1;...
main.c
/* All changes to code are copyright, 2017, Jenniffer Estrada, jmestrada@unm.edu Research projects -- UNM and Jenniffer Estrada */ #include <stdio.h> #include <math.h> #include <stdlib.h> #include <string.h> #include <omp.h> #define PI 3.14159265 typedef enum { FILTER_AVG, FILTER_GAUSS } filter_type; typedef ...
6623.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...
atomic_messages.c
// RUN: %clang_cc1 -verify -fopenmp=libiomp5 -ferror-limit 100 %s int foo() { L1: foo(); #pragma omp atomic // expected-error@+1 {{the statement for 'atomic' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x', where x is an l-value exp...
8240.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...
tree-vect-loop.c
/* Loop Vectorization Copyright (C) 2003-2017 Free Software Foundation, Inc. Contributed by Dorit Naishlos <dorit@il.ibm.com> and Ira Rosen <irar@il.ibm.com> This file is part of GCC. GCC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published...
cc_bmm_bg_op.h
#ifndef CAFFE2_FB_OPERATORS_CC_BMM_BG_H_ #define CAFFE2_FB_OPERATORS_CC_BMM_BG_H_ #include "caffe2/core/context.h" #include "caffe2/core/operator.h" #include "caffe2/core/types.h" #include "caffe2/utils/math.h" namespace caffe2 { using T = float; using TInd = int; using Engine = DefaultEngine; template <class Conte...
symm_x_dia_u_hi_col_conj.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "alphasparse/opt.h" #ifdef _OPENMP #include <omp.h> #endif alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_DIA *mat, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, const ALPHA_Number beta, ALPHA_Number *...
GB_unaryop_transpose.c
//------------------------------------------------------------------------------ // GB_unaryop_transpose: C=op(cast(A')), transpose, typecast, and apply op //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. //...
vector.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...
GB_unop__atanh_fp64_fp64.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...
DRB068-restrictpointer2-orig-no.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...
GB_binop__pow_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...
GB_binop__pow_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...
sort.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...
trsm_x_csr_n_hi_row.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "alphasparse/opt.h" #include <memory.h> alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_CSR *A, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, ALPHA_Number *y, const ALPHA_INT ldy) { ALPHA_INT m = A-...
DRB014-outofbounds-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__minv_int16_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...
5961.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...
Scene.h
#pragma once #include "bitmap_image.hpp" #include "Triangle.h" #include "Plane.h" #include <vector> #include <optional> #include <algorithm> #include <atomic> #include <utility> #include <chrono> #include <CL/cl.h> #pragma comment(lib, "OpenCL.lib") template<typename T> using Vec = std::vector<T>; template<typenam...
FGT_fmt_plug.c
/* * Fortigate (FortiOS) Password cracker * * This software is Copyright (c) 2012 Mat G. <mat.jtr 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, are permitted. * * Passwords are located...
main.c
#include <Windows.h> #include <tchar.h> #define MAX_LINE (10) LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); inline void SafeFree(void*); int GetMyFontWidth(HWND, UINT); RECT* GetRects(HWND, UINT); int APIENTRY _tWinMain(HINSTANCE hIn, HINSTANCE prev, PTSTR cmd, int cShow) { HWND hWnd; MSG msg; WNDCLASSEX ...
GB_binop__land_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-...
pr79512.c
/* PR c++/79512 */ /* { dg-options "-fopenmp-simd" } */ void foo (void) { #pragma omp target #pragma omp teams { int i; for (i = 0; i < 10; i++) ; } }
openmp_piseed.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> void main(int argc, char *argv[]) { int i; int count = 0; double x, y; int samples, nthreads; double pi; samples = atoi(argv[1]); nthreads = atoi(argv[2]); double start = omp_get_wtime(); #pragma omp parallel firstprivate(x, y, i) reduction(+:c...
relativeneighborhoodgraph.h
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #ifndef VECTORSEARCH_THIRD_PARTY_SPTAG_RELATIVENEIGHBORHOODGRAPH_H_ #define VECTORSEARCH_THIRD_PARTY_SPTAG_RELATIVENEIGHBORHOODGRAPH_H_ #include "neighborhoodgraph.h" namespace vsearch { namespace COMMON { class RelativeN...
GB_unop__atanh_fc64_fc64.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
pt_to_pt_multiPingping.c
/***************************************************************************** * * * Mixed-mode OpenMP/MPI MicroBenchmark Suite - Version 1.0 * * * * ...
cungqr.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/zungqr.c, normal z -> c, Fri Sep 28 17:38:04 2018 * **/ #include "plasma.h" #include "plasma_async.h" #inc...
GB_unaryop__minv_uint8_uint32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
fibo_para_1.c
//fibo_para_1.c #include <stdio.h> #include <stdlib.h> #include <omp.h> #include <stdint.h> #include <windows.h> double fibo_pd( int n , double a[]) { long double i,j; if ( a[n] == 0 ){ #pragma omp task shared( i ) firstprivate ( n ) i = fibo_pd(n - 1, a ); #pragma omp task...
filter_ground_removal2.h
// MIT License // Copyright (c) 2019 Edward Liu // 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, merg...
GB_binop__isgt_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-...
9500.c
/* * Compile using the command: * `cc 27Stencil.c -o oa -fopenmp -lm` */ #include <math.h> #include <omp.h> #include <stdint.h> #include <string.h> #include <stdio.h> #include <stdlib.h> #ifdef _OPENACC #include <openacc.h> #endif #define DEFAULT_DATASIZE 1048576 /* Default datasize. */ #define DEFAULT_REPS 10 ...
SE_fg_extend_fcn_mex.c
#include "mex.h" #include "../SE_fgg.h" void SE_FGG_MEX_params(SE_FGG_params*, const mxArray*, int); #define HIN prhs[0] #define OPT prhs[1] #define HOUT plhs[0] // Output #ifndef VERBOSE #define VERBOSE 0 #endif void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[] ) { const ...
coloring_johansson.h
#include <iterator> #include <utility> #include <thread> #include "coloring_common.h" namespace GMS::Coloring { typedef vector<int32_t> ColVec; typedef ColVec::iterator ColPointer; typedef vector<ColPointer> PointerVec; typedef int32_t Color; // Class that stores the palettes class Palettes { public: // allocat...
pbkdf2-hmac-sha512_fmt_plug.c
/* This software is Copyright (c) 2012 Lukas Odzioba <ukasz@openwall.net> * 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-sha512 by magnum * * Minor fixes, format uni...
sample-1.c
#include <omp.h> #include <stdio.h> int main() { int threadnumber=1; int threadID=1; printf("I am thread %d, \tthreads %d \n",threadID,threadnumber); omp_set_num_threads(20); #pragma omp parallel // [NOTE]: OpenMP only parallelize partially { // [NOTE]: must enter to new line. thre...
ChMatrix.h
// ============================================================================= // PROJECT CHRONO - http://projectchrono.org // // Copyright (c) 2014 projectchrono.org // All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file at the top level of t...
GeneralMatrixMatrix.h
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008-2009 Gael Guennebaud <gael.guennebaud@inria.fr> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You c...
nmt_mask_flat.c
#include "config.h" #include "utils.h" static void apodize_mask_CX(nmt_flatsky_info *fs,flouble *mask_in,flouble *mask_out, flouble aposize,char *apotype) { double aporad=aposize*M_PI/180; int apotyp=0; if(!strcmp(apotype,"C1")) apotyp=0; else if(!strcmp(apotype,"C2")) apotyp=1; else repor...
trmm_x_sky_n_lo_col_conj.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "alphasparse/opt.h" alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_SKY *mat, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, const ALPHA_Number beta, ALPHA_Number *y, const ALPHA_INT ldy) { #ifdef COMPLE...