Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
aml
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
27
Issues
27
List
Boards
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
argo
aml
Commits
b3c9093f
Commit
b3c9093f
authored
Feb 15, 2019
by
Swann Perarnau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
License & copyright
parent
c759c9df
Pipeline
#6696
passed with stage
in 9 minutes and 12 seconds
Changes
51
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
51 changed files
with
561 additions
and
0 deletions
+561
-0
.gitignore
.gitignore
+3
-0
.gitlab-ci.yml
.gitlab-ci.yml
+10
-0
.repoquality
.repoquality
+13
-0
AUTHORS
AUTHORS
+4
-0
CONTRIBUTING.markdown
CONTRIBUTING.markdown
+55
-0
LICENSE
LICENSE
+26
-0
benchmarks/dgemm_mkl.c
benchmarks/dgemm_mkl.c
+10
-0
benchmarks/dgemm_noprefetch.c
benchmarks/dgemm_noprefetch.c
+10
-0
benchmarks/dgemm_prefetch.c
benchmarks/dgemm_prefetch.c
+10
-0
benchmarks/stream_add_omp.c
benchmarks/stream_add_omp.c
+10
-0
benchmarks/stream_add_omp_mt.c
benchmarks/stream_add_omp_mt.c
+10
-0
benchmarks/stream_add_omp_st.c
benchmarks/stream_add_omp_st.c
+10
-0
benchmarks/stream_add_pth_st.c
benchmarks/stream_add_pth_st.c
+10
-0
benchmarks/utils.c
benchmarks/utils.c
+10
-0
src/aml.c
src/aml.c
+10
-0
src/aml.h
src/aml.h
+10
-0
src/area.c
src/area.c
+10
-0
src/area_linux.c
src/area_linux.c
+10
-0
src/area_linux_manager.c
src/area_linux_manager.c
+10
-0
src/area_linux_mbind.c
src/area_linux_mbind.c
+10
-0
src/area_linux_mmap.c
src/area_linux_mmap.c
+10
-0
src/area_posix.c
src/area_posix.c
+10
-0
src/arena.c
src/arena.c
+10
-0
src/arena_jemalloc.c
src/arena_jemalloc.c
+10
-0
src/binding.c
src/binding.c
+10
-0
src/binding_interleave.c
src/binding_interleave.c
+10
-0
src/binding_single.c
src/binding_single.c
+10
-0
src/dma.c
src/dma.c
+10
-0
src/dma_linux_par.c
src/dma_linux_par.c
+10
-0
src/dma_linux_seq.c
src/dma_linux_seq.c
+10
-0
src/scratch.c
src/scratch.c
+10
-0
src/scratch_par.c
src/scratch_par.c
+10
-0
src/scratch_seq.c
src/scratch_seq.c
+10
-0
src/tiling.c
src/tiling.c
+10
-0
src/tiling_1d.c
src/tiling_1d.c
+10
-0
src/tiling_2d.c
src/tiling_2d.c
+10
-0
src/vector.c
src/vector.c
+10
-0
tests/area_linux.c
tests/area_linux.c
+10
-0
tests/area_posix.c
tests/area_posix.c
+10
-0
tests/arena_jemalloc.c
tests/arena_jemalloc.c
+10
-0
tests/binding.c
tests/binding.c
+10
-0
tests/dma_linux_par.c
tests/dma_linux_par.c
+10
-0
tests/dma_linux_seq.c
tests/dma_linux_seq.c
+10
-0
tests/linux_manager.c
tests/linux_manager.c
+10
-0
tests/linux_mbind.c
tests/linux_mbind.c
+10
-0
tests/linux_mmap.c
tests/linux_mmap.c
+10
-0
tests/scratch_par.c
tests/scratch_par.c
+10
-0
tests/scratch_seq.c
tests/scratch_seq.c
+10
-0
tests/tiling.c
tests/tiling.c
+10
-0
tests/tiling_2d.c
tests/tiling_2d.c
+10
-0
tests/vector.c
tests/vector.c
+10
-0
No files found.
.gitignore
View file @
b3c9093f
...
...
@@ -3,6 +3,9 @@
# unignore files with extensions
!*.*
# unignore special files
!AUTHORS
!LICENSE
# unignore all dirs
!*/
...
...
.gitlab-ci.yml
View file @
b3c9093f
variables
:
ARGOPKGS
:
"
https://xgitlab.cels.anl.gov/argo/argopkgs/-/archive/continuous-integration/argopkgs-continuous-integration.tar.gz"
stages
:
-
build
...
...
@@ -37,3 +40,10 @@ make:knl:
-
/^WIP.*/
tags
:
-
knl
repoquality
:
stage
:
build
script
:
-
nix run -f "$ARGOPKGS" repoquality --command repoquality
tags
:
-
integration
.repoquality
0 → 100644
View file @
b3c9093f
src/*.c
src/*.h
tests/*.c
benchmarks/dgemm_mkl.c
benchmarks/dgemm_noprefetch.c
benchmarks/dgemm_prefetch.c
benchmarks/stencil_pth_mt.c
benchmarks/stream_add_omp.c
benchmarks/stream_add_omp_mt.c
benchmarks/stream_add_omp_st.c
benchmarks/stream_add_pth_mt.c
benchmarks/stream_add_pth_st.c
benchmarks/utils.c
AUTHORS
0 → 100644
View file @
b3c9093f
Swann Perarnau <swann@anl.gov>
Kamil Iskra <iskra@mcs.anl.gov>
Brian Suchy <briansuchy2022@u.northwestern.edu>
Valentin Reis <fre@freux.fr>
CONTRIBUTING.markdown
0 → 100644
View file @
b3c9093f
Contributing to The Project
===========================
The following is a set of guidelines for contributing to this project. These
are guidelines, not rules, so use your best judgement and feel free to propose
changes.
## Commit Messages Styleguide
-
use present tense, imperative mood
-
reference issues and merge requests
-
you can use
[
Gitlab Flavored Markdown
](
https://docs.gitlab.com/ee/user/markdown.html
)
If you want some help, here is a commit template that you can add to your git
configuration. Save it to a
`my-commit-template.txt`
file and use
`git config
commit.template my-config-template.txt`
to use it automatically.
```
# [type] If applied, this commit will... ---->|
# Why this change
# Links or keys to tickets and others
# --- COMMIT END ---
# Type can be
# feature
# fix (bug fix)
# doc (changes to documentation)
# style (formatting, missing semi colons, etc; no code change)
# refactor (refactoring production code)
# test (adding missing tests, refactoring tests; no production code change)
# --------------------
# Remember to
# Separate subject from body with a blank line
# Limit the subject line to 50 characters
# Capitalize the subject line
# Do not end the subject line with a period
# Use the imperative mood in the subject line
# Wrap the body at 72 characters
# Use the body to explain what and why vs. how
# Can use multiple lines with "-" for bullet points in body
# --------------------
```
## Signoff on Contributions:
The project uses the
[
Developer Certificate of
Origin
](
https://developercertificate.org/
)
for copyright and license
management. We ask that you sign-off all of your commits as certification that
you have the rights to submit this work under the license of the project (in
the
`LICENSE`
file) and that you agree to the DCO.
To signoff commits, use:
`git commit --signoff`
.
To signoff a branch after the fact:
`git rebase --signoff`
LICENSE
0 → 100644
View file @
b3c9093f
Copyright (c) 2019, UChicago Argonne, LLC. All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
benchmarks/dgemm_mkl.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
benchmarks/dgemm_noprefetch.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
benchmarks/dgemm_prefetch.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
benchmarks/stream_add_omp.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <assert.h>
#include <errno.h>
#include <omp.h>
...
...
benchmarks/stream_add_omp_mt.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
benchmarks/stream_add_omp_st.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
benchmarks/stream_add_pth_st.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
benchmarks/utils.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include "utils.h"
#include <stdarg.h>
#include <stdio.h>
...
...
src/aml.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
int
aml_init
(
int
*
argc
,
char
**
argv
[])
...
...
src/aml.h
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#ifndef AML_H
#define AML_H 1
...
...
src/area.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/area_linux.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <sys/mman.h>
...
...
src/area_linux_manager.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <assert.h>
#include <aml.h>
#include <sys/mman.h>
...
...
src/area_linux_mbind.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <assert.h>
#include <aml.h>
#include <sys/mman.h>
...
...
src/area_linux_mmap.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <assert.h>
#include <aml.h>
#include <fcntl.h>
...
...
src/area_posix.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <sys/mman.h>
...
...
src/arena.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/arena_jemalloc.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <assert.h>
#include <aml.h>
#include <jemalloc/jemalloc-aml.h>
...
...
src/binding.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/binding_interleave.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/binding_single.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/dma.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/dma_linux_par.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
src/dma_linux_seq.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
src/scratch.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/scratch_par.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/scratch_seq.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/tiling.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/tiling_1d.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/tiling_2d.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
src/vector.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <errno.h>
...
...
tests/area_linux.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <numa.h>
...
...
tests/area_posix.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/arena_jemalloc.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/binding.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/dma_linux_par.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/dma_linux_seq.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/linux_manager.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/linux_mbind.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <numa.h>
...
...
tests/linux_mmap.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
#include <inttypes.h>
...
...
tests/scratch_par.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/scratch_seq.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
#include <aml.h>
#include <assert.h>
...
...
tests/tiling.c
View file @
b3c9093f
/*******************************************************************************
* Copyright 2019 UChicago Argonne, LLC.
* (c.f. AUTHORS, LICENSE)
*
* This file is part of the AML project.
* For more info, see https://xgitlab.cels.anl.gov/argo/aml
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/