Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 284 for Compilation (0.54 sec)

  1. src/unicode/letter.go

    	if r1 == r && !hadMapping {
    		r1 = ToLower(r)
    	}
    	return r1
    }
    
    // caseOrbit is defined in tables.go as []foldPair. Right now all the
    // entries fit in uint16, so use uint16. If that changes, compilation
    // will fail (the constants in the composite literal will not fit in uint16)
    // and the types here can change to uint32.
    type foldPair struct {
    	From uint16
    	To   uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/fuse_tpu_compile_and_execute_ops.mlir

      func.return %3 : tensor<*xi32>
    }
    
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
    // Test models using Outside Compilation
    
    // CHECK-LABEL: func private @test_outside_compilation
    func.func private @test_outside_compilation(%arg0: tensor<*xi32>, %arg1: tensor<*x!tf_type.resource>) -> tensor<*xi32> {
      // CHECK-NOT: tf._TPUCompileMlirOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    - The `api` configuration, available only if you apply the `java-library` plugin, should be used to declare dependencies which are part of the API of a library, that need to be exposed to consumers at compilation time.
    
    In Gradle 7, both the `compile` and `runtime` configurations are removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    +
    Code placed in `buildSrc` is isolated from the other build scripts of your project.
    This helps keep the main build scripts cleaner and more focused on project-specific configurations.
    
    3. *Automatic Compilation and Classpath*:
    +
    The contents of the `buildSrc` directory are automatically compiled and included in the classpath of your main build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    				},
    			},
    		},
    		{
    			name:               "match condition with one compilation error",
    			attr:               aliceAttr,
    			expectedCompileErr: "matchConditions[2].expression: Invalid value: \"('group3' in request.group)\": compilation failed: ERROR: <input>:1:21: undefined field 'group'\n | ('group3' in request.group)\n | ....................^",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_application_plugin.adoc

    `compile__Variant__Swift` (e.g. `compileDebugSwift` and `compileReleaseSwift`)  - link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html[SwiftCompile]::
    Depends on: All tasks that contribute source files to the compilation
    ::
    Compiles Swift source files using the selected compiler.
    
    `link__Variant__` (e.g. `linkDebug` and `linkRelease`) - link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html[LinkExecutable]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

            ): AutoCloseable
    
            fun compilationClassPathOf(
                classLoaderScope: ClassLoaderScope
            ): ClassPath
    
            /**
             * Provides an additional [ClassPath] to be used in the compilation of a top-level [Project] script
             * `buildscript` or `plugins` block.
             *
             * The [ClassPath] is assumed not to influence the cache key of the script by itself as it should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.h

        string device_name_prefix;
    
        // The name of the XLA device (e.g., "XLA_CPU")
        string device_name;
    
        // The number of the device.
        int device_ordinal = -1;
    
        // The name of the compilation device (e.g., "XLA_CPU_JIT");
        string compilation_device_name;
    
        // If 'use_multiple_streams' is true, we create separate streams for
        // compute, host-to-device, and device-to-host communication.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.pb.go

    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    // is compatible with the proto package it is being compiled against.
    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/pgo_inl_test.go

    		t.Fatalf("error copying inline_hot.go: %v", err)
    	}
    
    	dst.Close()
    
    	testPGOIntendedInlining(t, dir, profFile)
    }
    
    // TestPGOSingleIndex tests that the sample index can not be 1 and compilation
    // will not fail. All it should care about is that the sample type is either
    // CPU nanoseconds or samples count, whichever it finds first.
    func TestPGOSingleIndex(t *testing.T) {
    	for _, tc := range []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top