-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into rbarton/gemm
- Loading branch information
Showing
20 changed files
with
137 additions
and
67 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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
32 changes: 32 additions & 0 deletions
32
hw/vendor/patches/openhwgroup_cva6/0009-Update-FPU-wrap-in-CVA6.patch
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From 2c8a75b2fc38f89377d4731d81e074311ed89014 Mon Sep 17 00:00:00 2001 | ||
From: Luca Bertaccini <lbertaccini@iis.ee.ethz.ch> | ||
Date: Mon, 15 Jan 2024 14:29:47 +0100 | ||
Subject: [PATCH] Update FPU wrap in CVA6 | ||
|
||
--- | ||
hw/vendor/openhwgroup_cva6/core/fpu_wrap.sv | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/hw/vendor/openhwgroup_cva6/core/fpu_wrap.sv b/hw/vendor/openhwgroup_cva6/core/fpu_wrap.sv | ||
index 1dbe526..1d5cda3 100644 | ||
--- a/hw/vendor/openhwgroup_cva6/core/fpu_wrap.sv | ||
+++ b/hw/vendor/openhwgroup_cva6/core/fpu_wrap.sv | ||
@@ -518,6 +518,7 @@ module fpu_wrap import ariane_pkg::*; ( | ||
) i_fpnew_bulk ( | ||
.clk_i, | ||
.rst_ni, | ||
+ .hart_id_i ( '0 ), | ||
.operands_i ( fpu_operands ), | ||
.rnd_mode_i ( fpnew_pkg::roundmode_e'(fpu_rm) ), | ||
.op_i ( fpnew_pkg::operation_e'(fpu_op) ), | ||
@@ -527,6 +528,7 @@ module fpu_wrap import ariane_pkg::*; ( | ||
.int_fmt_i ( fpnew_pkg::int_format_e'(fpu_ifmt) ), | ||
.vectorial_op_i ( fpu_vec_op ), | ||
.tag_i ( fpu_tag ), | ||
+ .simd_mask_i ( '1 ), | ||
.in_valid_i ( fpu_in_valid ), | ||
.in_ready_o ( fpu_in_ready ), | ||
.flush_i, | ||
-- | ||
2.16.5 | ||
|
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
/*.log | ||
/.*_targets_group | ||
/sw/**/build/ | ||
/runs/ | ||
|
||
# Auto-generated sources | ||
/src/ | ||
|
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env python3 | ||
# Copyright 2023 ETH Zurich and University of Bologna. | ||
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Luca Colagrande <colluca@iis.ee.ethz.ch> | ||
|
||
import sys | ||
from pathlib import Path | ||
|
||
sys.path.append(str(Path(__file__).parent / '../../deps/snitch_cluster/util/sim')) | ||
from sim_utils import parser, get_simulations, run_simulations # noqa: E402 | ||
from Simulator import QuestaSimulator # noqa: E402 | ||
|
||
|
||
SIMULATORS = { | ||
'vsim': QuestaSimulator(Path(__file__).parent.resolve() / 'bin/occamy_top.vsim') | ||
} | ||
|
||
|
||
def main(): | ||
args = parser('vsim', SIMULATORS.keys()).parse_args() | ||
simulations = get_simulations(args.testlist, SIMULATORS[args.simulator]) | ||
return run_simulations(simulations, | ||
n_procs=args.n_procs, | ||
run_dir=Path(args.run_dir), | ||
dry_run=args.dry_run, | ||
early_exit=args.early_exit) | ||
|
||
|
||
if __name__ == '__main__': | ||
sys.exit(main()) |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Copyright 2023 ETH Zurich and University of Bologna. | ||
# Licensed under the Apache License, Version 2.0, see LICENSE for details. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Luca Colagrande <colluca@iis.ee.ethz.ch> | ||
|
||
include ../toolchain.mk | ||
include $(SNITCH_ROOT)/sw/math/Makefile |
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
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