MATRIXx

cancel
Showing results for 
Search instead for 
Did you mean: 

Using modified template file with hyperbuild

When I am trying to use the hyperbuild utility in version 6.2.2 or 7.0.1 i get the following error:


----------------------------
hyperbuild622 -t /usr/local/apps/matrixx-6.2.2/solaris_mx_62.2/hyper/HBC/templates/c_hyper.tpl hyper_test.rtf

*********************************************************
* HyperBuild/C Code Generator V6.2 *
* *
* (C) Copyright 1999. Integrated Systems Inc. *
* Unpublished work; Restricted rights apply. *
* All rights reserved. Portions U.S. Patent. *
*********************************************************
hyperbuild-M-1401: Restricted Code Generation.
Main template
/usr/local/apps/matrixx-6.2.2/solaris_mx_62.2/hyper/HBC/templates/c_hyper.tpl
compiled to c_hyper.dac.
hyperbuild-F-0066: Template-dac file c_hyper.dac may not be used in this
: version.
---------------------------------------

However, if I use the existing '.dac' with "-d" option it works fine.

-----------------------------------------
hyperbuild622 -d /usr/local/apps/matrixx-6.2.2/solaris_mx_62.2/hyper/HBC/templates/c_hyper.dac hyper_test.rtf

*********************************************************
* HyperBuild/C Code Generator V6.2 *
* *
* (C) Copyright 1999. Integrated Systems Inc. *
* Unpublished work; Restricted rights apply. *
* All rights reserved. Portions U.S. Patent. *
*********************************************************
hyperbuild-M-1401: Restricted Code Generation.
Loading 'hyper_test.rtf' ...
Initializing ...
Processing names ...
Building symbols ...
Executing '/usr/local/apps/matrixx-6.2.2/solaris_mx_62.2/hyper/HBC/templates/c_hyper.dac' :
Generating subsystems declarations ...
Generating subsystems definitions ...
Code generated in hyper_test.c.

Generating the containing catalog ...
Model generated in hyper_test.hyb.

Code and model generation complete.

--------------------------------------

Is there a way to use hyperbuild with a modified version of c_hyper.tpl (using -t flag)?
0 Kudos
Message 1 of 3
(7,053 Views)
Farshid,

HyperBuild is only meant to be used with the template that is provided. When you go through the user interface in SystemBuild and choose Tools>HyperBuild then you do not have the ability to specify the template. It can only use the precompiled template that is shipped with MATRIXx. This is also what the "Restricted Code Generation" refers to.

If you want to modify the code generation then you should be using AutoCode. With AutoCode you can rewrite the template. You can either generate code that you compile into a stand-alone exectuable for simulation. Or you could generate code that can be linked into the simulation using a usercode block.

Carl L
National Instruments
0 Kudos
Message 2 of 3
(7,052 Views)
Thanks for your response. I will explain below the reasons that we looked at the possibility of using Hyperbuild instead of Autocode. But, at the beginning I would like to mention that the unix command "hyperbuild" supports "-t" amongst other options.


As I mentioned in the previous postings we are desperately struggling to generate a completely re-usable code from a general hybrid (continuous & multi-rate discrete) system.

The major difficulty in using Autocode is the lack of re-usable interface for the generated tasks. This problem is removed in the hyperbuild code generation which uses a UCB style hook for calling functions for different tasks (even though there are still other
problems such as global percent vars., static local outputs, static i
nputs for procedure call, ...).


We are going through many steps to post-processing of autocoded files (using script utilities such a sed or perl) to convert the format of the code. This is majorly because of the lack of flexibility of autocode TPL in allowing the user to affect some part of code generation governed by atomic internal TPL library functions such as "define_subsystem()".

The major problem in post-processing of the code outside of the TPL is that it become extensively time consuming for large size codes since the utilities used for this purpose are essentially search and replace programs that do not have any idea about the structure of the code. Moreover, in many cases one have to rely on code features such as comments which might not be presereved in future versions of the Autocode.

Any hints on how to by-pass these problems?

It is worth to mention that the Matlab Real-Time workshop provides the "grt_malloc" target that generates a fully re-usable code w
ith dynamic allocation for a system.

Thanks
0 Kudos
Message 3 of 3
(7,053 Views)