Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for genAllocator (0.17 sec)

  1. src/cmd/compile/internal/ssa/_gen/main.go

    	// that stops being the case, we can cap this func to a fixed number of
    	// architectures being generated at once.
    
    	tasks := []func(){
    		genOp,
    		genAllocators,
    	}
    	for _, a := range archs {
    		a := a // the funcs are ran concurrently at a later time
    		tasks = append(tasks, func() {
    			genRules(a)
    			genSplitLoadRules(a)
    			genLateLowerRules(a)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_launch_util.cc

        const std::map<int, const Tensor*>& resource_vars) {
      se::Stream* stream =
          ctx->op_device_context() ? ctx->op_device_context()->stream() : nullptr;
      Allocator* allocator = ctx->device()->GetAllocator({});
    
      // Computation output should always be a tuple.
      VLOG(2) << "Result tuple shape: " << output.on_host_shape().DebugString();
      VLOG(2) << "Result tuple shape (on device): "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  3. tensorflow/c/kernels_test.cc

    }
    #undef EXPECT_TF_SIZE
    
    class DummyDevice : public DeviceBase {
     public:
      explicit DummyDevice(Env* env) : DeviceBase(env) {}
      Allocator* GetAllocator(AllocatorAttributes /*attr*/) override {
        return cpu_allocator();
      }
    };
    
    TEST(TestKernel, TestInputAndOutputCount) {
      const char* node_name = "InputOutputCounterKernel";
      const char* op_name = "BarOp";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
Back to top