Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for Executable (0.13 sec)

  1. tensorflow/compiler/jit/xla_launch_util_test.cc

      const XlaCompiler::CompilationResult* result;
      xla::PjRtLoadedExecutable* executable;
      CompileToExecutable(args, &result, &executable);
    
      std::vector<const Tensor*> inputs;
      inputs.push_back(a);
      inputs.push_back(b);
      TF_ASSERT_OK_AND_ASSIGN(auto execute_outputs,
                              RunExecutable(inputs, {}, result, executable));
    
      TF_EXPECT_OK(PopulateCtxOutputsFromPjRtExecutableOutputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

      *serialized_entry.mutable_hlo_module() = hlo_module;
    
      // XLA compiler supports exporting executables as an AOT compilation result
      // to avoid running potentially expensive compilation pipeline twice.
      // Check if XLA compiler can export available executable.
      if (auto serialized_executable =
              compiler_client->SerializeExecutable(executable);
          serialized_executable.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_executable_persistor_test.cc

      MockXlaCompilerClient mock_client;
      TF_ASSERT_OK_AND_ASSIGN(auto executable, BuildSampleExecutable());
      TF_EXPECT_OK(persistor.TryToPersistExecutable(
          /*signature_hash=*/123, "signature_string", DefaultXlaOptions(),
          compilation_result_add_, *executable, &mock_client));
    
      auto key =
          CreateCacheKey(/*signature_hash=*/123, compilation_result_add_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

        }
    
        def "can build debug and release variant of the executable"() {
            given:
            def app = new SwiftAppWithOptionalFeature()
            def debugBinary = executable("build/exe/main/debug/App")
            def releaseBinary = executable("build/exe/main/release/App")
            settingsFile << "rootProject.name = 'app'"
            app.writeToProject(testDirectory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/get_compiler_ir.cc

        case IrExportStage::OPTIMIZED_HLO:
        case IrExportStage::OPTIMIZED_HLO_SERIALIZED: {
          TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::LocalExecutable> executable,
                              BuildExecutable(local_client, result, options));
          xla::Executable* new_executable = executable->executable();
          if (stage == IrExportStage::OPTIMIZED_HLO_SERIALIZED) {
            return new_executable->module().ToProto().SerializeAsString();
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        snapshot_ptrs.emplace(p.first,
                              p.second.has_value() ? &p.second.value() : nullptr);
      }
    
      const xla::HloInputOutputAliasConfig& input_output_alias =
          executable->executable()->module().input_output_alias_config();
      absl::StatusOr<std::vector<xla::ExecutionInput>> execution_inputs =
          launch_context.PopulateInputs(ctx, result, snapshot_ptrs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            def javaCompile = project.tasks.create("compileJava", JavaCompile)
            javaCompile.destinationDirectory.set(new File("tmp"))
            def executable = Jvm.current().javacExecutable.absolutePath
    
            when:
            javaCompile.options.fork = true
            javaCompile.options.forkOptions.executable = executable
            def spec = javaCompile.createSpec()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            File executable = commandLocation(command);
            if (executable.isFile()) {
                return executable;
            }
    
            if (userSupplied) { //then we want to validate strictly
                throw new JavaHomeException(String.format("The supplied javaHome seems to be invalid."
                    + " I cannot find the %s executable. Tried location: %s", command, executable.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/kernels/xla_ops.cc

      if (run_synchronous) {
        execution_output =
            executable->Run(std::move(execution_inputs), run_options);
      } else {
        execution_output =
            executable->RunAsync(std::move(execution_inputs), run_options);
      }
    
      auto elapsed = env->NowMicros() - start_time;
      VLOG(2) << "Elapsed time for Xla Executable Run: " << elapsed << "us";
      return execution_output;
    }
    
    absl::StatusOr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top