Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GetPjRtExecuteOptions (0.34 sec)

  1. tensorflow/compiler/jit/xla_launch_util.cc

                executable_args, device,
                GetPjRtExecuteOptions(device_type,
                                      std::move(non_donatable_input_indices)),
                future));
      } else {
        TF_ASSIGN_OR_RETURN(
            execute_outputs,
            executable->ExecutePortable(
                executable_args, device,
                GetPjRtExecuteOptions(device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_launch_util_test.cc

      Tensor* expected = CreateHostTensor<int32>(TensorShape({1, 3}), {3, 4, 5});
      test::ExpectTensorEqual<int32>(*expected, *host_tensor);
    }
    
    TEST(XlaLaunchUtilTest, GetPjRtExecuteOptions) {
      xla::ExecuteOptions options =
          GetPjRtExecuteOptions(DeviceType(DEVICE_GPU), {});
      EXPECT_FALSE(options.arguments_are_tupled);
      EXPECT_TRUE(options.untuple_result);
      EXPECT_FALSE(options.strict_shape_checking);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.h

        std::vector<std::unique_ptr<xla::PjRtBuffer>>& executable_outputs,
        OpKernelContext* ctx);
    
    // Returns the options used for executing a PjRtLoadedExecutable.
    xla::ExecuteOptions GetPjRtExecuteOptions(
        const DeviceType& device_type,
        absl::flat_hash_set<int> non_donatable_input_indices);
    
    // Returns the device ordinal from the parsed name of the device.
    int GetDeviceOrdinal(const DeviceBase* device);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top