Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for extended (0.11 sec)

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

        if (!fft_len_type) return failure();
    
        auto output_type =
            mlir::dyn_cast_or_null<RankedTensorType>(rfft_op.getResult().getType());
        if (!output_type) return failure();
    
        // Expanded inputs.
        // Insert at -2 location.
        auto one_ele_type =
            tensorflow::GetTypeFromTFTensorShape({1}, rewriter.getIntegerType(32));
        auto minus_two = CreateConstOpWithSingleValue(&rewriter, rfft_op.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       *     previously called
       * @since 11.0
       */
      @GwtIncompatible // To be supported
      @CanIgnoreReturnValue // TODO(b/27479612): consider removing this
      public <K1 extends K, V1 extends V> CacheBuilder<K1, V1> weigher(
          Weigher<? super K1, ? super V1> weigher) {
        checkState(this.weigher == null);
        if (strictParsing) {
          checkState(
              this.maximumSize == UNSET_INT,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(1) {
            transform: rotate(45deg);
            transform-origin: 10% 10%;
            width: 26px;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(2) {
            opacity: 0;
        }
        button#navbar-toggle-button.expanded span.nav-bar-toggle-icon:nth-child(3) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. tensorflow/BUILD

            ":fuchsia",
            ":emscripten",
            ":ios",
        ],
        visibility = ["//visibility:public"],
    )
    
    # This flag disables all google production dependencies, intended for
    # applications run with non-prod environment.
    # TODO(timshen): Currently this option only disables some dependencies.
    # See b/122528503.
    # copybara:uncomment_begin(google-only)
    # bool_flag(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/net/http/request.go

    }
    
    // Return value if nonempty, def otherwise.
    func valueOrDefault(value, def string) string {
    	if value != "" {
    		return value
    	}
    	return def
    }
    
    // NOTE: This is not intended to reflect the actual Go version being used.
    // It was changed at the time of Go 1.1 release because the former User-Agent
    // had ended up blocked by some intrusion detection systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            ArrayRef<Value>({slice1, expanded_item, slice2}));
        return success();
      }
    
      // This function rewrites the original op into a XLA DynamicUpdateSlice op.
      // |item| is expanded to have the same dimension as input_handle and
      // |index| is expanded to [index, 0, 0, ...] as the indices to input_handle.
      // On a high level, it's doing something like:
      // def : Pat<(TensorListSetItem($input_handle, $index, $item)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. src/go/build/build.go

    		return f(root, dir)
    	}
    
    	// Try using paths we received.
    	if rel, ok = hasSubdir(root, dir); ok {
    		return
    	}
    
    	// Try expanding symlinks and comparing
    	// expanded against unexpanded and
    	// expanded against expanded.
    	rootSym, _ := filepath.EvalSymlinks(root)
    	dirSym, _ := filepath.EvalSymlinks(dir)
    
    	if rel, ok = hasSubdir(rootSym, dir); ok {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            run 'copy'
    
            then:
            executedAndNotSkipped(':copy')
            file('dest/a.txt').text == "1 + 2"
        }
    
        def "useful help message when property cannot be expanded"() {
            given:
            buildFile << """
                task copy (type: Copy) {
                    // two.a expects "one" to be defined
                    from('src/two/two.a')
                    into('dest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    		if tp.addr+goarch.PtrSize*ptrBits >= tp.elem+tp.typ.PtrBytes {
    			tp.elem += tp.typ.Size_
    			tp.addr = tp.elem
    		} else {
    			tp.addr += ptrBits * goarch.PtrSize
    		}
    
    		// Check if we've exceeded the limit with the last update.
    		if tp.addr >= limit {
    			return typePointers{}, 0
    		}
    
    		// Grab more bits and try again.
    		tp.mask = readUintptr(addb(tp.typ.GCData, (tp.addr-tp.elem)/goarch.PtrSize/8))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/encoding/json/decode_test.go

    					if err != nil {
    						t.Errorf("%s: %s: Unmarshal error: %v", tt.Where, target.Where, err)
    					}
    				} else {
    					if err == nil || !strings.Contains(err.Error(), "exceeded max depth") {
    						t.Errorf("%s: %s: Unmarshal error:\n\tgot:  %v\n\twant: exceeded max depth", tt.Where, target.Where, err)
    					}
    				}
    			})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top