OpenCores
URL https://opencores.org/ocsvn/nocmodel/nocmodel/trunk

Subversion Repositories nocmodel

[/] [nocmodel/] [trunk/] [nocmodel/] [__init__.py] - Blame information for rev 4

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 dargor
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
 
4
#
5
# NoCmodel package
6
#
7
# Author:  Oscar Diaz
8 4 dargor
# Version: 0.2
9
# Date:    05-07-2012
10 2 dargor
 
11
#
12
# This code is free software; you can redistribute it and/or
13
# modify it under the terms of the GNU Lesser General Public
14
# License as published by the Free Software Foundation; either
15
# version 2.1 of the License, or (at your option) any later version.
16
#
17
# This code is distributed in the hope that it will be useful,
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20
# Lesser General Public License for more details.
21
#
22
# You should have received a copy of the GNU Lesser General Public
23
# License along with this library; if not, write to the
24
# Free Software  Foundation, Inc., 59 Temple Place, Suite 330,
25
# Boston, MA  02111-1307  USA
26
#
27
 
28
#
29
# Changelog:
30
#
31
# 03-03-2011 : (OD) initial release
32 4 dargor
# 14-03-2011 : (OD) support for code generation 
33 2 dargor
#
34
 
35
"""
36
================
37
NoCmodel package
38
================
39
 
40
This package includes:
41
 
42
* Module noc_base: NoCmodel Base Objects
43
* Module noc_guilib: NoCmodel Graphic utilities
44 4 dargor
* Module noc_tbm_base: NoCmodel TBM simulation support
45
* Module noc_tbm_utils: helper functions for TBM simulation
46
* Module noc_codegen_base: NoCmodel base for code generation support
47
* Module noc_codegen_vhdl: VHDL support for code generation
48
* Module noc_helpers: Utility functions
49 2 dargor
* Package basicmodels: basic examples of NoC objects (not imported by default)
50
"""
51
 
52
# required modules
53
import networkx as nx
54
 
55
# provided modules
56
from noc_base import *
57
from noc_guilib import *
58 4 dargor
from noc_tbm_base import *
59
from noc_tbm_utils import *
60
from noc_rtl_myhdl import *
61
from noc_codegen_base import *
62
from noc_codegen_vhdl import *
63
from noc_helpers import *
64 2 dargor
 
65 4 dargor
__version__ = "0.2"

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.