-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from pulp-platform/release-1.10
Release 1.10
- Loading branch information
Showing
15 changed files
with
97 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 13 additions & 2 deletions
15
header/register_defines.svh → include/common_cells/registers.svh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,3 @@ | ||
//----------------------------------------------------------------------------- | ||
// Title : Popcount | ||
//----------------------------------------------------------------------------- | ||
// File : popcount.sv | ||
// Author : Manuel Eggimann <[email protected]> | ||
// Created : 01.11.2018 | ||
//----------------------------------------------------------------------------- | ||
// Description : | ||
// This module calculates the hamming weight (number of ones) in its input vector using a | ||
// balanced binary adder tree. Recursive instantiation is used to build the tree. | ||
// Any unsigned INPUT_WIDTH larger or equal 2 is legal. The module pads the signal internally | ||
// to the next power of two. The output result width is ceil(log2(INPUT_WIDTH))+1. | ||
//----------------------------------------------------------------------------- | ||
// Copyright (C) 2013-2018 ETH Zurich, University of Bologna | ||
// Copyright and related rights are licensed under the Solderpad Hardware | ||
// License, Version 0.51 (the "License"); you may not use this file except in | ||
|
@@ -20,7 +7,14 @@ | |
// this License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
// CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations under the License. | ||
//----------------------------------------------------------------------------- | ||
|
||
// Author: Manuel Eggimann <[email protected]> | ||
|
||
// Description: This module calculates the hamming weight (number of ones) in | ||
// its input vector using a balanced binary adder tree. Recursive instantiation | ||
// is used to build the tree. Any unsigned INPUT_WIDTH larger or equal 2 is | ||
// legal. The module pads the signal internally to the next power of two. The | ||
// output result width is ceil(log2(INPUT_WIDTH))+1. | ||
|
||
module popcount #( | ||
parameter int unsigned INPUT_WIDTH = 256, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
// Copyright (c) 2018 ETH Zurich, University of Bologna | ||
// All rights reserved. | ||
// Copyright 2018 ETH Zurich and University of Bologna. | ||
// | ||
// This code is under development and not yet released to the public. | ||
// Until it is released, the code is under the copyright of ETH Zurich and | ||
// the University of Bologna, and may contain confidential and/or unpublished | ||
// work. Any reuse/redistribution is strictly forbidden without written | ||
// permission from ETH Zurich. | ||
// | ||
// Bug fixes and contributions will eventually be released under the | ||
// SolderPad open hardware license in the context of the PULP platform | ||
// (http://www.pulp-platform.org), under the copyright of ETH Zurich and the | ||
// University of Bologna. | ||
// Copyright and related rights are licensed under the Solderpad Hardware | ||
// License, Version 0.51 (the "License"); you may not use this file except in | ||
// compliance with the License. You may obtain a copy of the License at | ||
// http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law | ||
// or agreed to in writing, software, hardware and materials distributed under | ||
// this License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR | ||
// CONDITIONS OF ANY KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations under the License. | ||
// | ||
// Fabian Schuiki <[email protected]> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
// Author: Florian Zaruba, [email protected] | ||
// Description: Delay (or randomize) AXI-like handshaking | ||
|
||
module ready_valid_delay #( | ||
module stream_delay #( | ||
parameter bit StallRandom = 0, | ||
parameter int FixedDelay = 1, | ||
parameter type payload_t = logic | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters