Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Added Houdini 20.5 conda recipe #76

Open
wants to merge 7 commits into
base: mainline
Choose a base branch
from

Conversation

dzavada
Copy link

@dzavada dzavada commented Jan 18, 2025

Fixes: #69

What was the problem/requirement? (What/Why)

Wanted to add conda package for Houdini-20.5

What was the solution? (How)

N/A

What is the impact of this change?

N/A

How was this change tested?

Ran the build process ./submit-package-job Houdini-20.5
And submitted jobs from Houdini to the new build ran with no errors

  • If this is a sample, then please describe the steps that you took to test it.
  • Include output from your testing to demonstrate it working as expected if possible.

Was this change documented?

This requires no change to the conda build package documentation.

  • For instance, if applicable, has the sample's description been updated?

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.

@dzavada dzavada requested a review from a team as a code owner January 18, 2025 23:53
@mwiebe mwiebe self-requested a review January 23, 2025 02:02
@lucaseck lucaseck self-requested a review January 23, 2025 15:25
Copy link
Contributor

@mwiebe mwiebe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great, thanks for submitting the PR! I've provided a bunch of comments aimed towards making sure it will be consistent with all the other samples. I'll also do a few builds with it, including as rattler-build, and let you know how that goes.

condaPlatforms:
- platform: linux-64
defaultSubmit: true
sourceArchiveFilename: houdini-20.5.332-linux_x86_64_gcc11.2.tar.gz
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I got a failure running ./submit-package-job Houdini-20.5/ without the sourceDownloadInstructions note.

export "HOUDINI_HOUDINI_PATH=\$HOUDINI_LOCATION/houdini"
export "HOUDINI_INCLUDE_PATH=\$HOUDINI_LOCATION/toolkit/include"
export "HOUDINI_LIBRARY_PATH=\$HOUDINI_LOCATION/bin"
export "HB=\$HOUDINI_LOCATION/dsolib"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the purpose of this environment variable? Since it's so short and not prefixed by HOUDINI_ like the others, a comment describing how it's used would be helpful.

export "HOUDINI_INCLUDE_PATH=\$HOUDINI_LOCATION/toolkit/include"
export "HOUDINI_LIBRARY_PATH=\$HOUDINI_LOCATION/bin"
export "HB=\$HOUDINI_LOCATION/dsolib"
export "LD_LIBRARY_PATH=\$HOUDINI_LOCATION/dsolib"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For this conda package to interact well in virtual environments that include many other packages, it shouldn't touch the LD_LIBRARY_PATH variable. See https://docs.conda.io/projects/conda-build/en/latest/resources/use-shared-libraries.html for more information about that.

export "HOUDINI_LIBRARY_PATH=\$HOUDINI_LOCATION/bin"
export "HB=\$HOUDINI_LOCATION/dsolib"
export "LD_LIBRARY_PATH=\$HOUDINI_LOCATION/dsolib"
export "SESI_LMHOST=localhost"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since licensing is a configuration that can change from environment to environment, I think it's better to exclude this variable from the recipe. That way a package built from the recipe won't be specific to one farm.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found that using rattler-build instead of conda-build made a big difference in performance. Converting a recipe is not hard, I'll give that a try and let you know the performance difference.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I found with conda-build, it took 42 minutes, and with rattler-build, it took 9 minutes. That suggests it's better to make it a rattler-build recipe so anyone trying it gets more reasonable build times.

I'll push my adjustments to a branch for you once I've finished doing some tweaks.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't know what rattler-build is Can you explain and show how to modify the code. Unfortunately this package I built like four or five months ago had some of the guys at AWS help me with it so sounds like there's some new better ways.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, it's described in a buildTool option that was added since then. See https://github.com/aws-deadline/deadline-cloud-samples/tree/mainline/conda_recipes#the-buildtool-option. I found that rattler-build was consistently faster than conda-build, and for large packages like Maya and now Houdini the difference is significant. See the documentation at https://rattler.build/latest/.

I haven't tested beyond doing the package build, but here's a commit in my branch that converts to rattler-build: mwiebe@af0f503

If you don't have a Deadline Cloud farm for building packages, vs building locally, you might look at https://github.com/aws-deadline/deadline-cloud-samples/tree/mainline/cloudformation/farm_templates/starter_farm that we added recently as well.

{% set version_minor = "332" %}
{% set version = version_partial + "." + version_minor %}

{% set bucket_name = "houdinihive-bucket-deadlinecloud" %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is using a different convention for how the archive is provided than all the other samples. For the samples to work out of the box, they need this consistency.

dnf download --resolve -y alsa-lib fontconfig libXScrnSaver libX* libGL libXcomposite libxkbcommon

# Install python deadline package
pip install deadline-cloud-for-houdini
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In all the other samples, we've been packaging this separately. See https://github.com/aws-deadline/deadline-cloud-samples/tree/mainline/conda_recipes/maya-openjd for an example recipe doing this.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dnf or pip

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just the pip install command.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes if I don't do the PIP install then it doesn't seem to work.
I have talked to somebody else several months back in AWS and they weren't sure either but when I installed it it would work.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense, there's probably some settings to tweak for it to work as expected. If you look in the submitter code

https://github.com/aws-deadline/deadline-cloud-for-houdini/blob/mainline/src/deadline/houdini_submitter/python/deadline_cloud_for_houdini/queue_parameters.py#L150

you can see that it's requesting two packages, houdini and houdini-openjd. The second package is from deadline-cloud-for-houdini just like https://github.com/aws-deadline/deadline-cloud-samples/tree/mainline/conda_recipes/maya-openjd is from deadline-cloud-for-maya.

@mwiebe mwiebe changed the title Added Houdini 20.5 conda recipe feat: Added Houdini 20.5 conda recipe Jan 23, 2025
@erico-aws erico-aws added the waiting-on-maintainers Waiting on the maintainers to review. label Feb 19, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
waiting-on-maintainers Waiting on the maintainers to review.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feature request: Add a Houdini 20.5 sample conda package recipe
3 participants