Dataset Viewer
Auto-converted to Parquet Duplicate
file_path
stringlengths
19
84
content
stringlengths
235
1.29M
./openacc-vv/serial_loop_reduction_multiply_general.F90
#ifndef T1 !T1:serial,reduction,combined-constructs,loop,V:2.6-2.7 LOGICAL FUNCTION test1() IMPLICIT NONE INCLUDE "acc_testsuite.Fh" REAL(8),DIMENSION(10):: a, b REAL(8):: reduced, host_reduced INTEGER:: errors, x, y errors = 0 SEEDDIM(1) = 1 # ifdef SEED SEEDDIM(1) = SEED # endif CALL RANDOM_S...
./openacc-vv/atomic_x_eqv_expr_end.F90
#ifndef T1 !T1:construct-independent,atomic,V:2.0-2.7 LOGICAL FUNCTION test1() IMPLICIT NONE INCLUDE "acc_testsuite.Fh" INTEGER :: x, y !Iterators REAL(8),DIMENSION(LOOPCOUNT, 10):: randoms LOGICAL,DIMENSION(LOOPCOUNT, 10):: a !Data LOGICAL,DIMENSION(LOOPCOUNT):: to...
./openacc-npb/CG/CG/cg.c
//-------------------------------------------------------------------------// // // // This benchmark is a serial C version of the NPB CG code. This C // // version is developed by the Center for Manycore Programming at Seoul // // Nati...
./openacc-vv/wait_if.cpp
#include "acc_testsuite.h" #ifndef T1 //T1:parallel,wait,async,if,V:2.7-3.3 int test1(){ int err = 0; srand(SEED); real_t *a = new real_t[n]; real_t *b = new real_t[n]; real_t *c = new real_t[n]; real_t *d = new real_t[n]; real_t *e = new real_t[n]; real_t *f = new real_t[n]; for (...
./openacc-vv/atomic_expr_minus_x.cpp
#include "acc_testsuite.h" bool possible_result(real_t * remaining_combinations, int length, real_t current_value, real_t test_value){ if (length == 0){ if (fabs(current_value - test_value) > PRECISION){ return true; } else { return false; } } real_t *...
./openacc-vv/parallel_reduction.F90
#ifndef T1 !T1:parallel,reduction,V:1.0-2.7 LOGICAL FUNCTION test1() IMPLICIT NONE INCLUDE "acc_testsuite.Fh" INTEGER :: x !Iterators REAL(8),DIMENSION(LOOPCOUNT):: a !Data REAL(8) :: results = 0 INTEGER :: errors = 0 !Initilization SEEDDIM(1) = 1 #...
./openacc-vv/atomic_plus_equals.c
#include "acc_testsuite.h" #ifndef T1 //T1:atomic,construct-independent,V:2.0-2.7 int test1(){ int err = 0; srand(SEED); real_t *a = (real_t *)malloc(n * sizeof(real_t)); real_t *b = (real_t *)malloc(n * sizeof(real_t)); real_t *totals = (real_t *)malloc((n/10 + 1) * sizeof(real_t)); real_t *tot...
./openacc-vv/atomic_update_min_expr_list_x_end.F90
#ifndef T1 !T1:construct-independent,atomic,V:2.0-2.7 LOGICAL FUNCTION test1() IMPLICIT NONE INCLUDE "acc_testsuite.Fh" INTEGER :: x, y !Iterators REAL(8),DIMENSION(LOOPCOUNT):: a, b !Data REAL(8),DIMENSION(LOOPCOUNT/10 + 1):: totals, totals_comparison INTEGER :: er...
./openacc-vv/exit_data_copyout_reference_counts.F90
#ifndef T1 !T1:data,executable-data,devonly,construct-independent,V:2.0-2.7 LOGICAL FUNCTION test1() IMPLICIT NONE INCLUDE "acc_testsuite.Fh" INTEGER :: x !Iterators REAL(8),DIMENSION(LOOPCOUNT):: a, b, c !Data INTEGER :: errors = 0 INTEGER,DIMENSION(1):: devtest ...
./openacc-vv/atomic_update_preincrement.c
#include "acc_testsuite.h" #ifndef T1 //T1:atomic,construct-independent,V:2.0-2.7 int test1(){ int err = 0; srand(SEED); real_t *a = (real_t *)malloc(n * sizeof(real_t)); real_t *b = (real_t *)malloc(n * sizeof(real_t)); int *distribution = (int *)malloc(10 * sizeof(int)); int *distribution_comp...
./SPECaccel/benchspec/ACCEL/557.pcsp/src/error.c
//-------------------------------------------------------------------------// // // // This benchmark is a serial C version of the NPB SP code. This C // // version is developed by the Center for Manycore Programming at Seoul // // Nati...
./openacc-vv/serial_loop_reduction_bitxor_loop.c
#include "acc_testsuite.h" #ifndef T1 //T1:serial,loop,reduction,combined-constructs,V:2.6-3.2 int test1(){ int err = 0; srand(SEED); unsigned int * a = (unsigned int *)malloc(10 * n * sizeof(unsigned int)); unsigned int * b = (unsigned int *)malloc(10 * n * sizeof(unsigned int)); unsigned int * b_c...
./openacc-vv/serial_loop_seq.c
#include "acc_testsuite.h" #ifndef T1 //T1:serial,loop,combined-constructs,V:2.6-2.7 int test1(){ int err = 0; srand(SEED); real_t * a = (real_t *)malloc(n * sizeof(real_t)); real_t * b = (real_t *)malloc(n * sizeof(real_t)); real_t temp = 0.0; for (int x = 0; x < n; ++x){ a[x] = rand()...
./openacc-vv/serial_loop_reduction_bitor_general.cpp
#include "acc_testsuite.h" #ifndef T1 //T1:serial,loop,reduction,combined-constructs,V:2.6-2.7 int test1(){ int err = 0; srand(SEED); unsigned int * a = (unsigned int *)malloc(n * sizeof(unsigned int)); unsigned int b = 0; unsigned int host_b; real_t false_margin = pow(exp(1), log(.5)/n); un...
./PhysiCell_GPU/sample_projects/virus_macrophage/config/PhysiCell_settings.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- /* ############################################################################### # If you use PhysiCell in your project, please cite PhysiCell and the version # # number, such as below: # # ...
./SPECaccel/benchspec/ACCEL/551.ppalm/data/test/input/ENVPAR
&envpar run_identifier = 'acc_small', host = 'unknown', write_binary = 'false', tasks_per_node = 1, maximum_cpu_time_allowed = 999999., revision = 'Rev: ', local_dvrserver_running = .FALSE. /
./openacc-vv/atomic_structured_divided_equals_assign.cpp
#include "acc_testsuite.h" bool is_possible(real_t* a, real_t* b, real_t* c, int length, real_t prev){ if (length == 0){ return true; } real_t *passed_a = new real_t[(length - 1)]; real_t *passed_b = new real_t[(length - 1)]; real_t *passed_c = new real_t[(length - 1)]; for (int x = 0; x...
./openacc-vv/atomic_capture_rshift_equals.cpp
#include "acc_testsuite.h" bool is_possible(unsigned int a, unsigned int* b, int length, unsigned int prev){ if (length == 0){ return true; } unsigned int passed_a = 0; unsigned int *passed_b = (unsigned int *)malloc((length - 1) * sizeof(unsigned int)); for (int x = 0; x < length; ++x){ ...
./PhysiCell_GPU/unit_tests/substrate_internalization/config/PhysiCell_settings.xml
<?xml version="1.0" encoding="UTF-8"?> <!-- /* ############################################################################### # If you use PhysiCell in your project, please cite PhysiCell and the version # # number, such as below: # # ...
./SPEChpc/benchspec/HPC/628.pot3d_s/src/hdf5/H5HFiblock.c
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * ...
./openacc-vv/serial_copy.c
#include "acc_testsuite.h" #ifndef T1 //T1:serial,data,data-region,V:2.6-2.7 int test1(){ int err = 0; srand(SEED); real_t * a = (real_t *)malloc(n * sizeof(real_t)); real_t * a_host = (real_t *)malloc(n * sizeof(real_t)); for (int x = 0; x < n; ++x){ a[x] = rand() / (real_t)(RAND_MAX / 10)...
./openacc-vv/acc_async_test.cpp
#include "acc_testsuite.h" #ifndef T1 //T1:async,runtime,construct-independent,V:2.0-2.7 int test1(){ int err = 0; real_t *a = new real_t[n]; real_t *b = new real_t[n]; real_t *c = new real_t[n]; real_t *d = new real_t[n]; real_t *e = new real_t[n]; for (int x = 0; x < n; ++x){ a[x]...
./openacc-vv/kernels_loop_vector_blocking.c
#include "acc_testsuite.h" #ifndef T1 //T1:kernels,loop,V:1.0-2.7 int test1(){ int err = 0; srand(SEED); real_t * a = (real_t *)malloc(n * sizeof(real_t)); real_t * b = (real_t *)malloc(n * sizeof(real_t)); real_t * c = (real_t *)malloc(n * sizeof(real_t)); real_t multiplyer = 1; for (int x = 0; x < n; +...
./openacc-vv/atomic_structured_predecrement_assign.c
#include "acc_testsuite.h" #ifndef T1 //T1:atomic,construct-independent,V:2.0-2.7 int test1(){ int err = 0; srand(SEED); real_t *a = (real_t *)malloc(n * sizeof(real_t)); real_t *b = (real_t *)malloc(n * sizeof(real_t)); int *c = (int *)malloc(n * sizeof(int)); int *distribution = (int *)malloc(...
./openacc-vv/atomic_capture_expr_minus_x.c
#include "acc_testsuite.h" bool is_possible(real_t* a, real_t* b, int length, real_t prev){ if (length == 0){ return true; } real_t *passed_a = (real_t *)malloc((length - 1) * sizeof(real_t)); real_t *passed_b = (real_t *)malloc((length - 1) * sizeof(real_t)); for (int x = 0; x < length; ++x...
./SPECaccel/benchspec/ACCEL/351.palm/src/cpu_statistics.F90
SUBROUTINE cpu_statistics !--------------------------------------------------------------------------------! ! This file is part of PALM. ! ! PALM 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 versi...
./openacc-vv/set_device_type_num_nvidia.F90
#ifndef T1 !T1:runtime,construct-independent,internal-control-values,set,nonvalidating,V:2.5-2.7 LOGICAL FUNCTION test1() USE OPENACC IMPLICIT NONE INCLUDE "acc_testsuite.Fh" INTEGER :: device_num INTEGER :: device_type INTEGER :: errors = 0 device_type = a...
End of preview. Expand in Data Studio

Dataset Card for "llm4vv-test-split"

More Information needed

Downloads last month
8