Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Compilation (0.21 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      builder.setInsertionPointToEnd(&body.front());
      builder.create<mlir::TF::YieldOp>(loc, /*operands=*/ArrayRef<Value>{});
      return host_side_while;
    }
    
    // Creates a compilation key as placeholder. A placeholder compilation cache key
    // is created because it is a required input to _XlaRecvAtHost and
    // _XlaSendFromHost but the _XlaCompileMlir has not yet been created for device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		lsu.SetUint32(d.arch, headerLengthOffset, uint32(headerend-headerstart))
    	}
    
    	return syms
    }
    
    // writepcranges generates the DW_AT_ranges table for compilation unit
    // "unit", and returns a collection of ranges symbols (one for the
    // compilation unit DIE itself and the remainder from functions in the unit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    Since Gradle 1.0, runtime-scoped dependencies have been included in the Java compilation classpath, which has some drawbacks:
    
     * The compilation classpath is much larger than it needs to be, slowing down compilation.
     * The compilation classpath includes runtime-scoped files that do not impact compilation, resulting in unnecessary re-compilation when those files change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    return %2 : tensor<i32>
    
    ```
    ### `-tf-extract-outside-compilation`
    
    _Extracts device outside compilation computation to a separate tf_device.parallel_execute region._
    
    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: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      }
    
      // Mark clusters for compilation that:
      // * are placed on a device that requires compilation (an XlaDevice),
      // * are explicitly marked for compilation (_XlaCompile=true), or
      // * have more than debug_options_.xla_min_cluster_size elements (applicable
      //   only if compilation is enabled, otherwise there will be no such
      //   candidates).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		},
    		{
    			name: "CEL expression compilation error",
    			in: []api.ClaimValidationRule{
    				{Expression: "foo.bar"},
    			},
    			structuredAuthnFeatureEnabled: true,
    			want: `issuer.claimValidationRules[0].expression: Invalid value: "foo.bar": compilation failed: ERROR: <input>:1:1: undeclared reference to 'foo' (in container '')
     | foo.bar
     | ^`,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    							Message: "size of scoped field should be equal to 10",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				invalidError("compilation failed"),
    			},
    		},
    		{
    			name: "compilation failure",
    			input: schema.Structural{
    				Generic: schema.Generic{
    					Type: "integer",
    				},
    				ValidationExtensions: schema.ValidationExtensions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		cmdline = append(cmdline, long)
    		out, err := runcmd(cmdline...)
    		if wantError {
    			if err == nil {
    				return fmt.Errorf("compilation succeeded unexpectedly\n%s", out)
    			}
    			if err == errTimeout {
    				return fmt.Errorf("compilation timed out")
    			}
    		} else {
    			if err != nil {
    				return err
    			}
    		}
    		if *updateErrors {
    			t.updateErrors(string(out), long)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    All you need to do in most cases is configure the appropriate compilation and runtime dependencies and add any necessary configuration to the `test` task. The following example shows a simple setup that uses JUnit Platform and changes the maximum heap size for the tests' JVM to 1 gigabyte:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // -----
    
    func.func @cyclic_control_dependency_no_replication() {
      "tf.opA"() {_xla_compile_device_type = "TPU", _replication_info = "replicate"} : () -> ()
      // expected-warning-re@+1 {{Op has cyclic dependency with a compilation cluster{{.*}}}}
      "tf.opB"() : () -> ()
      "tf.opC"() {_xla_compile_device_type = "TPU", _replication_info = "replicate"} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top