Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 284 for Compilation (0.32 sec)

  1. tensorflow/compiler/aot/compile.cc

      absl::StatusOr<std::vector<std::unique_ptr<xla::AotCompilationResult>>>
          aot_or = client->CompileAheadOfTime({instance}, aot_opts);
      if (!aot_or.ok()) {
        return errors::Unknown("XLA compilation failed: ",
                               aot_or.status().message());
      }
      compile_result->aot =
          xla::unique_ptr_down_cast<xla::cpu::CpuAotCompilationResult>(
              std::move(aot_or.value().back()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIncludedBuildIntegrationTest.groovy

            """
            when:
            fails("help")
            then:
            failure.assertHasDescription("Execution failed for task ':included:compileJava'.")
            failure.assertHasCause("Compilation failed; see the compiler error output for details.")
        }
    
        def "buildSrc can apply plugins contributed by a build included by the root build and use them in plugins for the root build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

        }
    
        /**
         * Configures {@code compileTask} to compile against {@code sourceSet}'s compile classpath
         * in addition to the outputs of the java compilation, as specified by {@link SourceSet#getJava()}
         *
         * @param compileTask The task to configure.
         * @param sourceSet The source set whose output contains the java classes to compile against.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

                insideVariantDescriptionBlock = isInsideVariantDescriptionBlock(insideVariantDescriptionBlock, line);
    
                // https://youtrack.jetbrains.com/issue/KT-29546
                if (line.contains("Compilation with Kotlin compile daemon was not successful")) {
                    insideKotlinCompilerFlakyStacktrace = true;
                    i++;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/dwarfgen/dwinl.go

    		if c.Root {
    			checkInlCall(fnsym.Name, inlcalls, fnsym.Size, k, -1)
    		}
    	}
    
    	return inlcalls
    }
    
    // Secondary hook for DWARF inlined subroutine generation. This is called
    // late in the compilation when it is determined that we need an
    // abstract function DIE for an inlined routine imported from a
    // previously compiled package.
    func AbstractFunc(fn *obj.LSym) {
    	ifn := base.Ctxt.DwFixups.GetPrecursorFunc(fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

          // a control flow operator.
          return errors::Internal(
              "Found cycle in graph without control flow operator during XLA "
              "compilation: ",
              DescribeCycle(cycles, *graph, edge->src()->id(), edge->dst()->id()));
        }
      }
    
      return true;
    }
    
    std::optional<absl::string_view> GetXlaClusterForNode(const Node& node) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    As previously described in this chapter, this is modeled by `A` depending on a _variant of_ `B`, where the variant is selected based on the needs of `A`.
    For compilation, we need the API dependencies of `B`, provided by the `apiElements` variant.
    For runtime, we need the runtime dependencies of `B`, provided by the `runtimeElements` variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

    - plugin dependency metadata missing
    - plugin dependency metadata retrieval problem
    - plugin configuration problem
    - plugin execution failure due to something that is know to possibly go wrong (like compilation failure)
    - plugin execution error due to something that is not expected to go wrong (the compiler executable missing)
    - asking to use a plugin for which you do not have a version defined - tools to easily select versions
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. pkg/apis/resource/structured/namedresources/validation/validation_test.go

    		"empty": {
    			selector:     "",
    			wantFailures: field.ErrorList{field.Required(nil, "")},
    		},
    		"undefined": {
    			selector:     "nosuchvar",
    			wantFailures: field.ErrorList{field.Invalid(nil, "nosuchvar", "compilation failed: ERROR: <input>:1:1: undeclared reference to 'nosuchvar' (in container '')\n | nosuchvar\n | ^")},
    		},
    		"wrong-type": {
    			selector:     "1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_platform_info_test.cc

      core::ScopedUnref xla_device_compiler_ref(xla_device_compiler);
    
      EXPECT_EQ(xla_device_compiler->device_type(), compilation_device_type);
      // Check to make sure compilation cache path is empty.
      EXPECT_TRUE(
          xla_device_compiler->persistor()->persistent_cache_directory().empty());
    }
    
    // TODO(b/255826209): Look into using an actual TPU device for the unit test,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 14 15:17:12 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top