Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 284 for Compilation (0.15 sec)

  1. guava-tests/test/com/google/common/base/OptionalTest.java

       * mentioned in the method Javadoc does in fact compile.
       */
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeError1() {
        Optional<Integer> optionalInt = getSomeOptionalInt();
        // Number value = optionalInt.or(0.5); // error
      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeError2() {
        FluentIterable<? extends Number> numbers = getSomeNumbers();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

        }
    
        /**
         * Returns the Scala compilation options.
         */
        @Nested
        public BaseScalaCompileOptions getScalaCompileOptions() {
            return scalaCompileOptions;
        }
    
        /**
         * Returns the Java compilation options.
         */
        @Nested
        @Override
        public CompileOptions getOptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util.h

        bool allow_string_consts = true;
    
        // Whether to allow the compilation of CollectiveReduceV2Op.
        bool allow_collective_reduce_v2 = true;
    
        // Whether to allow the compilation of WhereOp.
        bool allow_where_op = true;
    
        // Whether to allow the compilation of UniqueOp. Compilation of the UniqueOp
        // generates output with bounded dynamic shape that may cause failures with
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

    };
    
    TEST_F(ExtractOutsideCompilationForFunctionTest, Basic) {
      // Build the XLA computation func.
      // "const0"
      // "identity0" = "const0" (outside compilation cluster "0")
      // "identity1" = "identity0" (outside compilation cluster "1")
      // "identity2" = "identity1"
      FunctionDefLibrary fdl;
      {
        tensorflow::Scope s = tensorflow::Scope::NewRootScope();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry.go

    	cu           *Entry // current compilation unit
    }
    
    // Reader returns a new Reader for [Data].
    // The reader is positioned at byte offset 0 in the DWARF “info” section.
    func (d *Data) Reader() *Reader {
    	r := &Reader{d: d}
    	r.Seek(0)
    	return r
    }
    
    // AddressSize returns the size in bytes of addresses in the current compilation
    // unit.
    func (r *Reader) AddressSize() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/BUILD

    # defined in.
    
    # A simple test of tf_library from a text protobuf, to enable benchmark_test.
    # This test uses an incompleted graph with a node that is not defined. The
    # compilation works because the undefined node is a feed node.
    tf_library(
        name = "test_graph_tfadd",
        testonly = 1,
        config = "test_graph_tfadd.config.pbtxt",
        cpp_class = "AddComp",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

      let summary = "Extracts device outside compilation computation to a separate tf_device.parallel_execute region.";
    
      let description = [{
        This pass extracts a CPU computation cluster with `_xla_outside_compilation`
        annotation, which denotes ops that should be run on CPU/host, from a device cluster.
        Each outside compilation cluster is moved to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/KotlinBuildScriptModelCrossVersionSpec.groovy

            assertCanFetchClassPathOfScriptPlugin("")
        }
    
        def "can fetch classpath of script plugin with compilation errors"() {
    
            expect:
            assertCanFetchClassPathOfScriptPlugin("val p = ")
        }
    
        def "can fetch classpath of script plugin with buildscript block compilation errors"() {
    
            expect:
            assertCanFetchClassPathOfScriptPlugin("buildscript { val p = }")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 08:52:51 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

               "variable formatting.";
      let constructor = "TFTPU::CreateTPUVariableRuntimeReformattingPass()";
      let description = [{
        A pass that takes advantage of a loop to add ops that allow the execution to
        avoid repeatedly formatting variables back and forth. The desired formatting
        is determined by TPU program compilation, so this pass does not include how
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler_test.cc

      NameAttrList fn;
      fn.set_name("foo");
    
      // Using a mock here to determine when the async compilation finishes. This is
      // to avoid using absl::SleepFor().
      // `RegisterCompilation` is the last call that happens just before the async
      // compilation completes. We use the completion of this call to determine when
      // the compilation finshes to verify expected behavior.
      Notification done;
      EXPECT_CALL(*mock_profiler_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top