phuziun

phuziun

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

hrender error: "Unknown command: ndif" Jan. 16, 2008, 9:50 a.m.

Guess I posted too early!

Haha, hopefully this is it. I've gotten it to render with the renderfarm commands, and I finally got it to output to whatever is defined with the “-o” flag. Here's my command (same as your's):

hrender -e -v -R -f 10 10 -o /tmp/hrender_tests/output.\$F4.tga -d mantra1 h9tester.hip

And it renders /tmp/hrender_tests/output.0010.tga perfectly.

The problem was when the opparm was trying to assign the variable to the mantra1 rop. It was trying to assign it to the “picture” parameter, which doesn't exist, and is why we've been getting the Skipping unrecognized parameter “picture” error. The parameter it should be assigning it to is vm_picture.

So here's the fix:

We still need the “-i” before the “-q” obviously, and in hrender on line 276:

opparm $rop picture ( $o_option )

should be:

opparm $rop vm_picture ( $o_option )

hrender error: "Unknown command: ndif" Jan. 16, 2008, 9:09 a.m.

Well, we've been trying for a while to get that to work properly. It does in fact get rid of our error and allow us to render finally. However, it's still not usable on our render farm because the “-o” flag is unresponsive to our paths, or any path, for whatever reason.

The following command, should render to /tmp/test/ouput.0010.tga, instead however it's outputting to whatever is specified in the .hip file (in this case it's the same directory the hip file is in). So it's outputting to /home/admin/wherever/0010.tif

hrender -e -v -R -f 10 10 -o /tmp/test/output.\$F4.tga -d mantra1 h9tester.hip

Just to double check, I checked the latest daily builds hrender script and while the verbosity is prettier, it does exactly the same thing. We're still running 9.0.782, and I checked 9.1.123 for changes.

Here is my full input/output:

hrender -e -v -R -f 10 10 -o /home/dahale20/SFDM-HOME/test/output.\$F4.tga -d mantra1 dahale20/test9.hip

Skipping unrecognized parameter “picture”

dahale20/test9.hip (/out/mantra1)…
Rendering
mantra1 frame 10
mantra Version 9.1.123 (Compiled on 01/15/08)
Generating Image: /home/dahale20/SFDM-HOME/dahale20/0010.tif (640x480)
Plane: Cf+Af (16-bit float)
Render Time: 0.65u 0.08s 0.64r
Memory: 5.49 MB of 6.40 MB arena size. VM Size: 9.50 MB

I also checked on the unrecognized parameter “picture” (which we've been getting from day one), and that's being generated from one of the if-statements that has to do with the “-o” flag. I have a pretty strong feeling that has to do with why it's not accepting our paths.

hrender error: "Unknown command: ndif" Jan. 7, 2008, 3:27 p.m.

This is Dave, from the systems office at Montgomery Hall. I'm just assuming this is the problem report for the issue that we are having.

I edited the hrender script to show me exactly what was going on, and where the problem was originating from. It's definitely not anything with the hrender script itself, the error is actually being returned from hbatch-bin. Which makes it rather impossible to troubleshoot.

However, I was able to get it to render from the command line without specifying any of the frame information “hrender -d mantra1 h9tester.hip”. For whatever reason, as soon as the flags for the frame ranges are specified, it gives the “ndif” error from hbatch-bin.

Not sure if this is any new information or if it's of any help, just trying to assist in specifying the problem.