Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,170 for const1 (0.18 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/nchw_convolution_to_nhwc.cc

      // permutation. The rank of `type` and the size of `permutation` must be
      // equal.
      TensorType GetTransposedTensorType(
          const TensorType type, const ArrayRef<int64_t> permutation) const {
        const SmallVector<int64_t> after_shape =
            Permute<int64_t>(type.getShape(), permutation);
        return type.cloneWith(after_shape, type.getElementType());
      }
    };
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        if (&ptr != this) {
          depart();
          copy(&ptr);
        }
        return *this;
      }
    
      // Smart pointer members.
      void reset(T* ptr = NULL) {
        depart();
        capture(ptr);
      }
      T* get() const { return value_; }
      T* operator->() const { return value_; }
      T& operator*() const { return *value_; }
    
      bool operator==(T* p) const { return value_ == p; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      // CHECK-NEXT: [[loop_counter:%.*]] = "tf.Const"
      %outputs_16 =  "tf.Const"() {device = "", value = dense<0> : tensor<i32>} : () -> tensor<i32>
      // CHECK-NEXT: [[max_iterations:%.*]] = "tf.Const"
      %outputs_18 =  "tf.Const"() {device = "", value = dense<16> : tensor<i32>} : () -> tensor<i32>
      %outputs_20 =  "tf.Const"() {device = "", value = dense<1> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.cc

      context_.code.AddLineWithoutIndent("");
      return *this;
    }
    
    Renderer& Renderer::CodeLine(const string& text) {
      context_.code.AddLineWithoutIndent(text);
      return *this;
    }
    
    Renderer& Renderer::CodeLines(const string& text) {
      StringPiece trimmed_text(text);
      str_util::RemoveWhitespaceContext(&trimmed_text);
      for (const string& line : str_util::Split(trimmed_text, '\n')) {
        context_.code.AddLineWithoutIndent(line);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/constants/constants.go

    		``)
    )
    
    const (
    	DefaultProxyUID    = "1337"
    	DefaultProxyUIDInt = int64(1337)
    )
    
    // Constants used in environment variables
    const (
    	EnvoyUser = "ENVOY_USER"
    )
    
    // Constants for syscall
    const (
    	// sys/socket.h
    	SoOriginalDst = 80
    )
    
    const (
    	DefaultIptablesProbePortUint = 15002
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    $for m, [[f$(m)_(f$m)]] {}
    
      tuple(const tuple& t) : $for m, [[f$(m)_(t.f$(m)_)]] {}
    
      template <GTEST_$(k)_TYPENAMES_(U)>
      tuple(const GTEST_$(k)_TUPLE_(U)& t) : $for m, [[f$(m)_(t.f$(m)_)]] {}
    
    $if k == 2 [[
      template <typename U0, typename U1>
      tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
    
    ]]
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_compilation_profiler.h

      absl::StatusOr<ClusterCompileStats> GetCompileStats(
          const NameAttrList& function) const;
    
      // Determines whether the cluster should be compiled. Creates and inserts an
      // entry into stats (also calls `RegisterExecution`) for `function` if it
      // doesn't already exist.
      virtual bool ShouldCompileCluster(const NameAttrList& function,
                                        DeviceCompileMode compile_mode,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

      return Status();
    }
    
    Status InitializeAllResources(const RevivedObjects& revived) {
      for (const auto& node_and_resource : revived.restored_resources) {
        const RestoredResource& resource = node_and_resource.second;
        TF_RETURN_IF_ERROR(resource.Initialize());
      }
      return Status();
    }
    
    }  // namespace
    
    Status TFSavedModelAPI::GetFunction(const std::string& function_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. tensorflow/cc/training/queue_runner.cc

    }
    
    Status QueueRunner::ExportCostGraph(CostGraphDef* cost_graph) const {
      if (!cg_mu_) {
        return Status(absl::StatusCode::kFailedPrecondition,
                      "This QueueRunner doesn't collect a cost graph.");
      }
      mutex_lock l(*cg_mu_);
      cost_graph->MergeFrom(*cost_graph_);
      return absl::OkStatus();
    }
    
    void QueueRunner::SetRunArgumentsAndCostGraph(const RunOptions& run_options) {
      cg_mu_.reset(new mutex());
      {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

                   PatternRewriter& rewriter) const override {
        auto transpose_op = cast<TransposeOp>(op.getOperand(0).getDefiningOp());
    
        const auto result_type = mlir::cast<TensorType>(op.getResult(0).getType());
        const SmallVector<int64_t> new_result_shape =
            Permute<int64_t>(result_type.getShape(), kNchwToNhwcPermutation);
    
        const TensorType new_result_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top