source
stringlengths
3
92
c
stringlengths
26
2.25M
cast_ref.c
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * License); you ma...
MakeKmerStuff.h
/////////////////////////////////////////////////////////////////////////////// // SOFTWARE COPYRIGHT NOTICE AGREEMENT // // This software and its documentation are copyright (2012) by the // // Broad Institute. All rights are reserved. This software is supplied // ...
select_ci.c
/* Copyright 2014-2018 The PySCF Developers. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless requi...
miscellaneous.c
/* This source file is part of the Geophysical Fluids Modeling Framework (GAME), which is released under the MIT license. Github repository: https://github.com/OpenNWP/GAME */ /* This function is a collection of some helper functions that are needed for the grid generator. */ #include <netcdf.h> #include <math.h> #in...
sparseAsyncJacobi.h
// // Created by mbarb on 17/02/2018. // #ifndef PARALLELITERATIVE_SPARSEASYNCJACOBI_H #define PARALLELITERATIVE_SPARSEASYNCJACOBI_H #include <omp.h> #include <Eigen> #include <iostream> #include "utils.h" namespace Iterative { template <typename Scalar> class sparseAsyncJacobi { public: /** ...
GB_unop__identity_uint32_int32.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...
GB_binop__pow_fp64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-...
critical1.c
// PASS: * // RUN: ${CATO_ROOT}/src/scripts/cexecute_pass.py %s -o %t // RUN: diff <(mpirun -np 4 %t) %s.reference_output #include <stdio.h> #include <omp.h> int main() { int x = 0; #pragma omp parallel { #pragma omp critical { x += omp_get_thread_num(); } } pr...
gpu_reduce_demo.c
//------------------------------------------------------------------------------ // GraphBLAS/Demo/Program/reduce_demo: reduce a matrix to a scalar //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
core_math.h
// == mojo ==================================================================== // // Copyright (c) gnawice@gnawice.com. All rights reserved. // See LICENSE in root folder // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentatio...
GB_unop__identity_fc32_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...
SVGD.h
#ifndef E78F_SVGD_H #define E78F_SVGD_H #pragma once #include <algorithm> #include <utility> #include <vector> /* Copyright 2020 David Millard <dmillard10@gmail.com> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Softwar...
GB_unaryop__lnot_fp64_fp64.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
DRB049-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...
GB_binop__iseq_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-...
9885.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...
SumaVectoresCParallelSections.c
/* SumaVectoresC.c --------------- Suma de dos vectores: v3 = v1 + v2 Para compilar usar (-lrt: real time library): gcc -fopenmp -O2 SumaVectoresCParallelSections.c -o SumaVectoresCParallelSections -lrt Para ejecutar use: SumaVectoresC longitud Para obtener el ensamblador compilar con : gcc -O2 SumaVectoresCPa...
sum_openmp.c
/* Copyright (C) 2018 Francesc Alted http://blosc.org License: BSD 3-Clause (see LICENSE.txt) Example program showing how to operate with compressed buffers. To compile this program for synthetic data (default): $ gcc -fopenmp -O3 sum_openmp.c -o sum_openmp -lblosc2 To run: $ OMP_PROC_BIND=spread ...
GB_binop__div_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...
fft.c
/* Copyright 2013-2014. The Regents of the University of California. * Copyright 2016-2018. Martin Uecker. * Copyright 2018. Massachusetts Institute of Technology. * All rights reserved. Use of this source code is governed by * a BSD-style license which can be found in the LICENSE file. * * Authors: * 2011-2018 ...
clm.c
#include "clm.h" #include <math.h> #include <omp.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include "model.h" #include "type.h" #include "util.h" lbfgsfloatval_t evaluate_clm(void *instance, const lbfgsfloatval_t *x, lbfgsfloatval_t *g, const int n, ...
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, 2012 Free Software Foundation, Inc. Major work done by Sebastian Pop <s.pop@laposte.net>, ...
anakin_thread_parallel_nd.h
/******************************************************************************* * Copyright (c) 2018 Anakin Authors All Rights Reserve. * * 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 * * ...
FunctorsOpenMP.h
//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURP...
GB_binop__times_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-...
progress_counter.h
/* * Copyright (C) 2015, Nils Moehrle * TU Darmstadt - Graphics, Capture and Massively Parallel Computing * All rights reserved. * * This software may be modified and distributed under the terms * of the BSD 3-Clause license. See the LICENSE.txt file for details. */ #ifndef TEX_PROGRESSCOUNTER_HEADER #define TE...
GB_unop__atan_fp32_fp32.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...
pcp.h
/** * Author: Kartik Lakhotia Sourav Pati * Email id: klakhoti@usc.edu spati@usc.edu * Date: 27-Feb-2018 * * This code implements work optimized propagation blocking with * transposed bin graph to reduce cache misses in scatter */ #include <iostream> #include <stdio.h> #include <stdlib....
GB_unaryop__abs_fp64_int16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
convolution_3x3_pack4_fp16s.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 ...
GB_binop__max_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...
program_evaluator.h
// Ceres Solver - A fast non-linear least squares minimizer // Copyright 2010, 2011, 2012 Google Inc. All rights reserved. // http://code.google.com/p/ceres-solver/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are met: // ...
alcanceDatosII.c
#include <stdio.h> #include <stdlib.h> #define TAM 4 void init(float *a, float value){ for(int i=0;i<TAM;++i) *(a+i)=1.0f; } int main() { int memsize = sizeof(float)*TAM; float *a = (float *) malloc(memsize); float *b = (float *) malloc(memsize); float *c = (float *) malloc(memsize); float cons=2.0f; init...
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 ...
serial_teams.c
// RUN: %libomp-compile-and-run | %sort-threads | FileCheck %s // REQUIRES: ompt, multicpu // UNSUPPORTED: gcc // Compilation fails for icc // XFAIL: icc #include "callback.h" int main() { #pragma omp target teams num_teams(2) thread_limit(1) #pragma omp parallel num_threads(1) { printf("In teams parallel\n"); } r...
hello-omp.c
#include <unistd.h> #include <stdio.h> #include <stdlib.h> /* Exercise: Intent : Write a helloworld program with OpenMP. Goals: 1. Include OpenMP header 2. Within the scope of #pragma omp parallel a. Each thread queries it thread ID. b. Each thread then prints its thread ID. */ void main (){ int thread_...
sieve.c
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <math.h> int sieveOfEratosthenes(int n) { omp_set_num_threads(2) // Create a boolean array "prime[0..n]" and initialize // all entries it as true. A value in prime[i] will // finally be false if i is Not a pri...
irbuilder_unroll_partial_heuristic_for_collapse.c
// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py UTC_ARGS: --function-signature --include-generated-funcs // RUN: %clang_cc1 -fopenmp-enable-irbuilder -verify -fopenmp -fopenmp-version=51 -x c -triple x86_64-unknown-unknown -emit-llvm %s -o - | FileCheck %s // expected-no-diagnostics // RE...
opmphm.c
/** * @file * * @brief The Order Preserving Minimal Perfect Hash Map C benchmark. * * @copyright BSD License (see LICENSE.md or https://www.libelektra.org) */ // ==== DEFINE SECTION ==== #define _GNU_SOURCE #define KDBRAND_BENCHMARK // allows the seed injection into Elektra // uncomment to use OPENMP and set USE...
mkl_util.h
/* Copyright 2017 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
citrix_ns_fmt_plug.c
/* * Description from Nicolas Ruff: * - Salt value is hashed as an hexadecimal string, not bytes. * - The trailing NULL byte of password string is taken into account during * hashing. * - The leading '1' is actually the string length * '1' = 49 = len('1') + len(hex_salt) + len(hex_sha1) * * ----------------...
draw.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GrB_Matrix_wait.c
//------------------------------------------------------------------------------ // GrB_Matrix_wait: wait for a matrix to complete //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-License-Identifier:...
prelu_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...
test_vadd.c
#include <stdio.h> #include <stdlib.h> #include <assert.h> #ifdef __cilk #include <cilk/cilk.h> #endif #ifdef _OPENMP #include <omp.h> #endif #if USE_GFX #include <gfx/gfx_rt.h> #endif #define RESTRICT double vdiff(int n, const float * RESTRICT a, const float * RESTRICT b) { double d = 0.0; for(int i = 0; ...
msl_raptor_backend.h
/* Copyright 2020 Benjamin Ramtoula 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 agreed to in writing, softwar...
GB_unop__lnot_int64_int64.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX-Li...
barr-check.c
int main() { int X = 0; int Y = 0; #pragma omp parallel { int abc; while (1) { abc = 0 + 3; #pragma omp atomic Y = Y + 1; #pragma omp barrier #pragma omp atomic Y = Y + 2; #pragma omp barrier if (!abc) { #pragma omp single nowait { X = X + 1; } break; } #pragma omp atomic Y = Y...
blackscholes.c
#include "bullmoose.c" // Copyright (c) 2007 Intel Corp. // Black-Scholes // Analytical method for calculating European Options // // // Reference Source: Options, Futures, and Other Derivatives, 3rd Edition, // Prentice // Hall, John C. Hull, #include <stdio.h> #include <stdlib.h> #include <math.h> #include <string....
wino_conv_kernel_x86.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...
region_1.tfm.c
void foo(int N, int *A) { int TSize = 4; int T[4]; for (int I = 0; I < TSize; ++I) T[I] = I; #pragma spf region #pragma omp parallel { #pragma omp for default(shared) for (int I = 0; I < N; ++I) { A[I] = I; for (int J = 0; J < TSize; ++J) A[I] = A[I] + T[J]; } } }
copyprivate.c
/* $ gcc -fopenmp -O2 copyprivate.c -o copyprivate */ #include <stdio.h> #include <omp.h> main() { int n = 9, i, b[n]; for (i=0; i<n; i++) b[i] = -1; #pragma omp parallel { int a; // se copia y se difunde al resto de variables compartidas que tienen el resto de hebras // copyprivate solo va con single ...
pm.c
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> #include <time.h> #include <omp.h> #define TOL 10e-3 void printMatrix(double *matrix, int xDim, int yDim, FILE* fout) { int i = 0, j = 0; for (i = 0; i < xDim; i++) { for (j = 0; j < yDim; j++) { fprintf(fout, "%lf ", *(matrix + i * y...
VerletClusterListsTest.h
/** * @file VerletClusterListsTest.h * @author nguyen * @date 21.10.18 */ #pragma once #include <gtest/gtest.h> #include "AutoPasTestBase.h" #include "autopas/cells/FullParticleCell.h" #include "autopas/containers/verletClusterLists/traversals/VCLC06Traversal.h" #include "autopas/particles/Particle.h" #include "...
Link_Fibre.h
#include <vector> #include <array> #include <omp.h> // Matlab is colomn major. template<typename T,int d> struct Fibre { std::array<T,d> direction; std::vector<std::array<int,d>> link; std::vector<int> link_index; }; struct LinkTo{ int f; bool isStart; }; struct Terminal{ int f; bool isSta...
fill_int2e.c
/* * Author: Qiming Sun <osirpt.sun@gmail.com> */ #include <stdlib.h> #include <string.h> #include <math.h> #include "config.h" #include "cint.h" #define MAX(I,J) ((I) > (J) ? (I) : (J)) #define MIN(I,J) ((I) < (J) ? (I) : (J)) int GTOmax_shell_dim(int *ao_loc, int *shls_slice, int ncenter) { ...
GB_subref_slice.c
//------------------------------------------------------------------------------ // GB_subref_slice: construct coarse/fine tasks for C = A(I,J) //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http://suit...
random.c
/* Copyright (c) 2013, Intel Corporation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer...
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> ...
Tensor_Extension_Implementation.h
#include "Tensor_Extension.h" namespace Tensor_Extension { tuple<Tensorcd, Matrixcd, Vectord> SVD(const Tensorcd& A) { const TensorShape& tdim = A.shape(); size_t dimpart = tdim.lastBefore(); size_t ntensor = tdim.lastDimension(); using namespace Eigen; MatrixXcd Am = Eigen::Map<MatrixXcd>((complex<double...
main.c
#include "alg/grid/grid.h" #include "ini_parser/ini.h" #include "monodomain/monodomain_solver.h" #include "monodomain/ode_solver.h" #include "utils/logfile_utils.h" #include "string/sds.h" #include "monodomain/output_utils.h" #ifdef COMPILE_OPENGL #include "draw/draw.h" #endif int main (int argc, char **argv) { ...
kmp_set_dispatch_buf.c
// RUN: %libomp-compile // RUN: env KMP_DISP_NUM_BUFFERS=0 %libomp-run // RUN: env KMP_DISP_NUM_BUFFERS=1 %libomp-run // RUN: env KMP_DISP_NUM_BUFFERS=3 %libomp-run // RUN: env KMP_DISP_NUM_BUFFERS=4 %libomp-run // RUN: env KMP_DISP_NUM_BUFFERS=7 %libomp-run // RUN: %libomp-compile -DMY_SCHEDULE=guided // RUN: env KMP_...
vednnLinearForward.c
#include <stdint.h> #include "vednnLinearForward.h" #ifdef VEDNN_USE_OPENMP #include <omp.h> extern int __vednn_omp_num_threads ; #endif static inline vednnError_t vednnLinearForward_wrapper( vednnLinearForward_t pFunc, const uint64_t inDim, const uint64_t outDim, const uint64_t nBatch, con...
GB_unop__acosh_fc32_fc32.c
//------------------------------------------------------------------------------ // GB_unop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX-Li...
LAGraph_BF_full.c
//------------------------------------------------------------------------------ // LAGraph_BF_full.c: Bellman-Ford single-source shortest paths, returns tree //------------------------------------------------------------------------------ /* LAGraph: graph algorithms based on GraphBLAS Copyright 2019 LAGrap...
compute_ktopipi_type1.h
#ifndef _COMPUTE_KTOPIPI_TYPE1_H #define _COMPUTE_KTOPIPI_TYPE1_H CPS_START_NAMESPACE //TYPE 1 //Each contraction of this type is made up of different trace combinations of two objects: //1) \sum_{ \vec x } \Gamma_1 \prop^L(x_op,x) S_2 \prop^L(x,x_op) //2) \sum_{ \vec y, \vec x_K } \Gamma_2 \prop^L(x_op,y) S_2 ...
base.h
#include "callback.h" #include <omp.h> int main() { unsigned int i; #pragma omp parallel for num_threads(4) schedule(SCHEDULE) for (i = 0; i < 4; i++) { } // Check if libomp supports the callbacks for this test. // CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin' // CHECK-NOT:...
convolution_1x1_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 ...
point_task.h
/* Copyright 2021 NVIDIA Corporation * * 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 agreed...
GB_unop__round_fp32_fp32.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...
GB_unaryop__lnot_uint8_int32.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
BF_std.c
/* * This file is part of John the Ripper password cracker, * Copyright (c) 1996-2001,2008,2010,2011 by Solar Designer * * Redistribution and use in source and binary forms, with or without * modification, are permitted. * * There's ABSOLUTELY NO WARRANTY, express or implied. * * A public domain version of thi...
GB_ewise_slice.c
//------------------------------------------------------------------------------ // GB_ewise_slice: slice the entries and vectors for an ewise operation //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SP...
USCMatrix.h
#ifndef USCMATRIX_H #define USCMATRIX_H #include <Eigen/Dense> #include "maybe_omp.h" #include "util.h" namespace nplm { // is this cheating? using Eigen::Matrix; using Eigen::MatrixBase; using Eigen::Dynamic; // USC = Uniform Sparse Columns. A USCMatrix is a sparse matrix in which // each column has exactly k nonz...
StmtOpenMP.h
//===- StmtOpenMP.h - Classes for OpenMP directives ------------*- 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 // //===---------------------------...
pr25996.c
/* PR c/25996 */ void test1 (void) { #pragma omp for for (i = 0; i < 1; ++i); /* { dg-error "undeclared|for each function" } */ } void test2 (void) { int i; #pragma omp for for (i = j; i < 1; ++i); /* { dg-error "undeclared" } */ } void test3 (void) { int i; #pragma omp for for (i = 0; i < j; ++i); /* { dg...
LowAccessDensityTest_omp.c
//******************************************************************************************************************// // Copyright (c) 2021, University of North Carolina at Charlotte // and Lawrence Livermore National Security, LLC. // SPDX-License-Identifier: (BSD-3-Clause) //*****************************************...
hello.c
#include <stdio.h> #include <omp.h> int main() { #pragma omp parallel { int thread_ID = omp_get_thread_num(); printf("hello world %d\n", thread_ID); } }
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 // //===---------------------------...
attention.c
#include "darknet.h" #include <sys/time.h> #include <assert.h> void extend_data_truth(data *d, int n, float val) { int i, j; for(i = 0; i < d->y.rows; ++i){ d->y.vals[i] = realloc(d->y.vals[i], (d->y.cols+n)*sizeof(float)); for(j = 0; j < n; ++j){ d->y.vals[i][d->y.cols + j] = val;...
denseAsyncOverlappingJacobi.h
// // Created by mbarb on 16/02/2018. // #ifndef PARALLELITERATIVE_DENSEASYNCOVERLAPPINGJACOBI_H #define PARALLELITERATIVE_DENSEASYNCOVERLAPPINGJACOBI_H #include <Eigen> #include <iostream> #include "utils.h" #include "denseParallelJacobi.h" namespace Iterative { template <typename Scalar, long long SIZE> ...
close_enter_exit.c
// RUN: %libomptarget-compile-run-and-check-generic // REQUIRES: unified_shared_memory // UNSUPPORTED: clang-6, clang-7, clang-8, clang-9 // Fails on amdgcn with error: GPU Memory Error // XFAIL: amdgcn-amd-amdhsa #include <omp.h> #include <stdio.h> #pragma omp requires unified_shared_memory #define N 1024 int ma...
GB_unop__identity_int16_uint16.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...
enhance.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
DRB094-doall2-ordered-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...
solucao_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_binop__isne_int16.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
sha3_512_fmt_plug.c
/* SHA3-512 cracker patch for JtR. Hacked together during May, 2015 * by Dhiru Kholia <dhiru.kholia at gmail.com>. * * Thanks to https://github.com/codedot/keccak (Jim McDevitt) for the * "delimited suffix" stuff. * * This file is part of John the Ripper password cracker, * Copyright (c) 2012 by Solar Designer ...
NeuralNetwork_OMP_CPU6.c
/* NEURAL NETWORK OMP CPU6.c * by Lut99 * * Created: * 4/18/2020, 11:25:46 PM * Last edited: * 19/11/2020, 17:19:27 * Auto updated? * Yes * * Description: * The NeuralNetwork class implements a matrix-based Feedforward Neural * Network which is hardcoded to use Mean Squared Error for cost functi...
trsm_x_sky_n_lo_row.c
#include "alphasparse/kernel.h" #include "alphasparse/util.h" #include "alphasparse/opt.h" #include <memory.h> #ifdef _OPENMP #include <omp.h> #endif 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, cons...
harassment.c
#define MAX_DELAY (20) #define MAX_HARASSMENT (512) #ifdef _OPENMP #include <omp.h> #endif typedef struct knockout_context { practice_game pg; double scores[MAX_DELAY + 1][MAX_HARASSMENT + 1]; } knockout_context; void print_knockout(knockout_context *context) { print_practice(&context->pg); int n...
nr_ao2mo.c
/* * Author: Qiming Sun <osirpt.sun@gmail.com> * */ #include <stdlib.h> #include <string.h> #include <math.h> #include <assert.h> //#define NDEBUG //#include <omp.h> #include "config.h" #include "cint.h" #include "np_helper/np_helper.h" #include "vhf/cvhf.h" #include "vhf/fblas.h" #include "vhf/nr_direct.h" #inclu...
reduction.h
#ifndef FAASM_REDUCTION_H #define FAASM_REDUCTION_H #include <cstdint> #include "faasm/core.h" #include "faasm/random.h" #include <cstdio> #include <cstring> #include <faasm/array.h> #include <omp.h> #include <random> #include <string> template<typename T> class FaasmCounter { private: union State { ...
GB_unop__identity_int32_uint32.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...
jtmodel.c
/* Copyright 2013-2016. The Regents of the University of California. * All rights reserved. Use of this source code is governed by * a BSD-style license which can be found in the LICENSE file. * * Authors: * 2014-2016 Jonathan Tamir <jtamir@eecs.berkeley.edu> */ #include <string.h> #include <complex.h> #include...
atomic-2.c
/* { dg-do run } */ /* { dg-options "-O2 -fopenmp" } */ /* { dg-options "-O2 -fopenmp -march=nocona" { target i?86-*-* x86_64-*-* } } */ /* { dg-options "-O2 -fopenmp" { target ilp32 } } */ double d = 1.5; long double ld = 3; extern void abort (void); void test (void) { #pragma omp atomic d *= 1.25; #pragma omp ato...
test11.c
int g1 = 10; int g2 = 20; void foo () { 0+g1; l1: #pragma omp barrier 1+g2; } void bar() { g1 = 0; l2: #pragma omp barrier g2 = 1; } int main() { #pragma omp parallel { g1+2; g1 = 20; if (3+g1) { g2+4; foo (); 5+g2; } else { g2 = 6; g2 = 10; l3: #pragma omp barrier g1=7; } foob...
create_pairs_parallel.c
#include "utils.h" #include "algorithm.h" #include <stdio.h> #include <omp.h> void create_pairs(char * ranks_dir, char * output_dir, int chunk_id) { int i, writing_file; InverseRecord output; char ranks_file_name[MAX_PATH_LENGTH]; char sa_file_name[MAX_PATH_LENGTH]; char output_file_name[MAX_PATH_LENGTH]; lon...
sol1.c
/** * \file * \brief [Problem 22](https://projecteuler.net/problem=22) solution * \author [Krishna Vedala](https://github.com/kvedala) */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #ifdef _OPENMP #include <omp.h> #endif #define MAX_NAMES 6000 /**< Maximum number of names to store...
GB_unop__identity_uint32_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...