Search is not available for this dataset
content stringlengths 0 376M |
|---|
<reponame>mlulaj/fuzzing
# Example for Innovus: https://legacy.iis.ee.ethz.ch/~vlsi2/ex05/ex05.pdf
---
file: pads.io
left: "1" # Bottom to top
top: "2" # Left to right
right: "3" # Bottom to top
bottom: "4" # Left to right
# Note: In your scripts, you should specify instanc... |
<reponame>baptistepetit/cordic
name: Main Branch Event
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
poc-build:
defaults:
run:
working-directory: poc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
... |
axi:
files:
- src/axi_pkg.sv
- src/axi_test.sv
- src/axi_intf.sv
- src/axi_arbiter.sv
- src/axi_address_resolver.sv
- src/axi_to_axi_lite.sv
- src/axi_lite_to_axi.sv
- src/axi_lite_xbar.sv
- src/axi_lite_cut.sv
- src/axi_lite_multicut.sv
- src/axi_lite_join.sv
- src/... |
<reponame>c-rus/legoHDL
name: build
on: [push]
jobs:
setup:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.5', '3.x']
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
#setup python
... |
<gh_stars>0
event_unit_flex:
incdirs: [
.,
]
files: [
event_unit_core.sv,
event_unit_interface_mux.sv,
event_unit_top.sv,
soc_periph_fifo.sv,
interc_sw_evt_trig.sv,
hw_barrier_unit.sv,
hw_mutex_unit.sv,
hw_dispatch.sv
]
|
<reponame>BearerPipelineTest/google-ctf<gh_stars>1000+
# Human readable task name
name: story
# Long form description.
description: |+
Please, tell me a beautiful story.
# The flag
flag: CTF{eb64749d08bd99b681f2bc75aa65eab35a80310f7426f6872ba869d244e37135}
# Task category. (one of hardware, crypto, pwn, reversing, w... |
<filename>.travis.yml
language: scala
# https://docs.travis-ci.com/user/notifications/#IRC-notification
notifications:
irc:
channels:
- "chat.freenode.net#lichess"
on_success: change
on_failure: always
use_notice: true
skip_join: true
slack:
rooms:
- lichess:sVTqlE0OQNMPq1n6qRnV... |
<filename>.github/workflows/shortIntegrationTests.yml<gh_stars>10-100
name: Short integration tests
# Run the integration tests on one configuration (of the nightly matrix) on each
# push to main. Should catch 95% of integration test breakages. Useful for
# identifying the particular offending commit and emailing the ... |
name: testbench
commands:
- python ../../../tests/test_timing/generate_testbench.py outputs --width $array_width --height $array_height
- mv outputs/Interconnect_tb.sv outputs/testbench.sv
outputs:
- testbench.sv
|
version: 2
jobs:
fedora_bmake:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:latest
steps:
- run:
name: Install Git
command: |
dnf -y install git || :
- checkout
- run:
name: Install build tools
... |
<reponame>BearerPipelineTest/google-ctf<filename>2021/quals/web-security-driven/challenge.yaml
# Copyright 2021 Google LLC
#
# 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.... |
<gh_stars>10-100
name: Continuous Build
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: "0 5 * * *" # run at 5 AM UTC
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
-... |
sudo:
required
dist:
trusty
language: python
python:
- "2.7"
- "3.4"
branches:
only:
- master
before_install:
- sudo apt-get -qq update
# Icarus Verilog simulator
- sudo apt-get install -qq -y iverilog
# GHDL (0.33 or greater is required, not available in repository.
# Install GHDL dependencies
... |
<filename>.buildkite/pipeline_mflowgen.yml
agents: { jobsize: "hours" }
##############################################################################
# Use this to test a specific branch/commit:
# Add to env:
# NOV11: ee214ef77b827f969e4b5f056f5d866cf391be7a
# Add to commands:
# - pwd; git branch; git checkout $$NO... |
name: Deploy
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
sudo apt install -y veril... |
package:
name: axi2per
dependencies:
axi_slice: { git: "https://github.com/pulp-platform/axi_slice.git", version: 1.1.3 }
sources:
# Level 0
- axi2per_req_channel.sv
- axi2per_res_channel.sv
# Level 1
- axi2per.sv
|
DesyTrackerRoot:
enable: 'True'
ForceWrite: 'False'
DesyTrackerRunControl:
CalMeanCount: 500
CalDacMin: 200
CalDacMax: 255
CalDacStep: 5
CalDacCount: 5
CalChanMin: 000
CalChanMax: 1023
DesyTracker:
enable: 'True'
AxiVersion:
enable: 'True'
ScratchPad: '0x000000'
... |
name: MacOS Wheel Deploy
on:
push:
tags:
- '*'
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git co... |
<filename>.travis.yml<gh_stars>1-10
language: java
dist: trusty
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
- sudo apt-get -qq update
- sudo apt-get install -y libgnat-4.6
- chmod +x travis/ghdl-install.sh
- travis/ghdl-install.sh
after_success:
- ./gradlew jacocoTestReport
- bash <(curl -s htt... |
language: python
dist: Xenial
python: "3.6"
install:
# Get Migen / LiteX / Cores
- wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
- python3 litex_setup.py init install
script: python setup.py test
|
<gh_stars>10-100
name: CI Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://... |
<filename>.pep8speaks.yml
scanner:
diff_only: True # If False, the entire file touched by the Pull Request is scanned for errors. If True, only the diff is scanned.
linter: flake8 # Other option is pycodestyle
no_blank_comment: False # If True, no comment is made on PR without any errors.
descending_issues_... |
<reponame>slaclab/kpix
DesyTrackerRoot:
enable: 'True'
ForceWrite: 'False'
DesyTrackerRunControl:
runRate: 'Auto'
# DataWriter:
# enable: 'True'
# dataFile: ''
# open: 'False'
# bufferSize: '0'
# maxFileSize: '0'
DesyTracker:
enable: 'True'
AxiVersion:
enable: 'True'
Scra... |
# This is a basic workflow to help you get started with Actions
name: Generate Bitstream
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
repository_dispatch:
types: [test-pass]
# A workflow run is made up of one or more jobs that can ... |
GitBase: ..
TopRoguePackage: pgp_pcie_apps
RoguePackages:
- submodules/axi-pcie-core/python
- submodules/surf/python
- ../software/python
RogueConfig:
RogueScripts:
- ../software/scripts/LoopbackTesting.py
- ../software/scripts/PgpTesting.py
- ../software/scripts/PrbsTesting.py
Targets:
##############... |
<filename>src/main/docker/gitlab-jenkins.yml
version: "2"
services:
gitlab:
image: gitlab/gitlab-ce:latest
volumes:
- artemis-gitlab-data:/var/opt/gitlab
- artemis-gitlab-logs:/var/log/gitlab
- artemis-gitlab-config:/etc/gitlab
- ./gitlab/gitlab-setup.... |
<gh_stars>0
files:
- common/source/clk_div_n.vhd
- common/sim/clk_div_n_long_code_tb.vhd
- common/sim/clk_div_n_stimulus_array_tb.vhd
- common/sim/clk_div_n_stimulus_file_tb.vhd
tests:
- clk_div_n_long_code_tb
- clk_div_n_stimulus_array_tb
- clk_div_n_stimulus_file_tb
|
<reponame>f110/wing
apiVersion: minio.f110.dev/v1alpha1
kind: MinIOUser
metadata:
name: test
spec:
selector:
matchLabels:
app: minio
path: /object-storage/test
|
<reponame>makaimann/fault<gh_stars>10-100
name: Linux Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Instal... |
<gh_stars>10-100
---
title: The SPU Mark II Instruction Set Architecture
author:
- Felix "xq" Queißner
date: April 28, 2020
abstract: This is the documentation for the SPU Mark II instruction set architecture. It is a stack based 16 bit processor that features a highly configurable instruction set. |
<gh_stars>10-100
description: >-
Final version of data and analysis scripts for sigcomm submission
experiment: fec
repositories:
P4Boosters: c1fd10db
TofinoP4Boosters: 1d83cb15853
files:
data: iperf_output/
config.yml: execution/cfgs/iperf.yml
analysis.ipynb: analysis/fecAnalysis.ipynb
ru... |
dist: xenial
language: python
python:
- 3.6.9
- '3.7'
install:
- pip install -r requirements.txt
script:
- "/bin/bash -c ci/run.sh"
deploy:
provider: pypi
user: __token__
password:
secure: <KEY>
distributions: sdist bdist_wheel
skip_existing: true
skip_cleanup: true
on:
tags: true
branches:
... |
name: minerva32
version: 0.1.0.0
#github: "hesiod/minerva32"
license: Apache-2.0
author: "<NAME>"
maintainer: "<EMAIL>"
copyright: "Tobias Markus 2018"
extra-source-files:
- README.md
synopsis: RV32I CPU built on Clash
cate... |
<reponame>DanielTRYTRYLOOK/RDF-2020
name: aes_cipher_top
clock_port: clk
verilog:
- aes_cipher_top.v
- aes_inv_cipher_top.v
- aes_inv_sbox.v
- aes_key_expand_128.v
- aes_rcon.v
- aes_sbox.v
- timescale.v
|
- name: update apt cache
apt: update_cache=yes
- name: Install desktop packages
apt: name={{ item }} state=latest
with_items:
- ubuntu-desktop
- virtualbox-guest-dkms
- virtualbox-guest-utils
- virtualbox-guest-x11
- build-essential
- autoconf
- name: Prepare node.js
shell: 'curl -sL h... |
<filename>server/launch/sample_balanced2/configuration.yml
config:
core_coordination_impl: redis
debug_mode: true
server_admin: <EMAIL>
hosts:
main_machine:
config_file: main_machine/machine_config.py
runner: launch_sample_balanced2_machine.py
processes:
main_instance1:
components:
... |
# This is a basic workflow to help you get started with Actions
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container: verilator/verilator
strategy:
matrix:
node-version: [16.x]
# See supported Node... |
services:
- docker
script:
# Get images
- docker pull ghdl/ghdl:buster-gcc-8.3.0
- docker pull cdelledonne/msp430-gcc
# Testing installations
- docker run -t ghdl/ghdl:buster-gcc-8.3.0 ghdl --version
- docker run -t cdelledonne/msp430-gcc msp430-elf-gcc -v
# Run SW check (check if all example ... |
<reponame>zephyr-cosim/zephyr-cosim
description: LiteX VexRiscV interrupt controller
compatible: "zephyr-cosim-intc"
include: [interrupt-controller.yaml, base.yaml]
properties:
# riscv,max-priority:
# type: int
# description: maximum interrupt priority
# required: true
"#interrupt-cells":
c... |
package:
name: riscv-dbg
sources:
files:
- src/dm_pkg.sv
- debug_rom/debug_rom.sv
- debug_rom/debug_rom_snd_scratch.sv
- src/dm_csrs.sv
- src/dm_mem.sv
- src/dm_top.sv
- src/dm_obi_top.sv
- src/dmi_cdc.sv
- src/dmi_jtag.sv
- src/dmi_jtag_tap.sv
- src/dm_sba.sv
|
apiVersion: v1
kind: Namespace
metadata:
name: harbor
---
apiVersion: v1
kind: ConfigMap
metadata:
name: harbor
namespace: harbor
data:
EXT_ENDPOINT: http://registry.f110.dev
---
apiVersion: v1
kind: Secret
metadata:
name: harbor
namespace: harbor
stringData:
HARBOR_ADMIN_PASSWORD: <PASSWORD>
---
apiVersi... |
<reponame>Steinegger/cv32e40p
package:
name: riscv
dependencies:
fpnew: { git: "https://github.com/pulp-platform/fpnew.git", version: 0.6.1 }
tech_cells_generic: { git: "https://github.com/pulp-platform/tech_cells_generic.git", version: 0.1.1 }
sources:
include_dirs:
- rtl/include
files:
- rtl/inclu... |
<filename>mflowgen/common/garnet-requirements-check/configure.yml
name: garnet-requirements
commands:
- $GARNET_HOME/bin/requirements_check.sh |& tee requirements_check.log
- egrep '^\*\*\*ERROR' requirements_check.log && exit 13 || echo requirements check GOOD
postconditions:
- assert '***ERROR' not in File( 're... |
<reponame>danaagur/opentitan
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# Azure template for downloading pipeline step outputs and unpacking them.
#
# This template will download all artifacts from upstream jobs (wh... |
%YAML 1.2
---
BirdEyeImgRatio: 0.00084 # 路面の俯瞰画像の取得倍率: 1pixあたりの大きさ(m)
ExecutePeriod:
wo_calculating: 0.001
line_tracing: 0.005
debagging: 0.100
Debug:
imwrite_mode: 0
|
<reponame>diorga/snitch<filename>hw/vendor/pulp_platform_common_cells/.github/workflows/ci.yml
name: ci
on: [push]
jobs:
build:
# Job name is Greeting
name: Verible Lint
# This job runs on Linux
runs-on: ubuntu-18.04
env:
VERIBLE_VERSION: v0.0-557-g287da29
steps:
- uses: actions/c... |
<reponame>mfkiwl/NEM-Relay-CGRA
dist: trusty
language: c
sudo: false
addons:
apt:
# sources:
# - ubuntu-toolchain-r-test
packages:
- csh
- verilator
# - build-essential
install:
# Current working directory: /home/travis/build/akashlevy/CGRAGenerator
- git clone https://github.com... |
icache-intc:
files: [
DistributedArbitrationNetwork_Req_icache_intc.sv,
DistributedArbitrationNetwork_Resp_icache_intc.sv,
icache_intc.sv,
Req_Arb_Node_icache_intc.sv,
Resp_Arb_Node_icache_intc.sv,
RoutingBlock_Req_icache_intc.sv,
RoutingBlock_Resp_icache_intc.sv,
lint_mux.sv,
Rout... |
<reponame>mfkiwl/udma_hyper
package:
name: udma_hyper
authors:
- "<NAME> <<EMAIL>>"
sources:
- udma-hyperbus/src/cdc_fifo_gray_hyper.sv
- udma-hyperbus/src/graycode_hyper.sv
- udma-hyperbus/src/clock_diff_out.sv
- udma-hyperbus/src/clk_gen_hyper.sv
- udma-hyperbus/src/onehot_to_bin_hyper.sv
- udma-... |
<gh_stars>1-10
pulp_cluster:
vlog_opts: [
-L fpnew_lib,
]
incdirs: [
../../rtl/includes,
]
files: [
packages/pulp_cluster_package.sv,
rtl/core_region.sv,
rtl/core_demux.sv,
rtl/cluster_interconnect_wrap.sv,
rtl/tcdm_banks_wrap.sv,
rtl/periph_demux.sv,
rtl/per_demux_wrap.sv,... |
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35-x64"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scri... |
<filename>ucode/code_dw.yml
#
# code_dw.yml
#
# Copyright (C) 2019-2021 ETH Zurich, University of Bologna and GreenWaves Technologies
# 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
#
# htt... |
<reponame>mfkiwl/yifive_r0
---
project:
description: "A Custom SoC for Google sponsored Open MPW shuttles for SKY130."
foundry: "SkyWater"
git_url: "https://github.com/dineshannayya/yifive_r0.git"
organization: "None"
organization_url: "None"
owner: "<NAME>"
process: "SKY130"
project_name: "YiFive"
pr... |
init:
- git submodule init
- git submodule update --init --recursive
# reset is not yet supported
reset:
- git submodule deinit -f .
|
---
category:
- Environment variables
- Initialization
- Simple
note: Programming environment operations
|
<filename>examples/zedboard/picoblaze/config.yml
---
name: picoblaze
board: boards/zedboard
version: 0.1.1
cores:
- fpga/cores/axi_ctl_register_v1_0
- fpga/cores/axi_sts_register_v1_0
- fpga/cores/dna_reader_v1_0
- fpga/cores/kcpsm6_v1_0
memory:
- name: control
offset: '0x60000000'
range: 4K
- nam... |
version: 1.0.{build}
environment:
matrix:
- compiler: msbuild
CONFIGURATION: Release
- compiler: msys2
ARCH: x64
MSYS2_ARCH: x86_64
MSYS2_DIR: msys64
MSYSTEM: MINGW64
- compiler: msys2
ARCH: x86
MSYS2_ARCH: i686
MSYS2_DIR: msys64
MSYSTEM: MINGW32
... |
<reponame>StanfordAHA/garnet
name: CI Test
on:
# Every push
push:
# When requested manually
workflow_dispatch:
# Every morning at 3am -- how does it know which branch to run??
schedule:
- cron: '0 3 * * *'
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message,... |
<filename>Task/Palindrome-detection/00META.yaml
---
category:
- Recursion
- String manipulation
- Classic CS problems and programs
- Palindromes
note: Text processing
|
name: rnn-pytorch-1.4
channels:
- pytorch
- conda-forge
- defaults
dependencies:
- python=3.6
- pytorch==1.4.0
- torchvision==0.5.0
- torchmetrics==0.5.0
- Pandas
- Keras
- pybind11
- ftfy
- word2number
- conllu 4.*
- overrides 3.*
- spacy 2.*
- tqdm 4.48.*
- docopt
- transformers ... |
<gh_stars>1000+
# Human readable task name
name: PCIVault 1
# Long form description.
description: |+
We plan to extend our cloud offering with a secure key-value store. Right now
it is already a groundbreaking dedicated device that can store your data, but
in the future we will provide military-grade encryption c... |
<filename>hw/vendor/openhwgroup_cva6/Bender.yml
package:
name: cva6
authors:
- "<NAME> <<EMAIL>>"
- "<NAME> <<EMAIL>>"
dependencies:
axi: {path: ../../vendor/pulp_platform_axi}
common_cells: {path: ../../vendor/pulp_platform_common_cells}
fpnew: {path: ../../vendor/pulp_platform_fpnew}
reqrsp_inter... |
<gh_stars>0
language: java
jdk:
- oraclejdk7
- openjdk7
before_script: ./gradlew installApp
script: ./parsertests.py
|
<filename>.github/workflows/sv-tests-ci.yml<gh_stars>0
name: sv-tests-ci
on:
push:
branches:
'master'
pull_request:
jobs:
Test:
name: "Code Quality Checks"
runs-on: ubuntu-18.04
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true
... |
<gh_stars>1-10
# Yaml configuration file for verible-verilog-format.
# Generated from `verible-verilog-format --helpfull` output and
# then formatted into a yaml file for convenience.
# assignment_statement_alignment - Format various assignments: {align,flush-left,preserve,infer};
# default: infer;
assignment_statemen... |
<reponame>slaclab/Simple-ZCU216-Example<gh_stars>0
Root:
XilinxZcu216:
Application:
AppRingBuffer:
Adc:
Ch[:]:
TrigBurst: 0x0
ContinuousMode: 0x1
Dac:
Ch[:]:
TrigBurst: 0x0
ContinuousMode: 0x1
DacSigGen:
enable... |
name: earlgrey
description: Earlgrey design from opentitan
top_module: top_earlgrey_nexysvideo
tags: earlgrey uvm
path: third_party/cores/opentitan
command: fusesoc --cores-root third_party/cores/opentitan run --target=sim lowrisc:systems:top_earlgrey:0.1
conf_file: build/lowrisc_systems_top_earlgrey_0.1/sim-icarus/cor... |
- status: 0 - openlane design prep
runtime_s: 1.581
runtime_ts: 0h0m1s581ms
- status: 1 - synthesis - yosys
runtime_s: 18.689
runtime_ts: 0h0m18s689ms
- status: 2 - sta - openroad
runtime_s: 2.004
runtime_ts: 0h0m2s4ms
- status: 3 - floorplan initialization - openroad
runtime_s: 0.64
runtime_ts: 0h0m0s6... |
<reponame>atmughrabi/CAPIPrecis<filename>.travis.yml
sudo: required
dist: xenial
before_install:
- sudo apt-get update -qq
env: OMP_NUM_THREADS=4
language: c
compiler:
- gcc
script:
- make -j
- make test
notifications:
email:
on_success: never
on_failure: always
recipients:
- <EMAIL>
- <EMAIL... |
<filename>src/main/docker/activemq.yml
version: '2'
services:
activemq-broker:
image: vromero/activemq-artemis:latest
environment:
- ARTEMIS_USERNAME=guest
- ARTEMIS_PASSWORD=<PASSWORD>
ports:
- 61613:61613
|
<reponame>ameetgohil/SignalFlip-js
#=========================================================================
# Travis CI Configuration
#=========================================================================
# This file configures Travis CI to automatically run tests for this RTL
# project everytime a commit is made... |
parameter_list:
- &channel_width 1
- &code_precision 8
- &output_precision 8
- &ffe_length 3
- &ffe_weight_precision 8
- &estimate_depth 16
- &estimate_precision 8
- &sequence_length 5
- &decision_shift_precision 4
- &ffe_shift_precision 5
- &mlsd_bit_length 1
- &mlsd_est_cursor_pos 0
generic:
... |
top:
cover_percentage: 81.25
coverage: 26
size: 32
type: <class 'cocotb_coverage.coverage.CoverItem'>
top.fifo_empty:
at_least: 1
bins:_hits:
false: 74
true: 26
cover_percentage: 100.0
coverage: 2
size: 2
type: <class 'cocotb_coverage.coverage.CoverPoint'>
weight: 1
top.fifo_full:
at_lea... |
<filename>.github/workflows/build.yml
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
name: 'Nightly ZeroSoC Build'
jobs:
zerosoc_build_job:
timeout-minutes: 60
runs-on: self-hosted
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- run: |
... |
oscope_top_test:
before_script:
- cd projects/oscope/bmb7_cu
stage: test
script:
- make Voscope_top_tb && make Voscope_top_leep && make clean
oscope_top_bmb7:
before_script:
- cd projects/oscope/bmb7_cu && ls /non-free
stage: synthesis
script:
- verilator -V && XILINX_VIVADO=$XILINX_VIVADO ... |
name: vitis-ai-optimizer_tensorflow2
channels:
- conda-forge
dependencies:
- python=3.8
- vai_optimizer_tensorflow2_gpu
|
name: pytest
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pi... |
<gh_stars>100-1000
name: fomu_ci
on: [push, pull_request]
jobs:
fomu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- run: bash scripts/setup -ci
- run: which pip3 && which python3 && which ... |
<filename>models/AI-Model-Zoo/model-list/cf_multitask_bdd_288_512_14.8G_2.0/model.yaml
# Copyright 2019 Xilinx Inc.
#
# 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.... |
<reponame>nicolasruscher/Artemis
blank_issues_enabled: false
contact_links:
- name: ❓ Support Question
url: https://artemis.ase.in.tum.de/mailto
about: Please do not file questions or support requests on the GitHub issues tracker. Please contact the Artemis Team using Email at <EMAIL>.
|
stages:
- Selftest
variables:
GIT_SUBMODULE_STRATEGY: recursive
pyIPCMI-Selftest:
stage: Selftest
before_script:
- pip3 install -r tools/GitLab-CI/requirements.txt
# - ./tools/GitLab-CI/ghdl.setup.sh
- ./tools/GitLab-CI/poc.setup.sh
script:
# - ./tools/GitLab-CI/poc.dryrun.sh
- ./tools/Git... |
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# The default configuration, which picks at random from various other
# configurations
inherit:
- base
- cfgs: loopy
weight: 0.1
|
name: sw-ci
on:
schedule:
- cron: '0 0 * * *'
pull_request:
branches: [develop]
jobs:
sw-release:
runs-on: [self-hosted, Linux, ARM, Pi]
steps:
- name: Git Checkout
uses: actions/checkout@v2
- name: Configure CMake
run: cmake -GNinja -Bbuild
- name: Build libDigit... |
dist: bionic
addons:
apt:
packages:
- libzmq3-dev
language: cpp
compiler: gcc
before_install:
- sudo apt update
- sudo apt -y install libpugixml-dev
- sudo apt -y install libboost-all-dev
before_script:
- mkdir systemc
- wget https://accellera.org/images/download... |
<gh_stars>0
sim.inputs.top_module: "hdc_sensor_fusion"
sim.inputs.tb_dut: "dut"
sim.inputs.tb_name: "hdc_sensor_fusion_tb"
sim.inputs.input_files_meta: "append"
sim.inputs.input_files:
- "src/HDC_Sensor_Fusion_9M/hdc_sensor_fusion.sv"
- "src/HDC_Sensor_Fusion_9M/memory_wrapper_gsr.sv"
- "src/HDC_Sensor_Fusio... |
<filename>.github/workflows/docs.yml
name: 'doc'
on:
push:
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: buildthedocs/btd@v0
with:
token: ${{ github.token }}
|
os: linux
dist: xenial
language: c
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise
packages:
- gcc-5
- g++-5
before_install:
- sudo apt-get -qq update
# - sudo dpkg --add-architecture i386
# - sudo apt-get update
# - sudo apt-get install lib... |
language: python
install:
- pip install -r requirements.txt
- pip install .
script: coverage run -m unittest
after_success: codecov
|
<reponame>rodrigomelo9/zynq-examples<gh_stars>1-10
name: 'hdl'
on:
push:
jobs:
examples:
name: 'Running examples'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Pulling a container image with FLOSS synthesizers
run: docker pull hdlc/ghdl:yosys
- name: Running synth... |
# Copyright 2022 ETH Zurich
#
# 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, s... |
<gh_stars>1-10
language: cpp
dist: bionic
os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- valgrind
- verilator
- yosys
install:
# TOOLCHAIN
- ci/toolchain_install.sh -all
- export RISCV_TOOLCHAIN_PAT... |
<reponame>ahadnagy/fletcher-alveo<filename>.github/workflows/book.yml
name: Book
on:
push:
branches:
- master
pull_request:
paths:
- 'book/**'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install mdbook
run: |
mkdir ... |
<reponame>sarnold/chiptools<filename>.pre-commit-config.yaml<gh_stars>0
# To install the git pre-commit hook run:
# pre-commit install
# To update the pre-commit hooks run:
# pre-commit install-hooks
repos:
- repo: meta
hooks:
- id: check-useless-excludes
- id: check-hooks-apply
- repo: https://... |
<reponame>oswaldlo1/snitch
package:
name: axi_riscv_atomics
authors: ["<NAME> <<EMAIL>>", "<NAME> <<EMAIL>>"]
dependencies:
axi: { git: "https://github.com/pulp-platform/axi.git", version: 0.35.1 }
common_cells: { git: "https://github.com/pulp-platform/common_cells.git", version: 1.11.0 }
common_verification... |
<gh_stars>1-10
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Cache iverilog
uses: actions/cache@v1
env:
cache-name: cache-iverilog
... |
<reponame>e-matthews/cva5<gh_stars>1-10
stages:
- build-toolchain
- embench
- compliance-test
- dhrystone
- coremark
#- util_timing_rpt
build-toolchain:
tags:
- new-taiga-ci
stage: build-toolchain
script:
- echo $CI_PROJECT_NAMESPACE
- echo $CI_PROJECT_PATH
- echo $CI_P... |
<reponame>tzaumiaan/vhdl_repo<gh_stars>0
src_list:
rtl:
- cordic_core.vhd
- cordic_lzsh.vhd
- cordic_top.vhd
tb:
- tb_pkg.vhd
- tb.vhd
submodules: null
sim:
top_name: tb
pat_in: pat_in.txt
pat_out: pat_out.txt
dut_out: dut_out.txt
pat_gen_script: pat_gen_cordic
pat_comp_script: pat_c... |
<filename>temp/capi/capi_action.mmio.yaml
meta:
mnemonic: ACTION
name: capi_action
brief: MMIO-Map Action Space.
doc: |
Each action has a 4KB MMIO space which can be accessed from a master
context or from a slave context using the address ranges as described in
the respective MMIO-Map above.
T... |
# @package _global_
defaults:
- override /do_blink/fig1a@do_blink.fig.fig1a: []
- override /do_blink/fig2a@do_blink.fig.fig2a: []
- override /do_blink/spam_filter@do_<EMAIL>.<EMAIL>.spam_filter: []
- override /do_blink/digit_recognition@do_blink.fig.digit_recognition: []
- override /do_blink/rendering@do_blin... |
# Site settings
title: Creative Commons Labs
email: <EMAIL>
description: > # this means to ignore newlines until "baseurl:"
Website of the Creative Commons tech team.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://labs.creativecommons.org" # the base hostname & protocol for your site
twitter_usern... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.