Julian Bilcke commited on
Commit
4f5fb48
·
1 Parent(s): 2fc4104

update documentation

Browse files
Files changed (1) hide show
  1. ZEROGPU_MIGRATION.md +17 -0
ZEROGPU_MIGRATION.md CHANGED
@@ -274,6 +274,23 @@ def generate_scene(...):
274
  - Verify HuggingFace access
275
  - Manually download and specify with `--ckpt` flag
276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  ## Future Improvements
278
 
279
  Potential enhancements for ZeroGPU deployment:
 
274
  - Verify HuggingFace access
275
  - Manually download and specify with `--ckpt` flag
276
 
277
+ ### "Error building extension 'gsplat_cuda'" or "glm/gtc/type_ptr.hpp: No such file or directory"
278
+
279
+ **Cause:** Missing GLM library headers required for gsplat CUDA compilation
280
+
281
+ **Solutions:**
282
+ - Ensure `packages.txt` exists with `libglm-dev` and `build-essential`
283
+ - Restart the Space to reinstall dependencies
284
+ - Check Space build logs for system package installation errors
285
+
286
+ ### "Bias is not supported when out_dtype is set to Float32"
287
+
288
+ **Cause:** PyTorch FP8 operations limitation on certain GPU architectures
289
+
290
+ **Solutions:**
291
+ - This is fixed in `quant.py` by applying bias separately when needed
292
+ - Ensure you have the latest version of the code
293
+
294
  ## Future Improvements
295
 
296
  Potential enhancements for ZeroGPU deployment: