-
Notifications
You must be signed in to change notification settings - Fork 104
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
Pixel observations for dmc #150
base: main
Are you sure you want to change the base?
Conversation
…ecs/envpool into feature/pixel_obs_dmc
Wondering whether there is a road blocker for this? |
Bazel dependency on OpenGL, also unittest |
@@ -3,7 +3,7 @@ build --action_env=BAZEL_LINKOPTS=-static-libgcc | |||
build --action_env=CUDA_DIR=/usr/local/cuda | |||
build --incompatible_strict_action_env --cxxopt=-std=c++17 --host_cxxopt=-std=c++17 --client_env=BAZEL_CXXOPTS=-std=c++17 | |||
build:debug --cxxopt=-DENVPOOL_TEST --compilation_mode=dbg -s | |||
build:test --cxxopt=-DENVPOOL_TEST --copt=-g0 --copt=-O3 --copt=-DNDEBUG --copt=-msse --copt=-msse2 --copt=-mmmx | |||
build:test --cxxopt=-DENVPOOL_TEST --copt=-g0 --copt=-O3 --copt=-DNDEBUG --copt=-msse --copt=-msse2 --copt=-mmmx --copt=-DMESA_EGL_NO_X11_HEADERS --copt=-DEGL_NO_X11 --copt=-DMJ_OSMESA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copied from google-ai-edge/mediapipe#840
mj_deleteData(data_); | ||
mj_deleteModel(model_); | ||
// mjr_freeContext(&context_); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The failed test is definitely caused by destructor.
@@ -126,7 +126,7 @@ def test_make_mujoco_gym(self) -> None: | |||
"Walker2d-v4", | |||
] | |||
) | |||
|
|||
# make test with GL loading error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like the python side also needs to load GL. Now it pops out ERROR: gladLoadGL error
.
#136