Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetRegionOutputs (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

                                               &region_output_index);
        if (failed(status)) return mlir::failure();
        const auto output_from_logical_device =
            new_parallel_execute.GetRegionOutputs(cluster_idx +
                                                  core_id)[region_output_index];
        outputs_to_merge->emplace_back(output_from_logical_device);
      }
    
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

      state.addTypes(output_types);
    }
    
    Block& ParallelExecuteOp::GetRegionBlockWithIndex(unsigned index) {
      return getOperation()->getRegion(index).front();
    }
    
    Operation::result_range ParallelExecuteOp::GetRegionOutputs(
        unsigned region_index) {
      int num_region_results =
          GetRegionBlockWithIndex(region_index).getTerminator()->getNumOperands();
    
      int return_value_offset = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top