Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,498 for impl_5 (0.21 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/composite-lowering.mlir

      return %0 : tensor<1x1x1x2xf32>
    }
    func.func private @XlaCallModule_aten.avg_pool2d.default.impl_5(%arg0: tensor<1x1x1x7xf32>) -> tensor<1x1x1x2xf32>
    
    // CHECK-LABEL: avg_pool2d_6
    // CHECK: %cst = arith.constant dense<[0, 2, 3, 1]> : tensor<4xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            source impl: ["class SomeImpl {}", "class ImplB extends B {}", "class ImplB2 extends ImplB {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: ["class B { /* remove extends */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.recompiledClasses("ImplB", "ImplB2")
    
            when:
            impl.snapshot()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/impl.go

    package runtime
    
    import (
    	"context"
    	"time"
    
    	criapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	criclient "k8s.io/cri-client/pkg"
    )
    
    type defaultImpl struct{}
    
    type impl interface {
    	NewRemoteRuntimeService(endpoint string, connectionTimeout time.Duration) (criapi.RuntimeService, error)
    	NewRemoteImageService(endpoint string, connectionTimeout time.Duration) (criapi.ImageManagerService, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/resources/META-INF/analysis-api/analysis-api-impl-base.xml

            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.java.source.JavaElementSourceWithSmartPointerFactory"
        />
    
        <projectService
            serviceInterface="org.jetbrains.kotlin.psi.KotlinReferenceProvidersService"
            serviceImplementation="org.jetbrains.kotlin.analysis.api.impl.base.references.HLApiReferenceProviderService"
        />
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/scope.cc

    namespace tensorflow {
    
    Scope::Scope(Impl* impl) : impl_(impl) {}
    
    Scope::Scope(const Scope& other) : impl_(new Impl(*other.impl())) {}
    
    Scope::~Scope() {}
    
    Scope& Scope::operator=(const Scope& other) {
      // We can't copy Impls because of the const members, use copy ctor instead
      impl_.reset(new Impl(*other.impl_));
      return *this;
    }
    
    namespace {
    const char kScopeSeparator[] = "/";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        }
    
        EnsureIsCopied();
        impl_->insert(resource_op);
      }
    
      Impl::const_iterator begin() const {
        return impl_ ? impl_->begin() : GetEmptyImpl()->begin();
      }
    
      Impl::const_iterator end() const {
        return impl_ ? impl_->end() : GetEmptyImpl()->end();
      }
    
      bool Contains(const ResourceOp& resource_op) const {
        return impl_ != nullptr && impl_->count(resource_op);
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      explicit ParamGenerator(ParamGeneratorInterface<T>* impl) : impl_(impl) {}
      ParamGenerator(const ParamGenerator& other) : impl_(other.impl_) {}
    
      ParamGenerator& operator=(const ParamGenerator& other) {
        impl_ = other.impl_;
        return *this;
      }
    
      iterator begin() const { return iterator(impl_->Begin()); }
      iterator end() const { return iterator(impl_->End()); }
    
     private:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize-stablehlo-tfl-composite.mlir

        %1:2 = stablehlo.composite "odml.update_kv_cache" %0#0, %0#1, %arg2, %arg3, %arg4 {composite_attributes = {kv_cache_max = 500 : i64}, decomposition = @odml.update_kv_cache.impl_0} : (tensor<1x500x4x4xf32>, tensor<1x500x4x4xf32>, tensor<100xi64>, tensor<1x100x4x4xf32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

            def connection = Mock(ConsumerConnection)
    
            when:
            def impl = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
            def impl2 = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
    
            then:
            impl == connection
            impl2 == connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/scope.h

      // START_SKIP_DOXYGEN
      class Impl;
      Impl* impl() { return impl_.get(); }
      const Impl* impl() const { return impl_.get(); }
      // END_SKIP_DOXYGEN
    
     private:
      Scope WithOpNameImpl(const string& op_name) const;
    
      friend class InternalScope;
      std::unique_ptr<Impl> impl_;
      explicit Scope(Impl*);
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top