Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 70 for worklist (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      };
    
      std::stack<Value> worklist;
      worklist.emplace(tensorlist);
    
      // Track the set of values we've already visited to avoid exponential blowup.
      absl::flat_hash_set<void*> visited;
      auto add_to_worklist = [&worklist, &visited](Value v) {
        if (visited.find(v.getAsOpaquePointer()) == visited.end()) {
          worklist.emplace(v);
          visited.emplace(v.getAsOpaquePointer());
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.h

        // quantization parameters have been propagated, a `requantize` will happen
        // on the input of propagated quantization.
        //
        // Returns true, if the users of the result needs to be added to the
        // worklist.
        bool SetResultParams(Operation *op, int index, QuantParams params);
    
        // Sets the quantization parameters of the operand to a fixed value. If any
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

        for (Operation* user : op->getResult(index).getUsers()) {
          work_list_.push_back(user);
        }
      }
    
      // Adds the defining op of index-th operand of op to the work list.
      void AddOperandToList(Operation* op, const int index) {
        if (Operation* operand_op = op->getOperand(index).getDefiningOp();
            operand_op != nullptr) {
          work_list_.push_back(operand_op);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      }
    
      // Erase all control outputs at the end from fetch.
      fetch.getFetchesMutable().erase(
          graph_op.getNumResults(),
          fetch.getNumOperands() - graph_op.getNumResults());
    
      // Iterate the worklist to remove all NoOp control barriers at the end of the
      // function body that are used to merge two or more control dependencies.
      while (!control_barrier_worklist.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadcode.go

    	return
    }
    
    // ReachableBlocks returns the reachable blocks in f.
    func ReachableBlocks(f *Func) []bool {
    	reachable := make([]bool, f.NumBlocks())
    	reachable[f.Entry.ID] = true
    	p := make([]*Block, 0, 64) // stack-like worklist
    	p = append(p, f.Entry)
    	for len(p) > 0 {
    		// Pop a reachable block
    		b := p[len(p)-1]
    		p = p[:len(p)-1]
    		// Mark successors as reachable
    		s := b.Succs
    		if b.Kind == BlockFirst {
    			s = s[:1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/fuzzers/wfuzz/wordlist.yaml

    # Usage: replace {FILE} with the absolute URI of a local resource, then use
    # your favourite web application fuzzer (e.g. wfuzz)
    # Generated from https://github.com/xmendez/wfuzz/blob/master/wordlist/vulns/dirTraversal.txt
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: wordlist
    data:
      dirTraversal.txt: |
        ../private/secret.html
        ../../private/secret.html
        ../../../private/secret.html
        ../../../../private/secret.html
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 86K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenPrefixFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
    
            final List<String> wordList = Analysis.parseWordList(environment, settings, "stopwords", s -> s);
            if (wordList != null) {
                stopwords = wordList.toArray(new String[wordList.size()]);
            } else {
                stopwords = new String[0];
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenSuffixFilterFactory.java

                final Settings settings) {
            super(indexSettings, name, settings);
    
            final List<String> wordList = Analysis.parseWordList(environment, settings, "stopwords", s -> s);
            if (wordList != null) {
                stopwords = wordList.toArray(new String[wordList.size()]);
            } else {
                stopwords = new String[0];
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiPartOfSpeechFilterFactory.java

            super(indexSettings, name, settings);
            List<String> wordList = Analysis.parseWordList(env, settings, "stoptags", s -> s);
            if (wordList != null) {
                stopTags.addAll(wordList);
            } else {
                stopTags.addAll(JapaneseAnalyzer.getDefaultStopTags());
            }
        }
    
        @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/fuzzers/wfuzz/wfuzz.yaml

            image: ghcr.io/xmendez/wfuzz:v3.1.0
            command: [ "sleep" ]
            args: [ "365d" ]
            volumeMounts:
              - name: wordlist
                mountPath: /wordlist
          volumes:
            - name: wordlist
              configMap:
                name: wordlist
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 23 20:55:02 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top