Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,957 for impl_4 (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/stablehlo-custom-call-legalize-composite.mlir

        %1:2 = stablehlo.custom_call @stablehlo.composite(%arg0, %arg1) {called_computations = [@foo.impl], composite.backend_config = {attributes = {bar = 500 : i64}, name = "odml.foo"}} : (tensor<1xf32>, tensor<2xf32>) -> (tensor<2xf32>, tensor<1xf32>)
        return
      }
      // CHECK-LABEL: func private @foo.impl
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 19:49:44 UTC 2024
    - 1009 bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/use/resolve/internal/CorePluginResolverTest.groovy

            then:
            1 * pluginManager.apply(impl)
            1 * pluginRegistry.lookup(DefaultPluginId.of("foo")) >> impl
        }
    
        def "can resolve qualified"() {
            when:
            def request = request("org.gradle.foo")
            def result = resolver.resolve(request)
            result.getFound(request).applyTo(pluginManager)
    
            then:
            1 * pluginManager.apply(impl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiHonorsProjectCustomizationsCrossVersionSpec.groovy

        apply plugin: 'java'
        apply plugin: 'eclipse'
    }
    
    project(':api') {
        eclipse.project.name = 'gradle-api'
    }
    
    project(':impl') {
        eclipse.project.name = 'gradle-impl'
    }
    '''
            createDirs("api", "impl")
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_traits.h

    //
    // TODO(fengliuai): supports a configurable accumulator bit width.
    template <int Bias, int... Operands>
    class AccumulatorUniformScale {
     public:
      template <typename ConcreteType>
      class Impl
          : public QuantizationSpecTraitBase<
                ConcreteType, AccumulatorUniformScale<Bias, Operands...>::Impl> {
       public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

    
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        apply plugin: 'idea'
    
        dependencies {
            ${implementationConfiguration} project(':api')
        }
    }
    """
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleSourceDetectorTest.groovy

            addClass(cl, impl)
    
            expect:
            detector.cache.size() == 1
    
            when:
            cl.clearCache()
    
            then:
            ConcurrentTestUtil.poll(10) {
                System.gc()
                detector.cache.cleanUp()
                detector.cache.size() == 0
            }
    
            where:
            impl << [
                    "class SomeThing {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintChanges.java

    import org.gradle.internal.fingerprint.FingerprintingStrategy;
    import org.gradle.internal.fingerprint.impl.AbsolutePathFingerprintingStrategy;
    import org.gradle.internal.fingerprint.impl.IgnoredPathFingerprintingStrategy;
    import org.gradle.internal.fingerprint.impl.NameOnlyFingerprintingStrategy;
    import org.gradle.internal.fingerprint.impl.RelativePathFingerprintingStrategy;
    
    import java.util.SortedMap;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/GradleEnterprisePluginServices.java

     * limitations under the License.
     */
    
    package org.gradle.internal.enterprise.impl;
    
    import org.gradle.internal.enterprise.impl.legacy.DefaultBuildScanBuildStartedTime;
    import org.gradle.internal.enterprise.impl.legacy.DefaultBuildScanClock;
    import org.gradle.internal.enterprise.impl.legacy.DefaultBuildScanScopeIds;
    import org.gradle.internal.enterprise.impl.legacy.LegacyGradleEnterprisePluginCheckInService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.gradle.internal.snapshot.impl.DirectorySnapshotterStatistics;
    import org.gradle.internal.vfs.FileSystemAccess;
    import org.gradle.internal.vfs.VirtualFileSystem;
    import org.gradle.internal.vfs.impl.DefaultFileSystemAccess;
    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.DarwinFileWatcherRegistryFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/tests/perf_test.cc

    int64_t AddRaw(int64_t a, int64_t b) { return a + b; }
    
    }  // namespace
    
    // Add numbers in a loop by calling a callable.
    void CallFunctions(::testing::benchmark::State& state) {
      Integer sum(0);
      Callable callable((impl::TaggedValue(impl::Func(AddTagged))));
      *callable.Call<Integer>(sum, Integer(30));
      size_t i = 0;
      for (auto dummy : state) {
        sum = *callable.Call<Integer>(sum, Integer(i));
        i++;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top