Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getOld (0.23 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        // Match Add
        mlir::TFL::AddOp add_op =
            dyn_cast_or_null<TFL::AddOp>(strided_slice_op.getEnd().getDefiningOp());
        mlir::TFL::SubOp sub_op =
            dyn_cast_or_null<TFL::SubOp>(strided_slice_op.getEnd().getDefiningOp());
        if (!(add_op || sub_op)) {
          return failure();
        }
    
        // Check that add rhs is constant.
        DenseElementsAttr added_value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        @Override
        public V getUnchecked(K key) {
          return autoDelegate.getUnchecked(key);
        }
    
        @Override
        public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
          return autoDelegate.getAll(keys);
        }
    
        @Override
        public V apply(K key) {
          return autoDelegate.apply(key);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

        @Override
        public V getUnchecked(K key) {
          return autoDelegate.getUnchecked(key);
        }
    
        @Override
        public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
          return autoDelegate.getAll(keys);
        }
    
        @Override
        public V apply(K key) {
          return autoDelegate.apply(key);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        }
      }
    
      // Slice exactly the first shape dimension:
      //   begin = [0] end = [1], strides = [1]
      auto begin = get_const_int(slice_op.getBegin(), /*expected_rank=*/1);
      auto end = get_const_int(slice_op.getEnd(), /*expected_rank=*/1);
      auto strides = get_const_int(slice_op.getStrides(), /*expected_rank=*/1);
      if (!begin.has_value() || !end.has_value() || !strides.has_value() ||
          *begin != 0 || *end != 1 || *strides != 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    					v = AppendValidation(v, fmt.Errorf("port names in servers must be unique: duplicate name %s", s.Port.Name))
    				}
    				portNames[s.Port.Name] = true
    				if !protocol.Parse(s.Port.Protocol).IsHTTP() && s.GetTls().GetHttpsRedirect() {
    					v = AppendValidation(v, WrapWarning(fmt.Errorf("tls.httpsRedirect should only be used with http servers")))
    				}
    			}
    		}
    
    		return v.Unwrap()
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        if (begin_type.getRank() != 1) return failure();
        if (begin_type.getDimSize(0) > num_input_dims) return failure();
      }
    
      if (auto end_type = op.getEnd().getType().dyn_cast<RankedTensorType>()) {
        if (end_type.getRank() != 1) return failure();
        if (end_type.getDimSize(0) > num_input_dims) return failure();
      }
    
      if (auto strides_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

          device_mgr.get(), Env::Default(), /*config=*/nullptr,
          TF_GRAPH_DEF_VERSION, lib_def.get(), opts,
          /*default_thread_pool=*/nullptr, /*cluster_flr=*/nullptr);
      auto flr = pflr->GetFLR("/job:localhost/replica:0/task:0/cpu:0");
    
      std::unique_ptr<Graph> graph_out;
      s = EncapsulateSubgraphsInFunctions("_encapsulate", *graph,
                                          /*rewrite_subgraph_fn=*/{},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.kotlin.dsl.ClientModuleScope.getClientModule()> does not have raw return type assignable to org.gradle.api.provider.Provider in (DependencyHandlerExtensions.kt:0)
    Method <org.gradle.kotlin.dsl.ConfigurationDeprecatedExtensionsKt.getAll(org.gradle.api.NamedDomainObjectProvider)> does not have raw return type assignable to org.gradle.api.provider.Provider in (ConfigurationDeprecatedExtensions.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top