source
stringlengths
3
92
c
stringlengths
26
2.25M
known_hosts_fmt_plug.c
/* Quick-and-dirty cracker for ~/.ssh/known_hosts hashes (HashKnownHosts yes). * * Based on http://blog.tremily.us/posts/known_hosts/ * * This software is Copyright (c) 2014, Dhiru Kholia <dhiru at openwall.com>, * and it is hereby released to the general public under the following terms: * * Redistribution and ...
cri.c
#include <omp.h> int main() { int x; int i,id; x = 0; #pragma omp parallel shared(x) private(i,id) { #pragma omp critical { id = omp_get_thread_num(); printf("before thread %d : X = %d\n",id,x); for(i=0;i<3000000;i++) x = x + 1; printf("after thr...
num_threads.c
#include <stdio.h> #include <omp.h> int main() { omp_set_num_threads(4); printf("%d\n", omp_get_num_threads( )); #pragma omp parallel #pragma omp master { printf("%d\n", omp_get_num_threads( )); } printf("%d\n", omp_get_num_threads( )); #pragma omp parallel num...
residualbased_elimination_builder_and_solver_slip.h
// | / | // ' / __| _` | __| _ \ __| // . \ | ( | | ( |\__ ` // _|\_\_| \__,_|\__|\___/ ____/ // Multi-Physics // // License: BSD License // Kratos default license: kratos/license.txt // // Main authors: Riccardo Rossi // // #if !defined(KRATOS_RESIDUA...
GB_binop__rdiv_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...
ComputeNonbondedMICKernelBase2_scalar.h
#ifdef NAMD_MIC // For each entry in the pairlist... // Auto-vectorize via pairlist padding #if __MIC_PAD_PLGEN_CTRL != 0 // Set the number of elements/lanes per vector unit width for the data type that will be used #if MIC_HANDCODE_FORCE_SINGLE != 0 const int _plI_fs_outer_step = 16; // 32-bit ...
par_mgr.c
/****************************************************************************** * Copyright 1998-2019 Lawrence Livermore National Security, LLC and other * HYPRE Project Developers. See the top-level COPYRIGHT file for details. * * SPDX-License-Identifier: (Apache-2.0 OR MIT) **************************************...
omp-parallel-for-task.c
#include <omp.h> #include <stdio.h> #include <unistd.h> #define THREADS 2 #define LEN 7 int main(void) { int num[LEN] = {0}, k=0; omp_set_num_threads(THREADS); #pragma omp parallel for for (k=0; k<LEN; k++) { #pragma omp task { num[k] = omp_get_thread_num(); ...
mhpTest9.c
int sum[10]; int arr[10]; int *p = &sum; int main() { p = &sum; #pragma omp parallel { int x; // private if (1 > 2) { if (x < 1000) { p[0] = arr[0]; } #pragma omp barrier x = sum[1]; } else { #pragma omp barrier } } }
flatten.h
/* * flatten.h * LLAMA Graph Analytics * * Copyright 2014 * The President and Fellows of Harvard College. * * Copyright 2014 * Oracle Labs. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. R...
displacement_lagrangemultiplier_residual_frictional_contact_criteria.h
// KRATOS ___| | | | // \___ \ __| __| | | __| __| | | __| _` | | // | | | | | ( | | | | ( | | // _____/ \__|_| \__,_|\___|\__|\__,_|_| \__,_|_| MECHANICS // // License: BSD License // ...
GB_unaryop__identity_bool_uint8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
flexSolverPrimalDual.h
#ifndef flexSolverPrimalDual_H #define flexSolverPrimalDual_H #include "flexSolver.h" //! FlexBox solver class if using the non-CUDA version /*! flexSolverPrimalDual is an internal class for running the primal dual algortihm if using the non-CUDA version. This class should not be used directly. */ template<typenam...
matrix_op-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 ...
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...
decorate.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
mSortParallel.c
#include<stdlib.h> #include<stdio.h> #include<string.h> #include "omp.h" #define MAX_SIZE 10000//number of elements // function to generate an array void generate_list(int * x, int n) { int i,j = MAX_SIZE; for (i = 0; i < n; i++){ x[i] = j; j--; } } // merge function void merge(i...
main.c
#include <stdlib.h> #include <omp.h> void spin(volatile int t) { while(--t > 0) { } } int main(int argc, char** argv) { unsigned ITT = 1000000; int s = 100; if(argc > 1) { ITT = atoi(argv[1]); } if(argc > 2) { s = atoi(argv[2]); } #pragma omp parallel { unsigned id = omp_get_thread_num(); for(unsigned...
main.c
#include <stdio.h> #include <stdlib.h> #include <math.h> #include "omp.h" #include "aux.h" #define NIT 1000000 #define NE 10000 void sequential(int *data); void parallel_critical(int *data); void parallel_atomic(int *data); void parallel_locks(int *data); int main(int argc, char **argv){ int n, i, j, k, nth, th...
fftbench.c
// // fftbench.c // // A simple FFT implmentation for use as a micro-controller benchmark. This is an in-place // Radix-2 Decimation In Time FFT using fixed point arithmetic. // // When reimplementing this benchmark in other languages please honour the intention of // this benchmark by following the algorithm as closel...
_phono3py.c
/* Copyright (C) 2015 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...
omp.c
#include <stdio.h> #include <omp.h> #include <mpi.h> int main() { MPI_Init(NULL, NULL); int thread = 0, nthread = 1, rank = 0, nrank = 1; MPI_Comm_size(MPI_COMM_WORLD, &nrank); MPI_Comm_rank(MPI_COMM_WORLD, &rank); char proc_name[MPI_MAX_PROCESSOR_NAME]; int name_len; MPI_Get_processor_na...
GB_binop__lxor_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...
main.c
#include <stdio.h> #include <stdlib.h> #include <omp.h> #include "multisort.h" #include "merge.h" int main() { int N; int *A; int *temp; printf("Type how many numbers you want to sort: "); scanf("%d", &N); A=(int *)malloc(N*sizeof(int)); temp=(int *)malloc(N*s...
dropout-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 ...
base_serialized.h
#include "callback.h" #include <omp.h> int main() { unsigned int i; #pragma omp parallel for num_threads(1) schedule(SCHEDULE) for (i = 0; i < 1; i++) { } // Check if libomp supports the callbacks for this test. // CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin' // CHECK...
GB_assign_zombie1.c
//------------------------------------------------------------------------------ // GB_assign_zombie1: delete all entries in C(:,j) for GB_assign //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http://su...
GB_binop__plus_int32.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-cuda.c
/* Copyright 2013, 2015. 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: * 2012-2013, 2015 Martin Uecker <uecker@eecs.berkeley.edu> * * * Internal interface to the CUFFT library ...
GB_transpose_bucket.c
//------------------------------------------------------------------------------ // GB_transpose_bucket: transpose and optionally typecast and/or apply operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserve...
GB_binop__eq_fc32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
effect.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_binop__bxor_int32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
CPULauncher.h
// ---------------------------------------------------------------------------- // - Open3D: www.open3d.org - // ---------------------------------------------------------------------------- // The MIT License (MIT) // // Copyright (c) 2018 www.open3d.org // // Permissio...
MS_OpenMP_static.c
/* * ompd Mandelbort sort * */ #include <X11/Xlib.h> #include <stdio.h> #include <stdlib.h> #include <omp.h> typedef struct complexType { double real, imag; } Compl; int main(int argc, char *argv[]) { // ----------input--------------- int number_thread = atoi(argv[1]); double leftR = atof(argv[2]); ...
blur_float.h
// Copyright (C) 2017 Basile Fraboni // Copyright (C) 2014 Ivan Kutskir // All Rights Reserved // You may use, distribute and modify this code under the // terms of the MIT license. For further details please refer // to : https://mit-license.org/ // //! //! \file blur.cpp //! \author Basile Fraboni //! \date 2017 //...
ellipticBlockPartialAxHex3D_N3.c
extern "C" void FUNC(ellipticBlockPartialAxHex3D_N3)(const dlong & Nelements, const dlong & offset, const dlong & loffset, const dlong* __restrict__ elementList, const dfloat* __restrict__ gge...
chlpca.h
/* # # File : chlpca.cpp # ( C++ source file ) # # Description : Example of use for the CImg plugin 'plugins/chlpca.h'. # This file is a part of the CImg Library project. # ( http://cimg.eu ) # # Copyright : Jerome Boulanger # ( h...
DRB022-reductionmissing-var-yes.c
/* Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory Written by Chunhua Liao, Pei-Hung Lin, Joshua Asplund, Markus Schordan, and Ian Karlin (email: liao6@llnl.gov, lin32@llnl.gov, asplund1@llnl.gov, schordan1@llnl.gov, karlin1@llnl.gov) LLNL-CODE-73214...
GB_unop__ainv_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...
lensing.c
/** @file lensing.c Documented lensing module * * Simon Prunet and Julien Lesgourgues, 6.12.2010 * * This module computes the lensed temperature and polarization * anisotropy power spectra \f$ C_l^{X}, P(k), ... \f$'s given the * unlensed temperature, polarization and lensing potential spectra. * * Follows Chal...
pairwise3.c
/* Generated by Cython 0.25.2 */ /* BEGIN: Cython Metadata { "distutils": { "depends": [], "extra_compile_args": [ "-Wno-unused-function", "-Wno-maybe-uninitialized", "-O3", "-ffast-math", "-fopenmp" ], "extra_link_args": [...
calcMult.c
/* [2018] Isaias Faria Silva All Rights Reserved. NOTICE: All information contained here in this file is the property of Isaias Faria Silva. If you want to use this, please put the contact rights information. PURPOSE:Practical activity of Parallel Programming Clermont-Auver...
GB_binop__minus_fc32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2021, All Rights Reserved. // SPDX...
gemm_symm_int8.h
// chgemm is pleased to support the open source community by supporting ncnn available. // // author:tpoisonooo (https://github.com/tpoisonooo/chgemm) implement symmetric int8 GEMM on aarch64. // // Copyright (C) 2019 tpoisonooo. All rights reserved. // // Licensed under the BSD 3-Clause License (the "License"); you ma...
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 ...
map-1.c
/* { dg-do compile } */ /* { dg-options "-fopenmp" } */ extern int a[][10], a2[][10]; int b[10], c[10][2], d[10], e[10], f[10]; int b2[10], c2[10][2], d2[10], e2[10], f2[10]; int k[10], l[10], m[10], n[10], o; int *p; int **q; int r[4][4][4][4][4]; extern struct s s1; extern struct s s2[1]; /* { dg-error "array type h...
vect-outer-simd-1.c
/* { dg-require-effective-target vect_simd_clones } */ /* { dg-additional-options "-fopenmp-simd -ffast-math" } */ #include <stdlib.h> #include "tree-vect.h" #define N 64 float *px, *py; float *tx, *ty; float *x1, *z1, *t1, *t2; static void inline bar(const float cx, float cy, float *vx, floa...
GB_binop__land_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-...
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) #...
3d25pt.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-2, 3D 25 point stencil * Adapted from PLUTO and Pochoir test bench * * Tar...
GB_binop__lt_uint8.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2022, All Rights Reserved. // SPDX...
opencl_sxc_fmt_plug.c
/* * Modified by Dhiru Kholia <dhiru at openwall.com> for Keychain format. * * This software is Copyright (c) 2012 Lukas Odzioba <ukasz@openwall.net> * and it is hereby released to the general public under the following terms: * Redistribution and use in source and binary forms, with or without * modification, ar...
array_multiply_omp.c
#include <stdio.h> #include <stdlib.h> #include <time.h> #include <omp.h> /* <--- OpenMP --- */ int main(int argc, char **argv) { struct timespec ts_start, ts_end; int size = 1e8; int multiplier = 2; int *a, *c; int i; float time_total; /* Allocate memory for arrays */ a = malloc(size * sizeof(int)); c = mal...
nvptx_asm_delayed_diags.c
// RUN: %clang_cc1 -fopenmp -x c -triple i386-unknown-unknown -fopenmp-targets=nvptx-nvidia-cuda -emit-llvm-bc %s -o %t-x86-host.bc // RUN: %clang_cc1 -verify -fopenmp -x c -triple nvptx-unknown-unknown -fopenmp-targets=nvptx-nvidia-cuda %s -fopenmp-is-device -fopenmp-host-ir-file-path %t-x86-host.bc -fsyntax-only -Wun...
GB_unaryop__abs_int64_int8.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2019, All Rights Reserved. // http...
GB_binop__gt_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-...
declare_variant_messages.c
// RUN: %clang_cc1 -triple=x86_64-pc-win32 -verify -fopenmp -x c -std=c99 -fms-extensions -Wno-pragma-pack %s // RUN: %clang_cc1 -triple=x86_64-pc-win32 -verify -fopenmp-simd -x c -std=c99 -fms-extensions -Wno-pragma-pack %s // expected-error@+1 {{expected an OpenMP directive}} #pragma omp declare int foo(void); #p...
LCC04HCPTraversal.h
/** * @file LCC04HCPTraversal.h * @author sabrinakrallmann * @date 30.03.2020 */ #pragma once #include "autopas/containers/cellPairTraversals/C08BasedTraversal.h" #include "autopas/containers/linkedCells/traversals/LCC08CellHandler.h" #include "autopas/containers/linkedCells/traversals/LCTraversalInterface.h" #in...
diagmm_x_csr_u_col.c
#include "alphasparse/kernel.h" #include "alphasparse/util.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 ldy) { ALPHA_INT...
Example_metadirective.3.c
/* * @@name: metadirective.3c * @@type: C * @@compilable: yes * @@linkable: yes * @@expect: success * @@version: omp_5.0 */ #include <stdio.h> #include <math.h> #define N 1000 #pragma omp declare target void exp_pi_diff(double *d, double my_pi){ #pragma omp metadirective \ when( construct={targ...
3d25pt.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-2, 3D 25 point stencil * Adapted from PLUTO and Pochoir test bench * * Tar...
quansimbench.c
///////////////////////////////////////////////////////////////////////////// // Quantum Factorization Simulation as a Benchmark for HPC // Verifies that the area under the peaks of the Quantum Fourier Transform // of delta(2^x mod n,1) is larger than 1/2, where n=p*q is an // integer that satisfies n^2<=2^QUBITS<2...
SparseDenseProduct.h
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2008-2015 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...
SpecialPurposeNodes.h
// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE.md file in the project root for full license information. // #pragma once #include "Basics.h" #include "ComputationNode.h" #include "gammacalculation.h" #include "NonlinearityNodes.h" #include "latticearchive.h" #include...
DRB104-nowait-barrier-orig-no.c
/* Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at the Lawrence Livermore National Laboratory Written by Chunhua Liao, Pei-Hung Lin, Joshua Asplund, Markus Schordan, and Ian Karlin (email: liao6@llnl.gov, lin32@llnl.gov, asplund1@llnl.gov, schordan1@llnl.gov, karlin1@llnl.gov) LLNL-CODE-73214...
SCAPE.h
#pragma once #include "MatrixnD.h" #include "SCAPE_structs.h" #include "PCA_basis.h" #include <umfpack.h> #include "operators/alignPointClouds.h" #include "RandAccSparseMatrix.h" #include <omp.h> //#define SAVE_MATRIX 0 typedef SquareMatrixND<vec3d> SMat3D; static const int numParts = 16; static const int numJoints...
threadpool.h
/* Copyright 2015 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...
dgemm.c
/** * * @file * * PLASMA is a software package provided by: * University of Tennessee, US, * University of Manchester, UK. * * @generated from /home/luszczek/workspace/plasma/bitbucket/plasma/compute/zgemm.c, normal z -> d, Fri Sep 28 17:38:01 2018 * **/ #include "plasma.h" #include "plasma_async.h" #incl...
openmp-ex21.c
#include <stdio.h> #include <unistd.h> #include <omp.h> int main(void) { #pragma omp parallel { int i; #pragma omp parallel for for (i = 0; i < 4; i++) { int j; char wait[BUFSIZ] = {'\0'}; for (j = 0; j < 4 * i; j++) wait[j] = ' '; sleep(j); printf("%srow row row your bo...
DRB091-threadprivate2-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...
zbatch.c
#include "kog.h" #include "mem.h" #ifdef USE_MSR #include "msr.h" #endif /* USE_MSR */ #include "wre.h" int main(int argc, char *argv[]) { if (4 != argc) { (void)fprintf(stderr, "%s n #batches infile\n", argv[0]); return EXIT_FAILURE; } const size_t n = atoz(argv[1]); if (!n) { perror("atoz(n)"); ...
bugged4.c
/****************************************************************************** * ЗАДАНИЕ: bugged4.c * ОПИСАНИЕ: * Очень простая программа с segmentation fault. ******************************************************************************/ #include <omp.h> #include <stdio.h> #include <stdlib.h> // Слишком много па...
raceCond2.c
/****************************************************************************** * FILE: omp_bug2.c * DESCRIPTION: * Another OpenMP program with a bug. * AUTHOR: Blaise Barney * LAST REVISED: 04/06/05 ******************************************************************************/ // online source: https://compu...
gamma_index_ivfpq.h
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This faiss source code is licensed under the MIT license. * https://github.com/facebookresearch/faiss/blob/master/LICENSE * * * The works below are modified based on faiss: * 1. Replace the static batch indexing with real time indexing * 2. Add the fin...
Parser.h
//===--- Parser.h - C Language Parser ---------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
GB_binop__lt_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-...
calculate_global_physical_properties.h
#ifndef CALCULATE_GLOBAL_PHYSICAL_PROPERTIES_H #define CALCULATE_GLOBAL_PHYSICAL_PROPERTIES_H // /* External includes */ // System includes // Project includes #include "utilities/timer.h" #include "custom_utilities/create_and_destroy.h" #include "custom_elements/Particle_Contact_Element.h" #include "includes/variab...
GB_binop__islt_fp64.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
sweep_small_systems.h
/* * Copyright 1993-2010 NVIDIA Corporation. All rights reserved. * * Please refer to the NVIDIA end user license agreement (EULA) associated * with this source code for terms and conditions that govern your use of * this software. Any use, reproduction, disclosure, or distribution of * this software and related...
11_omp_mpi_simple.c
// clang-format off // RUN: %c-to-llvm -fno-discard-value-names %omp_c_flags %s | %apply-typeart -typeart-alloca -call-filter -typeart-filter-pointer-alloca=false -S 2>&1 | %filecheck %s --check-prefix CHECK-alloca-pointer // RUN: %c-to-llvm -fno-discard-value-names %omp_c_flags %s | %opt -O2 -S | %apply-typeart -typea...
decorate.c
/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % % % ...
GB_unop__identity_fc64_int8.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...
SpatialConvolution.c
#ifndef TH_GENERIC_FILE #define TH_GENERIC_FILE "generic/SpatialConvolution.c" #else static int nn_(SpatialConvolution_updateOutput)(lua_State *L) { THTensor *input = luaT_checkudata(L, 2, torch_Tensor); int dW = luaT_getfieldcheckint(L, 1, "dW"); int dH = luaT_getfieldcheckint(L, 1, "dH"); THTensor *weight =...
GB_binop__isgt_fp32.c
//------------------------------------------------------------------------------ // GB_binop: hard-coded functions for each built-in binary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http:...
Layer_Linear.h
/* * Layers.h * * Created by Guido Novati on 29.10.18. * Copyright 2018 ETH Zurich. All rights reserved. * */ #pragma once #include "Layers.h" template <int nOutputs, int nInputs> struct LinearLayer : public Layer { Params *allocate_params() const override { return new Params(nInputs * nOutputs, nOutpu...
reduction.c
/* 1. A local copy of reduction variable is made and initialized depending on the op(e.g. 0 for +). 2. Compiler finds standard reduction expressions containing op and uses them to update the local copy. 3. Local copies are reduced into a single value and combined with the original global value. */ #include <stdio.h>...
schedule-1.c
void foo (void) { int i; #pragma omp for schedule(static, 1) for (i = 0; i < 10; i++) ; #pragma omp for schedule(static, 0) /* { dg-warning "chunk size value must be positive" } */ for (i = 0; i < 10; i++) ; #pragma omp for schedule(static, -7) /* { dg-warning "chunk size value must be positive" }...
sapG_fmt_plug.c
/* * this is a SAP PASSCODE (CODEVN G) plugin for john the ripper. * tested on linux/x86 only, rest is up to you.. at least, someone did the reversing :-) * * please note: this code is in a "works for me"-state, feel free to modify/speed up/clean/whatever it... * * (c) x7d8 sap loverz, public domain, btw * cheer...
diagmm_x_csr_n_row.c
#include "alphasparse/kernel.h" #include "alphasparse/util.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 ldy) { ALPHA_INT...
GB_unop__tanh_fp64_fp64.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...
omp_alloc_null_fb.c
// RUN: %libomp-compile-and-run #include <stdio.h> #include <omp.h> int main() { omp_alloctrait_t at[2]; omp_allocator_handle_t a; void *p[2]; at[0].key = omp_atk_pool_size; at[0].value = 2 * 1024 * 1024; at[1].key = omp_atk_fallback; at[1].value = omp_atv_null_fb; a = omp_init_allocator(omp_large_cap...
durbin.c
/** * This version is stamped on May 10, 2016 * * Contact: * Louis-Noel Pouchet <pouchet.ohio-state.edu> * Tomofumi Yuki <tomofumi.yuki.fr> * * Web address: http://polybench.sourceforge.net */ /* durbin.c: this file is part of PolyBench/C */ #include <stdio.h> #include <unistd.h> #include <string.h> #inclu...
loop-5.c
__attribute__((noipa)) int foo (int *a, int *r3) { int r = 0, r2[2] = { 0, 0 }, i; #pragma omp parallel loop default (none) reduction (+:r, r2[:2], r3[:2]) shared (a) lastprivate (i) for (i = 0; i < 1024; i++) { r += a[i]; r2[0] += a[i]; r3[1] += a[i]; }; return r + r2[0] + r3[1] + i; ...
GB_unop__atanh_fc32_fc32.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...
density_prior_box_op.h
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or ag...
bktree.h
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #ifndef VECTORSEARCH_THIRD_PARTY_SPTAG_BKTREE_H_ #define VECTORSEARCH_THIRD_PARTY_SPTAG_BKTREE_H_ #include <iostream> #include <stack> #include <string> #include <vector> #include "vector_index.h" #include "common_utils....
GB_unaryop__abs_bool_uint16.c
//------------------------------------------------------------------------------ // GB_unaryop: hard-coded functions for each built-in unary operator //------------------------------------------------------------------------------ // SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2020, All Rights Reserved. // http...
curvilinear_parity_and_outer_boundary_conditions.h
// First we define the struct that will be used to store the 10 parity conditions at all gridpoints: // We store the 10 parity conditions in a struct consisting of 10 integers, one for each condition. // Note that these conditions can only take one of two values: +1 or -1. typedef struct parity_conditions { int8_t p...
search.h
// -*- C++ -*- // Copyright (C) 2007-2015 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library 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 3...