source
stringlengths
3
92
c
stringlengths
26
2.25M
Stmt.h
//===- Stmt.h - Classes for representing statements -------------*- 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 // //===---------------------------...
compute_simulation.c
/* This file is part of the MCsquare software Copyright © 2016-2017 Université catholique de Louvain (UCL) All rights reserved. The MCsquare software has been developed by Kevin Souris from UCL in the context of a collaboration with IBA s.a. Each use of this software must be attributed to Université catholique de Louv...
GB_emult_08_template.c
//------------------------------------------------------------------------------ // GB_emult_08_template: C=A.*B, C<M or !M>=A.*B when C is sparse/hyper //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SP...
adaptive_maxpool_2d.h
// Copyright 2018 Joan Puigcerver #ifndef NNUTILS_CPU_ADAPTIVE_MAXPOOL_2D_H_ #define NNUTILS_CPU_ADAPTIVE_MAXPOOL_2D_H_ #include <nnutils/adaptive_pool.h> #include <nnutils/utils.h> #include <cassert> #ifdef __cplusplus namespace nnutils { namespace cpu { using nnutils::internal::pixv; using nnutils::internal::star...
threads.c
#include <stdio.h> #include <omp.h> int main() { int thread_id[1024] ; for (int i=0; i < 1024; i++) thread_id[i] = -1; //#pragma omp target map (tofrom: thread_id) #pragma omp target parallel for num_threads(1024) for (int i=0; i< 1024; i++) { if (i >950) printf ("Thread: %d\n", omp_get_thread_num()); ...
lis_matvec_crs.c
/* Copyright (C) 2002-2012 The SSI Project. 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 notice, this list of condition...
targc-spmd.c
#include <omp.h> #include <stdio.h> int main (){ #define N 1024 double x_d[N]; for (size_t i = 0; i < N; ++i) x_d[i] = -1; printf("x_d = %p\n",x_d); #pragma omp target teams distribute parallel for for (size_t i = 0; i < N; ++i) x_d[i] = i; printf("x_d[1] = %f\n", x_d[1]); if (x_d[1] != 1.0)...
eigen.h
/* * Copyright 2009-2020 The VOTCA Development Team * (http://www.votca.org) * * 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 * * h...
conv1x1s1_sgemm_pack4_neon_sgemm.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
owl_matrix_swap_impl_omp.h
/* * OWL - OCaml Scientific and Engineering Computing * Copyright (c) 2016-2020 Liang Wang <liang.wang@cl.cam.ac.uk> */ #ifdef OWL_ENABLE_TEMPLATE // swap row i and row j in x(m,n) void FUNCTION (c, swap_rows) (TYPE *x, int m, int n, int i, int j) { if (i != j) { TYPE * src = x + n * i; TYPE * dst = x +...
core_sgeqrt.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_zgeqrt.c, normal z -> s, Fri Sep 28 17:38:20 2018 * **/ #include <plasma_core_blas.h> #include "pla...
hash.c
//#if defined __INTEL_COMPILER #include <stdio.h> #define __USE_XOPEN #include <stdlib.h> #include "hash.h" #include "genmalloc/genmalloc.h" #ifdef HAVE_OPENCL #include "hashlib_kern.inc" #include "hashlib_source_kern.inc" #endif static ulong AA; static ulong BB; static ulong prime=4294967291; static uint hashtablesi...
agg_clustering.c
#include <lua.h> /* Always include this */ #include <lauxlib.h> /* Always include this */ #include <lualib.h> /* Always include this */ #include <luaT.h> /* Always include this */ #include <TH.h> ...
Example8.c
//#include <stdio.h> //#include <omp.h> //#include <conio.h> // //int main(int argc, char *argv[]) //{ // int i, ic = 0, n = 4; //#pragma omp parallel num_threads(3) shared(n,ic) private (i) // { //#pragma omp for // for (i = 0; i < n; i++) // { // printf("%d,iteration is carried out by thread (%d). ...
tdvjsvd.c
#include "aalloc.h" #include "mtxio.h" #include "pjs.h" #include "timer.h" #include "dvjsvd.h" int main(int argc, char *argv[]) { (void)set_cbwr(); if (argc != 5) { (void)fprintf(stderr, "%s J M N BaseName\n", *argv); return 1; } const fnat m = (fnat)atoz(argv[2u]); if (!m) return 3; fnat ldG...
desc.h
#include "assert.h" #include "omp.h" #define DESC_DEBUG 1 int desc_counter = 0; void my_print(const char *s) { if (DESC_DEBUG) { int ret; #pragma omp atomic capture { ret = desc_counter; desc_counter += 1; } printf("%d: desc debug: %s\n", ret, s); } } void my_print_label(const c...
DartThrowing.h
#pragma once #include "DefaultRandomGenerator.h" #include "ThrustInclude.h" #include "shuffle/Shuffle.h" #include <cstdint> #include <cuda.h> #include <cuda_runtime.h> #include <thread> __global__ void dartThrowingKernel( uint64_t* indices, uint64_t num, uint64_t targets, uint64_t seed ) { uint64_t tid = threadIdx...
stack.c
#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <omp.h> #define NUMITER 26 #define TRUE 1 #define FALSE 0 typedef struct parallelstack { omp_lock_t stacklock; //lock for accessing the stack int cancel; //flag that indicates if threads should stop working char *buffer; /...
OpenMP_Hello.c
//compilation instruction: //gcc -g omp_hello.c -fopenmp //./a.out /****************************************************************************** #include <omp.h> #include <stdio.h> #include <stdlib.h> int main (int argc, char *argv[]) { int nthreads, tid; /* Fork a team of threads giving them t...
collision_od.h
#ifndef ANOMTRANS_COLLISION_OD_H #define ANOMTRANS_COLLISION_OD_H #include <cstddef> #include <complex> #include <vector> #include <tuple> #include <petscksp.h> #include "util/constants.h" #include "util/util.h" #include "grid_basis.h" #include "util/vec.h" #include "observables/energy.h" #include "disorder/collision....
GB_unaryop__minv_uint64_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
composite.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
jacobi.c
#include <stdio.h> #include "jacobi.h" void jacobistep(double **psinew, double **psi, int m, int n) { int i, j; #pragma omp parallel for default(none), private(i,j), shared(psi,psinew,m,n) for(i=1;i<=m;i++) { for(j=1;j<=n;j++) { psinew[i][j]=0.25*(psi[i-1][j]+psi[i+1][j]+psi[i][j-1]+psi[i][j+1]); ...
text_parser.h
/*! * Copyright (c) 2015 by Contributors * \file text_parser.h * \brief iterator parser to parse text format * \author Tianqi Chen */ #ifndef DMLC_DATA_TEXT_PARSER_H_ #define DMLC_DATA_TEXT_PARSER_H_ #include <dmlc/data.h> #include <dmlc/omp.h> #include <vector> #include <cstring> #include <algorithm> #include "...
task-dependency.c
/* * task-dependency.c -- Archer testcase */ //===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // // See tools/archer/LICENSE.txt for details. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception ...
parallel_utilities.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Riccardo Rossi // Denis Demidov...
convolution_3x3_pack1to4_bf16s.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2020 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 ...
GemmNeon.h
// Copyright 2019 MAI. 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...
quantize.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
PoW.c
// Copyright (c) 2016-2018 Ulord Foundation Ltd. #include "PoW.h" #include <stdio.h> #include <stdint.h> #include <string.h> #include <stdlib.h> #include <assert.h> #ifndef MAC_OSX #include <omp.h> #endif #include "my_time.h" #include "common.h" #include "my_rand48_r.h" #include "oneWayFunction.h" ...
5941.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...
critical-1.c
int i; void foo (void) { #pragma omp critical i = i + 1; #pragma omp critical (foo) i = i + 1; #pragma omp critical (foo) hint (0) i = i + 1; #pragma omp critical (foo),hint(1) i = i + 1; }
omp_workshare2.c
/****************************************************************************** * FILE: omp_workshare2.c * DESCRIPTION: * OpenMP Example - Sections Work-sharing - C Version * In this example, the OpenMP SECTION directive is used to assign * different array operations to each thread that executes a SECTION. * AUTH...
mat_mul_p4a_2000.c
/* * file for mat_mul.c */ #include "./mat_mul.h" #include "./size.h" void mat_mul(int *a, int *b, int *c); void mat_mul(int *a, int *b, int *c) { int i, j, k, t; #pragma omp parallel for private(j, t, k) for(i = 0; i <= 1999; i += 1) for(j = 0; j <= 1999; j += 1) { c[i*2000+j] = 0; for...
dyn.pluto.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)) #include <math.h> #include <stdio.h> #include <stdlib.h> #define min(x,y) ((x) < (y) ?...
geometry.h
#ifndef geometry_h #define geometry_h #include "exafmm_t.h" namespace exafmm_t { // Global variables REL_COORD, HASH_LUT, M2L_INDEX_MAP are now defined in exafmm_t.h. /** * @brief Given a box, calculate the coordinates of surface points. * * @param p Order of expansion. * @param r0 Half side length of...
uvbke.h
#ifndef UVBKE_H #define UVBKE_H void uvbke(Storage3D& ub, Storage3D& vb, const Storage3D& uc, const Storage3D& vc, const Storage3D& cosa, const Storage3D& rsina) { for (int64_t k = 0; k < domain_height; ++k) { for (int64_t i = 0; i < domain_size; ++i) { for (int64_t j = 0; j < domain_size; ++j) ...
pmv-OpenMP-b.c
/* * pmv-OpenMp-b.c * * Created on: 12/04/2014 * Author: Carlos de la Torre */ #include <stdio.h> #include <stdlib.h> #include <time.h> #include <omp.h> // biblioteca para programas paralelos #define PRINT_ALL_MIN 15 // Ponemos que los elementos mínimos para que se // impriman todos los valores de la matriz...
SpatialFractionalMaxPooling.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "generic/SpatialFractionalMaxPooling.c" #else static long* THNN_(SpatialFractionalMaxPooling_generateIntervals)( real sample, long inputSize, long outputSize, int poolSize) { real alpha = (real) (inputSize - poolSize) / (real) (outputSize - 1); long* sequence...
yolov2.h
#ifndef YOLOV2_H #define YOLOV2_H #include <stdio.h> #include <stdlib.h> #include <iostream> #include <math.h> #include <fcntl.h> #include <string.h> #include <assert.h> #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" #define STB_IMAGE_WRITE_IMPLEMENTATION #include "stb_image_write.h" //#incl...
l1_normMEX_256.c
#include "mex.h" #include <omp.h> #include <math.h> #include <emmintrin.h> #include <xmmintrin.h> #include <immintrin.h> void mexFunction(int nlhs, mxArray *left[], int nrhs, const mxArray *right[]) { /* Declare variables */ mwSize elem, cmplx, cmplx1, cmplx2, cmplx3; long long i, elem2; const mw...
pkzip_fmt_plug.c
/* * PKZIP patch for john to handle 'old' pkzip passwords (old 'native' format) * * Written by Jim Fougeron <jfoug at cox.net> in 2011. No copyright * is claimed, and the software is hereby placed in the public domain. * In case this attempt to disclaim copyright and place the software in the * public domain is ...
Stmt.h
//===- Stmt.h - Classes for representing statements -------------*- 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 // //===---------------------------...
mm.c
#include<stdio.h> #include<stdlib.h> #include<malloc.h> #include<omp.h> #define row 2500 #define col 2500 int main() { int i,j,k; double wtime; int **a=NULL,**b=NULL,**c=NULL; printf("1.Allocate memory------\n"); /*先申请每一行指针的内存*/ a = (int **)malloc(sizeof(int *)*row); b = (int **)malloc(sizeof(int *)*row); c ...
GB_binop__bxnor_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-...
ckernels.c
#include <emmintrin.h> void kernel4(int L, float* ai, float* ef) { float* p2 = ef; float* p1 = ai; double mag, t; int i; for(i = 0; i < L; i++) { t = *p2++; mag = t*t; t = *p2++; mag += t*t; *p1++ += mag; } } void kernel5(int L, float* __restrict__ ai, float* __restrict__ ef) { ...
fourier.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
hydro_mid_point_predictorcorrector.h
/* ============================================================================== KratosStructuralApplication A library based on: 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, Janosch Stasche...
GB_unaryop__minv_uint64_fp32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
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...
mlfma.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <mpi.h> /* Pull in the CBLAS header. */ #ifdef _MACOSX #include <Accelerate/Accelerate.h> #else #ifdef _ATLAS #include <cblas.h> #else #include <gsl_cblas.h> #endif /* _ATLAS */ #endif /* _MACOSX */ #include "ScaleME.h" #include "precision.h" #inc...
GB_unop__identity_int64_int32.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...
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 // //===---------------------------...
threshold.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
server.c
// C99 // Start program: mpirun -np 1 server #include <mpi.h> #include <omp.h> #include <stdio.h> #include <stdbool.h> #include <unistd.h> // needed for sleep() on POSIX system #define MAX_DATA 100 int main( int argc, char **argv ) { int providedThreadSupport; bool terminateListening = false; char portNa...
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) #...
convolution_sgemm_packn_fp16s.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a ...
core_dzamax.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @precisions normal z -> c d s * **/ #include "core_blas.h" #include "plasma_types.h" #include "core_lapack.h" #include <math.h> /************************************************...
activation.h
// Copyright 2018 Xiaomi, Inc. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicab...
helloMP.c
#include <stdio.h> int main(void) { #pragma omp parallel printf("Hello, world.\n"); return 0; }
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...
build_list.h
#pragma once /****************************************************************************** * * mfmm * A high-performance fast multipole method library using C++. * * A fork of ExaFMM (BSD-3-Clause lisence). * Originally copyright Wang, Yokota and Barba. * * Modifications copyright HJA Bird. * **************...
requires_directive.c
#include <stdio.h> #include <omp.h> #pragma omp requires unified_shared_memory int main() { int N = 10; int a[N]; int b[N]; int i; for (i=0; i<N; i++) a[i]=0; for (i=0; i<N; i++) b[i]=i; #pragma omp target parallel for { for (int j = 0; j< N; j++) a[j]=b[j]; } int rc = 0; f...
3mm.origin.pluto.c
#include <omp.h> #include <math.h> #define ceild(n,d) (((n)<0) ? -((-(n))/(d)) : ((n)+(d)-1)/(d)) #define floord(n,d) (((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d)) #define max(x,y) ((x) > (y)? (x) : (y)) #define min(x,y) ((x) < (y)? (x) : (y)) // TODO: mlir-clang %s %stdinclude | FileCheck %s // RUN: clang %s -O3 %...
Stmt.h
//===- Stmt.h - Classes for representing statements -------------*- 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 // //===---------------------------...
convolution_pack4.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2021 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you may not use this file except // in compliance with the License. You may obtain a copy ...
morphology.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
steady_ant.h
// // Created by nikita on 15.10.2020. // #ifndef CPU_STEADY_ANT_H #define CPU_STEADY_ANT_H #include <algorithm> #include <vector> #include <iostream> #include <climits> #include <omp.h> #include "matrices.h" #include "permutations_encoding.h" #include "dominance_sum_queries.h" #include "../semi_local.h" #include ".....
pred.c
/* Poisson Factorization for sparse matrices Based on alternating proximal gradient iteration or conjugate gradient. Variables must be initialized from outside the main function ('run_poismf'). Writen for C99 standard and OpenMP 2.0 or later. Reference paper is: Cortes, David. "Fa...
diagmv_x_coo_u.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "alphasparse/opt.h" #ifdef _OPENMP #include <omp.h> #endif static alphasparse_status_t diagmv_c_coo_u_omp(const ALPHA_Number alpha, const ALPHA_SPMAT_COO *A, const ALPHA_Number *x, const ALPHA_Number beta, ...
sunmd5_fmt_plug.c
/* * First cut, which was oSSL only, and done in 2 source files, by * Bartavelle (please change to proper cite). * Corrections, and re-write into SSE2, JimF. * * This software was written by Bartavelle <cite> and JimF * jfoug AT cox dot net, in 2012 for CMIYC-12. No copyright is claimed, * and the software is h...
omp_single_nowait.c
// RUN: %libomp-compile-and-run #include <stdio.h> #include "omp_testsuite.h" /* * This test will hang if the nowait is not working properly * * It relies on a one thread skipping to the last single construct to * release the threads in the first three single constructs */ volatile int release; volatile int count...
veccopy.c
#include <stdio.h> #include <omp.h> int main() { int N = 100000; int a[N]; int b[N]; int i; for (i=0; i<N; i++){ a[i]=0; b[i]=i; } #pragma omp target parallel for map(from: a[0:N]) map(to: b[0:N]) { for (int j = 0; j< N; j++) a[j]=b[j]; } int rc = 0; for (i=0; i<N; i++) i...
stream.c
// Copyright 2009-2018 NTESS. Under the terms // of Contract DE-NA0003525 with NTESS, the U.S. // Government retains certain rights in this software. // // Copyright (c) 2009-2018, NTESS // All rights reserved. // // Portions are copyright of other developers: // See the file CONTRIBUTORS.TXT in the top level directory...
omp_critical.c
/****************************************************************************** * OpenMP Example - Matrix-vector multiplication - C/C++ Version * FILE: omp_matvec.c * DESCRIPTION: * This example multiplies all row i elements of matrix A with vector * element b(i) and stores the summed products in vector c(i). A to...
GB_unop__identity_uint32_fc64.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...
imd_main_mpi_2d.c
/****************************************************************************** * * IMD -- The ITAP Molecular Dynamics Program * * Copyright 1996-2011 Institute for Theoretical and Applied Physics, * University of Stuttgart, D-70550 Stuttgart * **************************************************************************...
selu_kernel_arm.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...
resize.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
custom_functions.h
// // Project Name: Kratos // Last Modified by: $Author: G.Casas (gcasas@cimmne.upc.edu) $ // Date: $Date: 2011-6-13 08:56:42 $ // Revision: $Revision: 1.5 $ // // //README::::look to the key word "VERSION" if you want to find all the points where you have to change something...
GB_binop__isgt_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-...
re_comp.h
/*! * This file is part of GPBoost a C++ library for combining * boosting with Gaussian process and mixed effects models * * Copyright (c) 2020 Fabio Sigrist. All rights reserved. * * Licensed under the Apache License Version 2.0. See LICENSE file in the project root for license information. */ #ifndef GPB_RE_COMP_H_ #...
oyranos_convert.c
/** @file oyranos_convert.c * * Oyranos is an open source Color Management System * * @par Copyright: * 2012-2018 (C) Kai-Uwe Behrmann * * @brief ICC conversion - on the command line * @internal * @author Kai-Uwe Behrmann <ku.b@gmx.de> * @par License: * new BSD <http://www.o...
symm_x_dia_n_lo_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__lnot_int16_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...
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 // //===---------------------------...
search-vector_gpu.c
/* This program searche a values in unordered vector and returns if find or not This program create a csv file with the time execution results for each function(CPU,GPU) in this format: size of vector,cpu time,gpu time. Author: Kezia Andrade Date: 04-07-2015 version 1.0 Run: folder_ipma...
empty.c
/* 1. how to include header 2. parallel region 3. runtime routine 4. undeterminated execution order 5. control number of threads By C. Liao */ #include <stdio.h> #ifdef _OPENMP #include <omp.h> #endif int main(void) { int i=0; #pragma omp parallel { #ifdef _OPENMP i=omp_get_thread_num(); #endif printf(...
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__rdiv_uint32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
utils.h
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <numeric> #include <vector> #include <unordered_map> #include <algorithm> #include <cassert> #include <utility> #include <omp.h> #include <string> #include <cstring> #include <ctime> #include <map> #include <atomic> #include <boost/...
neutral.c
#include "neutral.h" #include "../../comms.h" #include "../../params.h" #include "../../raja/shared.h" #include "../../shared.h" #include "../../shared_data.h" #include "../neutral_interface.h" #include "pcg_variants.h" #include <assert.h> #include <float.h> #include <math.h> #include <omp.h> #include <stdio.h> #includ...
8598.c
// this source is derived from CHILL AST originally from file '/uufs/chpc.utah.edu/common/home/u1142914/lib/ytopt_vinu/polybench/polybench-code/stencils/fdtd-2d/kernel.c' as parsed by frontend compiler rose void kernel_fdtd_2d(int tmax, int nx, int ny, double ex[1000 + 0][1200 + 0], double ey[1000 + 0][1200 + 0], doub...
graph_impl.h
/***************************************************************************** * * ALPS/looper: multi-cluster quantum Monte Carlo algorithms for spin systems * * Copyright (C) 1997-2012 by Synge Todo <wistaria@comp-phys.org> * * This software is published under the ALPS Application License; you * can use, redistribute ...
core_dlange.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_zlange.c, normal z -> d, Fri Sep 28 17:38:21 2018 * **/ #include <plasma_core_blas.h> #include "pla...
fs_strategy.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Jordi Cotela // #ifndef KRATOS_FS_STRATEGY_H #d...
@mropes.nim.c
/* Generated by Nim Compiler v1.0.11 */ /* (c) 2019 Andreas Rumpf */ /* The generated code is subject to the original license. */ #define NIM_INTBITS 32 #include "nimbase.h" #include <string.h> #include <stdio.h> #undef LANGUAGE_C #undef MIPSEB #undef MIPSEL #undef PPC #undef R3000 #undef R4000 #undef i386 #undef li...
agent_test.h
// ----------------------------------------------------------------------------- // // Copyright (C) 2021 CERN & University of Surrey for the benefit of the // BioDynaMo collaboration. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compl...
fprintf-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...
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...