Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 235 for Executable (0.24 sec)

  1. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            "test"        | "executable" | []                                         | null       | "test/executable"
            "test"        | "executable" | ["one", "two"]                             | null       | "test/executable/one/two"
            "mainLibrary" | "executable" | ["enterpriseEdition", "osx_x64", "static"] | null       | "mainLibrary/executable/enterpriseEdition/osx_x64/static"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

                }
            """
    
            when:
            run "mainExecutable"
    
            then:
            def executable = executable("build/exe/main/main")
            executable.exec().out == "Hello!"
        }
    
        @ToBeFixedForConfigurationCache
        def "can build debug binaries for a C++ executable"() {
            given:
            buildFile << """
    apply plugin: "cpp"
    
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def executable = Stub(ConfigurableComponentWithExecutable)
            executable.name >> "windowsDebug"
            executable.names >> Names.of("windowsDebug")
            executable.nativePlatform >> Stub(NativePlatformInternal)
            executable.toolChain >> Stub(NativeToolChainInternal)
            executable.platformToolProvider >> toolProvider
            executable.baseName >> Providers.of("test_app")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                    task.getExecutableFile().set(executable.getExecutableFile());
                    task.lib(executable.getRuntimeLibraries());
                });
    
                executable.getInstallTask().set(install);
                executable.getInstallDirectory().set(install.flatMap(task -> task.getInstallDirectory()));
                executable.getOutputs().from(executable.getInstallDirectory());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            executable.assertHasChangedSince(snapshot)
        }
    
        @ToBeFixedForConfigurationCache
        def "relinks binary but does not recompile when linker option changed"() {
            given:
            run "mainExecutable"
    
            when:
            def executable = executable("build/exe/main/main")
            def snapshot = executable.snapshot()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            then:
            final debugX86 = executable(variants.dir.file("build/exe/main/x86/debug/main"))
            final releaseX86 = executable(variants.dir.file("build/exe/main/x86/release/main"))
            final debugX64 = executable(variants.dir.file("build/exe/main/x64/debug/main"))
            final releaseX64 = executable(variants.dir.file("build/exe/main/x64/release/main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            then:
            executable("build/exe/main/x86/main").arch.name == "x86"
            executable("build/exe/main/x86/main").exec().out == "i386 ${os.familyName}" * 2
            binaryInfo(objectFileFor(file("src/main/cpp/main.cpp"), "build/objs/main/x86/mainCpp")).arch.name == "x86"
    
            executable("build/exe/main/x86_64/main").arch.name == "x86-64"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top