Skip to content
#

gpu-computing

Here are 477 public repositories matching this topic...

nickhuangxinyu
nickhuangxinyu commented Sep 25, 2021

usually, after trained model. i save model in cpp format with code:

cat_model.save_model('a', format="cpp")
cat_model.save_model('b', format="cpp")

but when my cpp need to use multi models.

in my main.cpp

#include "a.hpp"
#include "b.hpp"

int main() {
  // do something
  double a_pv = ApplyCatboostModel({1.2, 2.3});  // i want to a.hpp's model here
  double b_pv 
tmcdonell
tmcdonell commented Jan 15, 2018

The standard accelerate test suite, used by all the backends, can be quite slow. Several of the tests are significantly slower than the others, for example segmented folds and scans, which I believe is because the reference implementations are very inefficient. Writing some more efficient reference implementations (e.g. using Data.Vector.Unboxed) should help speed things up.

hipSYCL
illuhad
illuhad commented Sep 6, 2021

Bug summary
There is evidence that sub_group::get_group_id() does not return the same value as threadIdx.x / warpSize (assuming 1D kernel), as expected on CUDA. We should check the implementation of this function. Our implementation of this function performs bit manipulation magic, presumably the optimization went to far...

To Reproduce
Compare sub_group{}.get_group_id() or `sub

BlendLuxCore
Theverat
Theverat commented Mar 23, 2020
  • M: Mute (muting is not a node-wrangler feature, but I include it here because it's also node editor quality of life)
  • Ctrl+Shift+LMB: View texture, material or volume node (create emission viewer if necessary)
  • Ctrl+T: Create image node+attached mapping node
  • Ctrl+Shift+T: Open file picker, user selects a bunch of textures, create disney material with textures attached to t

Improve this page

Add a description, image, and links to the gpu-computing topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the gpu-computing topic, visit your repo's landing page and select "manage topics."

Learn more