melissa jost has submitted this change. ( https://gem5-review.googlesource.com/c/public/gem5/+/53045 )

Change subject: stdlib: Moved LupV Board to an experimental folder
......................................................................

stdlib: Moved LupV Board to an experimental folder

Change-Id: I9cd67177fe8f0cb34bebb4fd3f9d3af0a518c7b6
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/53045
Maintainer: Bobby Bruce <bbr...@ucdavis.edu>
Tested-by: kokoro <noreply+kok...@google.com>
Reviewed-by: Jason Lowe-Power <power...@gmail.com>
---
M src/python/SConscript
R src/python/gem5/components/boards/experimental/lupv_board.py
A src/python/gem5/components/boards/experimental/__init__.py
3 files changed, 27 insertions(+), 11 deletions(-)

Approvals:
  Jason Lowe-Power: Looks good to me, approved
  Bobby Bruce: Looks good to me, approved
  kokoro: Regressions pass




diff --git a/src/python/SConscript b/src/python/SConscript
index 90ac7cd..dd02dd3 100644
--- a/src/python/SConscript
+++ b/src/python/SConscript
@@ -37,7 +37,10 @@
PySource('gem5.components.boards', 'gem5/components/boards/abstract_board.py')
 PySource('gem5.components.boards', 'gem5/components/boards/mem_mode.py')
 PySource('gem5.components.boards', 'gem5/components/boards/riscv_board.py')
-PySource('gem5.components.boards', 'gem5/components/boards/lupv_board.py')
+PySource('gem5.components.boards.experimental',
+    'gem5/components/boards/experimental/__init__.py')
+PySource('gem5.components.boards.experimental',
+    'gem5/components/boards/experimental/lupv_board.py')
PySource('gem5.components.boards', 'gem5/components/boards/simple_board.py')
 PySource('gem5.components.boards', 'gem5/components/boards/test_board.py')
 PySource('gem5.components.boards', 'gem5/components/boards/x86_board.py')
diff --git a/src/python/gem5/components/boards/experimental/__init__.py b/src/python/gem5/components/boards/experimental/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/src/python/gem5/components/boards/experimental/__init__.py
diff --git a/src/python/gem5/components/boards/lupv_board.py b/src/python/gem5/components/boards/experimental/lupv_board.py
similarity index 97%
rename from src/python/gem5/components/boards/lupv_board.py
rename to src/python/gem5/components/boards/experimental/lupv_board.py
index c6073a8..28aa209 100644
--- a/src/python/gem5/components/boards/lupv_board.py
+++ b/src/python/gem5/components/boards/experimental/lupv_board.py
@@ -27,14 +27,14 @@
 import os
 from typing import Optional

-from ...utils.override import overrides
-from .simple_board import SimpleBoard
-from .abstract_board import AbstractBoard
-from ..processors.abstract_processor import AbstractProcessor
-from ..memory.abstract_memory_system import AbstractMemorySystem
-from ..cachehierarchies.abstract_cache_hierarchy import AbstractCacheHierarchy
-from ...isas import ISA
-from ...runtime import get_runtime_isa
+from ....utils.override import overrides
+from ..simple_board import SimpleBoard
+from ..abstract_board import AbstractBoard
+from ...processors.abstract_processor import AbstractProcessor
+from ...memory.abstract_memory_system import AbstractMemorySystem
+from ...cachehierarchies.abstract_cache_hierarchy import AbstractCacheHierarchy
+from ....isas import ISA
+from ....runtime import get_runtime_isa

 import m5
 from m5.objects import (
@@ -173,10 +173,10 @@
             self._int_ids['RNG']
         ]

- # Set the number of sources to the PIC as 0 because we've removed the + # Set the number of sources to the PIC as 0 because we've removed the # connections from all the external devices to the PIC, and moved them # to the LupioPIC. The PIC and CLINT only remain on the board at this
-        # point for our bbl to use upon startup, and will
+        # point for our bbl to use upon startup, and will
         # remain unused during the simulation
         self.pic.n_src = 0
         self.pic.n_contexts = 0

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/53045
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I9cd67177fe8f0cb34bebb4fd3f9d3af0a518c7b6
Gerrit-Change-Number: 53045
Gerrit-PatchSet: 11
Gerrit-Owner: melissa jost <melissakj...@gmail.com>
Gerrit-Reviewer: Bobby Bruce <bbr...@ucdavis.edu>
Gerrit-Reviewer: Gabe Black <gabe.bl...@gmail.com>
Gerrit-Reviewer: Jason Lowe-Power <power...@gmail.com>
Gerrit-Reviewer: kokoro <noreply+kok...@google.com>
Gerrit-Reviewer: melissa jost <melissakj...@gmail.com>
Gerrit-MessageType: merged
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to