source
stringlengths
3
92
c
stringlengths
26
2.25M
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 // //===---------------------------...
convolution_3x3_int8.h
// SenseNets is pleased to support the open source community by supporting ncnn available. // // Copyright (C) 2018 SenseNets Technology Ltd. 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 of t...
GB_subassign_09.c
//------------------------------------------------------------------------------ // GB_subassign_09: C(I,J)<M,repl> = scalar ; using S //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http://suitesparse.c...
ex02.c
#include "stats.h" #include <omp.h> #include <stdio.h> #include <stdlib.h> void ce( int *a, int *b ) { int t; if( *a > *b ) { t = *a; *a = *b; *b = t; } } void OddEven( int a[], int n ) { int i, j, nHalf, lastEven, lastOdd; /* #pragma omp parallel for default(none) shared(a) private(i, j) firstprivate(la...
task_codegen.c
// RUN: %clang_cc1 -verify -triple x86_64-apple-darwin10 -fopenmp -fopenmp-version=50 -x c -emit-llvm %s -o - | FileCheck %s // RUN: %clang_cc1 -fopenmp -fopenmp-version=50 -x c -triple x86_64-apple-darwin10 -emit-pch -o %t %s // RUN: %clang_cc1 -fopenmp -fopenmp-version=50 -x c -triple x86_64-apple-darwin10 -include-p...
mandelbrot.c
#include <math.h> #include <stdio.h> #include <stdlib.h> #include <omp.h> #define MXITER 1000 #define NPOINTS 2048 typedef struct { double r; double i; }d_complex; // return 1 if c is outside the mandelbrot set // reutrn 0 if c is inside the mandelbrot set int testpoint(d_complex c){ d_complex z; ...
alloc2.c
int main() { int *A; #pragma omp allocate(A) return 0; }
SpatialGridSamplerBilinear.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "generic/SpatialGridSamplerBilinear.c" #else #undef MIN #define MIN(a,b) ( ((a)<(b)) ? (a) : (b) ) static inline void THNN_(SpatialGridSamplerBilinear_shapeCheck) (THTensor *input, THTensor *grid, THTensor *gradOutput) { THNN_ARGCHECK(input->nDimension == 4, 2, i...
main.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <string.h> #include <assert.h> #define N 197770 #define GRID_LEN 128 #define MAXX 5100 #define MAXY 3400 #define MAX_DIST 7000 #define STARTING_POS 121572 struct pos { int i; int j; }; int da_x[] = { 0, -1, -1, 0, 1, 1, -1, ...
linear_master_slave_constraint.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Aditya Ghantasala // #if !defined(LINEAR_MASTER_...
AllOrNothingAssignment.h
#pragma once #include <algorithm> #include <array> #include <cassert> #include <cmath> #include <cstdlib> #include <iostream> #include <ostream> #include <vector> #include "DataStructures/Utilities/OriginDestination.h" #include "Stats/TrafficAssignment/AllOrNothingAssignmentStats.h" #include "Tools/CommandLine/Progre...
for-13.c
// At one point in development, a typo disabled the remapping of the // for iteration variable as private. // { dg-do compile } // { dg-options "-fopenmp -fdump-tree-ompexp" } /* LLVM LOCAL test not applicable */ /* { dg-require-fdump "" } */ extern void bar(int); void foo(void) { int i; #pragma omp parallel for d...
GB_binop__rminus_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
bubble.c
// C program for implementation of Bubble sort #include <stdio.h> #include <time.h> #define getClock() ((double)clock()/CLOCKS_PER_SEC) #include <omp.h> double begin,end; void swap(int *xp, int *yp) { int temp = *xp; *xp = *yp; *yp = temp; } // A function to implement bubble sort void bubbleSort(int ...
hsm2ld.c
/*********************************************************************** HiSIM (Hiroshima University STARC IGFET Model) Copyright (C) 2014 Hiroshima University & STARC MODEL NAME : HiSIM ( VERSION : 2 SUBVERSION : 8 REVISION : 0 ) FILE : hsm2ld.c Date : 2014.6.5 released by Hiroshima Uni...
ASTMatchers.h
//===- ASTMatchers.h - Structural query framework ---------------*- 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 // //===---------------------------...
psd.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
omp_hello.c
/****************************************************************************** * FILE: omp_hello.c * DESCRIPTION: * OpenMP Example - Hello World - C/C++ Version * In this simple example, the master thread forks a parallel region. * All threads in the team obtain their unique thread number and print it. * The m...
GB_binop__second_uint8.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_binop__eq_uint16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
openmp2.c
#include <math.h> #include <omp.h> void cholesky(double *A, double *L, int n) { for (int j = 0; j < n; j++) { double s = 0; for (int k = 0; k < j; k++) { s += L[j * n + k] * L[j * n + k]; } L[j * n + j] = sqrt(A[j * n + j] - s); #pragma omp parallel for for (int i = j + 1; i < n; i++) { double s = 0;...
strip_fmt_plug.c
/* STRIP cracker patch for JtR. 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 source ...
par_relax.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...
dynamic_fmt.c
/* * This software was written by Jim Fougeron jfoug AT cox dot net * in 2009-2013. 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 deemed * null and void, then the software is Copyright (...
openmp.c
#include <stdio.h> #include <stdlib.h> #include <string.h> // #include <omp.h> #include <time.h> //Student ID: 21804416 //Name: SUN QIANG //Where use openmp speed up: //Here we have four tasks using openmp to speed up //1. use openmp to sort all columns //2. use openmp to generate blocks //3. The key point here, use ...
mapped_im2col.h
#ifndef MAPPED_IM2COL_H_ #define MAPPED_IM2COL_H_ #include <omp.h> #include <torch/extension.h> #include "common/mapped_im2col.h" namespace spherical { namespace cpu { template <typename T> void MappedIm2Col2D(const int64_t num_kernels, torch::Tensor data_im, torch::Tensor sample_map, // OH, O...
DRB083-declared-in-func-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_cast_array.c
//------------------------------------------------------------------------------ // GB_cast_array: typecast an array //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://suitesparse.com See GraphBLAS...
alloc_cgroup.c
//===--- test_target_uses_allocators_cgroup.c -----------------------------===// // // OpenMP API Version 5.0 Nov 2018 // // The tests checks the uses_allocators clause with omp_cgroup_mem_alloc. // The variable allaocated in the target is modified and used to compute result on // device. Result is copied back to the...
polish.c
/* * Copyright (C) 2018 by Benedict Paten (benedictpaten@gmail.com) * * Released under the MIT license, see LICENSE.txt */ #include <getopt.h> #include <stdio.h> #include <ctype.h> #include <memory.h> #include <hashTableC.h> #include <unistd.h> #include <time.h> #include "marginVersion.h" #include "margin.h" #inc...
GB_binop__second_uint16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
SingleBodyLink.c
int x; int main() { #pragma omp single { int x; } #pragma omp single { 13; } }
main.c
#include "../comms.h" #include "../mesh.h" #include "../params.h" #include "../shared_data.h" #include "flow_data.h" #include "flow_interface.h" #include <math.h> #include <omp.h> #include <stdio.h> #include <stdlib.h> int main(int argc, char** argv) { if (argc != 2) { TERMINATE("usage: ./flow <parameter_filenam...
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 ...
rkb_screen.c
/* * */ #include <stdlib.h> #include <string.h> #include <math.h> #include <complex.h> #include <assert.h> #include "cint.h" #include "cvhf.h" #include "fblas.h" #include "optimizer.h" #define MAX(I,J) ((I) > (J) ? (I) : (J)) #define LL 0 #define SS 1 #define SL 2 #define LS 3 int int2e_spinor(); int int2...
FeatureImportanceTree.h
/* * This software is distributed under BSD 3-clause license (see LICENSE file). * * Authors: Yuhui Liu */ #ifndef _FEATUREIMPORTANCETREE_H__ #define _FEATUREIMPORTANCETREE_H__ #include <shogun/lib/SGVector.h> #include <shogun/mathematics/linalg/LinalgNamespace.h> #include <shogun/multiclass/tree/TreeMachine.h> #i...
GB_unaryop__ainv_int16_int8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
maxwell_physbdy.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...
GB_unaryop__identity_bool_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...
Stack.h
#ifndef _STACK_H #define _STACK_H #include <iostream> #include <cassert> #include <cstdlib> #include <omp.h> using namespace std; #ifdef STACK_SIZE_BIG const int STACK_SIZE = (64*1024*1024); // This results in allocation of 1 gigabyte per thread! #else //const int STACK_SIZE = 1024*1024; // This results in all...
utils.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 ...
3d25pt_var.c
/* * Order-1, 3D 25 point stencil with axis-symmetric ariable 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) >...
calibrator.h
#pragma once #include <fstream> #include <iostream> #include <iterator> #include <NvInfer.h> #include "common.h" #include "data_loader.h" #include "video_data_loader.h" class BaseCalibrator : public nvinfer1::IInt8EntropyCalibrator2 { protected: const size_t kBatchSize_; const size_t kImSize_; const size_t k...
3d25pt_var.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 25 point stencil with axis-symmetric ariable coefficients * Adapted fr...
matrix_low_level.h
/*************************************************************************** * include/stxxl/bits/containers/matrix_low_level.h * * Part of the STXXL. See http://stxxl.org * * Copyright (C) 2010-2011 Raoul Steffen <R-Steffen@gmx.de> * * Distributed under the Boost Software License, Version 1.0. * (See acco...
convolution_pack4to1.h
// Tencent is pleased to support the open source community by making ncnn available. // // Copyright (C) 2022 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 ...
DeclOpenMP.h
//===- DeclOpenMP.h - Classes for representing OpenMP directives -*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===------------------------------------------------------...
core_zgemm.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @precisions normal z -> c d s * **/ #include <plasma_core_blas.h> #include "plasma_types.h" #include "core_lapack.h" /************************************************************...
GB_unaryop__identity_bool_fp32.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__max_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
team.c
// RUN: %libomp-compile-and-run | FileCheck %s // REQUIRES: ompt // UNSUPPORTED: gcc // Compilation fails for icc // XFAIL: icc #include "callback.h" int main() { #pragma omp target teams num_teams(1) thread_limit(1) { printf("In teams\n"); } return 0; } // CHECK: 0: NULL_POINTER=[[NULL:.*$]] // CHECK-NOT: 0: pa...
ten_tusscher_2004_epi_S2_4.c
//Original Ten Tusscher #include <assert.h> #include <stdlib.h> #include "ten_tusscher_2004_epi_S2_4.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:...
render_prefix_tree_util.h
/* * LSGL - Large Scale Graphics Library * * Copyright (c) 2013 - 2015 Advanced Institute for Computational Science, *RIKEN. * All rights reserved. * */ // // References // - Maximizing Parallelism in the Construction of BVHs, Octrees, and k-d Trees // Tero Karras, HPG 2012 // - LUT-based morton code calculat...
vednnMaxPoolingForward.c
#include "vednnMaxPoolingForward.h" #include "vednn-def.h" #include <stdint.h> static inline vednnError_t vednnMaxPoolingForward_wrapper( vednnMaxPoolForward_t pFunc, VEDNN_MAXPOOLINGFWD_ARGS ) { #ifndef VEDNN_USE_OPENMP return pFunc(VEDNN_MAXPOOLINGFWD_ARGS_LIST); #else if ( __vednn_omp_num_threads == 1 )...
kthread_dump_pe.c
#include <pthread.h> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <string.h> #include "breads.h" #include "kvec.h" #include "config.h" #include <omp.h> /************ * kt_dump_pe_for() * ************/ struct kt_dump_pe_for_t; typedef struct { struct kt_dump_pe_for_t *t; long i, n; //i < n...
bfsdfs.h
namespace TSnap { ///////////////////////////////////////////////// // BFS and DFS /// Returns a directed Breadth-First-Search tree rooted at StartNId. ##GetBfsTree1 template <class PGraph> PNGraph GetBfsTree(const PGraph& Graph, const int& StartNId, const bool& FollowOut, const bool& FollowIn); /// My BFS Funct...
GB_binop__eq_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-...
pp_collision.c
/* Copyright (C) 2017 Atsushi Togo */ /* All rights reserved. */ /* This file is part of phonopy. */ /* 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 abo...
fx.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_binop__second_uint64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
GB_unop__isinf_bool_fc32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
omptarget.h
//===---- omptarget.h - OpenMP GPU initialization ---------------- CUDA -*-===// // // 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 // //===---------------------------...
schur_eliminator_impl.h
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2015 Google Inc. All rights reserved. // http://ceres-solver.org/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // // * Redistributions of so...
diagmm_x_csr_n_col.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "memory.h" #include "alphasparse/opt.h" alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_CSR *mat, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, const ALPHA_Number beta, ALPHA_Number *y, const ALPHA_INT ...
utils.h
#pragma once #include <cstdint> #include <cmath> #include <cstdio> #include <omp.h> #include <thread> constexpr double MAX_ERROR = 0.01; constexpr int NUM_PRINTS = 20; int divUp(int a, int b) { return (a + b - 1) / b; } uint16_t Fp32ToFp16(float f32) { uint32_t f = *(uint32_t*)& f32; uint16_t f16 = 0; ...
pmv-OpenMP-reduction.c
// gcc -O2 algo.c -o nombre -fopenmp #include <stdlib.h> #include <stdio.h> #ifdef _OPENMP #include <omp.h> #else #define omp_get_thread_num() 0 #define omp_get_num_threads() 1 #endif int main(int argc, char** argv) { int i, j; double t1, t2, total; //Argumento de entrada, N es el número de componentes del vec...
feac26_so8_itt.c
#define _POSIX_C_SOURCE 200809L #include "stdlib.h" #include "math.h" #include "sys/time.h" #include "ittnotify.h" #include "xmmintrin.h" #include "pmmintrin.h" #include <stdio.h> #include "omp.h" #define min(a, b) (((a) < (b)) ? (a) : (b)) #define max(a, b) (((a) > (b)) ? (a) : (b)) struct dataobj { void *restrict ...
soxr.c
/* SoX Resampler Library Copyright (c) 2007-13 robs@users.sourceforge.net * Licence for this file: LGPL v2.1 See LICENCE for details. */ #include <math.h> #include <stdlib.h> #include <string.h> #include <time.h> #include "soxr.h" #include "data-io.h" #include "internal.h" char...
rose_reduction_2.c
/* A kernel for two level parallelizable loop with reduction */ #include "omp.h" float u[100][100]; float foo() { int i; int j; float temp; float error; #pragma omp parallel for private (temp,i,j) reduction (+:error) for (i = 0; i <= 99; i += 1) { #pragma omp parallel for private (temp,j) reduction ...
convolution_1x1_int8.h
// SenseNets is pleased to support the open source community by supporting ncnn available. // // Copyright (C) 2018 SenseNets Technology Ltd. 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 of t...
munit.c
/******** DO NOT EDIT THIS FILE ********/ /* * munit.c - implementation of the Munit unit test library. * */ /* Copyright (c) 2013-2018 Evan Nemerson <evan@nemerson.com> * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (th...
GB_unop__ainv_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://...
a.17.2.c
/* { dg-do compile } */ void a17_2_wrong () { int x; int *i; float *r; i = &x; r = (float *) &x; #pragma omp parallel { #pragma omp atomic *i += 1; #pragma omp atomic *r += 1.0; /* Incorrect because the atomic constructs reference the same location through incompatible types */ } }
RecordTable.h
/* * Souffle - A Datalog Compiler * Copyright (c) 2020, The Souffle Developers. All rights reserved. * Licensed under the Universal Permissive License v 1.0 as shown at: * - https://opensource.org/licenses/UPL * - <souffle root>/licenses/SOUFFLE-UPL.txt */ /*******************************************************...
node_composite_defocus.c
/* * $Id: node_composite_defocus.c 39944 2011-09-05 22:04:30Z gsrb3d $ * * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the...
GB_unop__bnot_uint8_uint8.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...
test.c
#include <omp.h> #include <stdio.h> #define N 1024 #define EXPLICIT_TARGET_TASK 0 int A[N]; int B[N]; int C[N]; int D[N]; int Z[N+1]; #if EXPLICIT_TARGET_TASK #define LOMP_TASK_DEP_40 1 #define LOMP_TARGET_40 1 #define LOMP_PROC_BIND_40 1 #define LOMP_OS_LINUX 1 #define LOMP_CANCEL_40 1 #include "/gsa/...
fpURerFBase.h
#ifndef fpRerF_h #define fpRerf_h #include "../../../baseFunctions/fpForestBase.h" #include <vector> #include <map> #include <algorithm> #include <unordered_map> #include <stdio.h> #include <ctime> #include <chrono> #include <cstdlib> #include "urerfTree.h" #include <sys/time.h> namespace fp { template <typename T> ...
hybrid_report_mask.c
/* Routine reports hybrid affinity information for MPI processes within an OpenMP region. Within a parallel region-- Rank 0 gathers thread affinities from each rank & reports. a.) Within a master region: Determine maximum length of node name. Gather node names from each ran...
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...
Process.h
#ifndef PROCESS_H_ #define PROCESS_H_ /* ========================================================================= Copyright (c) 2008-2015, Institute for Microelectronics, TU Wien. ----------------- ViennaTS - The Vienna Topography Simulator ...
trsm_c_sky_n_lo_row_conj.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include <memory.h> alphasparse_status_t ONAME(const ALPHA_Number alpha, const ALPHA_SPMAT_SKY *A, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, ALPHA_Number *y, const ALPHA_INT ldy) { ALPHA_INT m = A->rows; ALPHA_Complex diag...
macroCalls.c
//Extracted from SMG2000 int a[100][100]; void foo() { int i,j; int hypre__nx,hypre__ny; #define HYPRE_BOX_SMP_PRIVATE i,j #define HYPRE_SMP_PRIVATE \ HYPRE_BOX_SMP_PRIVATE,hypre__nx,hypre__ny #pragma omp parallel for private (HYPRE_SMP_PRIVATE) for (i=0;i<100; i++) for (j=0;j<100; j++) { hypre__n...
convolution_1x1_pack4to1.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 ...
diagsm_x_dia_u_col.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 *A, const ALPHA_Number *x, const ALPHA_INT columns, const ALPHA_INT ldx, ALPHA_Number *y, const ALPHA_INT ldy) { ...
GB_binop__pow_int64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
PoissonSolverMixed.h
// // Cubism3D // Copyright (c) 2018 CSE-Lab, ETH Zurich, Switzerland. // Distributed under the terms of the MIT license. // // Created by Guido Novati (novatig@ethz.ch). // #ifndef CubismUP_3D_PoissonSolverMixed_h #define CubismUP_3D_PoissonSolverMixed_h #include "PoissonSolver.h" CubismUP_3D_NAMESPACE_BEGIN c...
mkldnn_quantize_v2-inl.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 ...
openmp-simd-3.c
/* { dg-do compile } */ /* { dg-options "-fopenmp-simd -fdump-tree-original" } */ /* PR c/65586 */ void foo() { } int main() { #pragma omp for collapse(1) for (int i = 1; i <= 151; i+=31) foo(); } /* { dg-final { scan-tree-dump-not "omp" "original" } } */
DRB009-lastprivatemissing-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...
8957.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...
finalOMP.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <time.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> #include <omp.h> #define NMAX 75000000 static double N[NMAX]; static int lt[NMAX]; static int gt[NMAX]; static double local[NMAX]; void printArray(int n){ int j; pr...
test_nvector_openmpdev.c
/* ----------------------------------------------------------------- * Programmer(s): David J. Gardner @ LLNL * ----------------------------------------------------------------- * SUNDIALS Copyright Start * Copyright (c) 2002-2021, Lawrence Livermore National Security * and Southern Methodist University. * All ri...
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) ...
draw.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
mlp_mnist_f32.c
/****************************************************************************** * Copyright (c) Intel Corporation - All rights reserved. * * This file is part of the LIBXSMM library. * * * ...
GB_binop__le_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...
spals.c
#include "completion.h" #include "../csf.h" #include "../util.h" #include "../reorder.h" /* `shuffle_idx` needed for random sampling */ #include "../io.h" #include "../sort.h" #include <math.h> #include <omp.h> /* TODO: Conditionally include this OR define lapack prototypes below? * What does this of...
tests.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <complex.h> #include <math.h> #include "tests.h" #include "reader.h" #include "utils.h" #include "linalg.h" #include "projector.h" #include "sbt.h" #include <mkl.h> #include <mkl_types.h> #include <assert.h> #define PI 3.14159265359 double Ylmr(int l...
qdamc.c
/* * Quasi Diffusion Accelerated Monte Carlo * * This OpenMP implementation utilizes GPU for particle generation, there is a straightforward GPU implementation * and a asynchronous GPU implementation where we attempt to overlap communication and computation * * Authors: Han Dong * Paul Sathre * ...