Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 658 for terminator (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    // argument of the yield terminator, as well as an extra control token.
    %2, %ctl2 = tf_executor.island (%ctl0)
                      : (tensor<*xf32>, !tf_executor<"control">) -> tensor<*xf32> {
      %added = tf.Add %1, %0 : tensor<*xf32>
      %mul = tf.Mul %added, %1 :tensor<*xf32>
    
      // The yield terminator operands are the result values of the island.
      tf_executor.yield %mul : tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

      }
    
      // Edit the return ops and remove the dequantize ops in place.
      auto* terminator = bb.getTerminator();
      int num_return_operands = terminator->getNumOperands();
      llvm::SmallVector<Type, 4> output_types;
      output_types.reserve(num_return_operands);
      for (int i = 0; i != num_return_operands; ++i) {
        auto returned_value = terminator->getOperand(i);
        Operation* returned_op = returned_value.getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

      Region* cluster_region = &cluster.getBody();
      llvm::SmallSetVector<Operation*, 4> tail_outside_compiled_ops_set;
      Operation* terminator = cluster.GetBody().getTerminator();
      llvm::SmallSetVector<Value, 4> cluster_results_set;
      cluster_results_set.insert(terminator->getOperands().begin(),
                                 terminator->getOperands().end());
    
      auto cluster_ops = llvm::reverse(cluster.GetBody().without_terminator());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. src/net/cgo_unix.go

    //
    //	 Source		Encoding			Maximum length of single name entry
    //	 Unicast DNS		ASCII or			<=253 + a NUL terminator
    //				Unicode in RFC 5892		252 * total number of labels + delimiters + a NUL terminator
    //	 Multicast DNS	UTF-8 in RFC 5198 or		<=253 + a NUL terminator
    //				the same as unicast DNS ASCII	<=253 + a NUL terminator
    //	 Local database	various				depends on implementation
    const (
    	nameinfoLen    = 64
    	maxNameinfoLen = 4096
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

      Block& function_block = func.front();
      Operation* terminator = function_block.getTerminator();
      sharding_for_rets.reserve(terminator->getNumOperands());
    
      // Iterate through results of `cluster_func`. For output ops, look for
      // TPUPartitionedOutput ops.
      //
      // Iterate through operands of the terminator. If the preceding op is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tpu_device_propagation.cc

      auto graph = llvm::dyn_cast<tf_executor::GraphOp>(block.front());
      if (!graph) return false;
    
      Operation* terminator = block.getTerminator();
      if (graph.getNumResults() != terminator->getNumOperands()) return false;
      for (auto result : llvm::zip(graph.getResults(), terminator->getOperands()))
        if (std::get<0>(result) != std::get<1>(result)) return false;
    
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      }
    
      Operation &fetch = graph.GetBody().back();
      if (!isa<FetchOp>(fetch))
        return fetch.emitOpError()
               << "invalid tf_executor.graph terminator, fetch expected";
    
      // Ensure that the fetch terminator operands matches the graph result type.
      // All the non-control operands of the fetch operation must match the graph
      // returned value.
      if (fetch.getNumOperands() < graph.getNumResults())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/image/gif/reader.go

    	return n, nil
    }
    
    // close primarily detects whether or not a block terminator was encountered
    // after reading a sequence of data sub-blocks. It allows at most one trailing
    // sub-block worth of data. I.e., if some number of bytes exist in one sub-block
    // following the end of LZW data, the very next sub-block must be the block
    // terminator. If the very end of LZW data happened to fill one sub-block, at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        implicitly captured by the region, representing the feeds to the graph.
    
        The region attached to `tf_executor.graph` is terminated by a
        `tf_executor.fetch` operation. The operands of the terminator correspond to
        the result values (or fetches) of the `tf_executor.graph` operation. The
        behavior is undefined if any of the operands of the `tf_executor.fetch` is
        dead.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/testflag.go

    		}
    
    		if errors.Is(err, cmdflag.ErrFlagTerminator) {
    			// 'go list' allows package arguments to be named either before or after
    			// the terminator, but 'go test' has historically allowed them only
    			// before. Preserve that behavior and treat all remaining arguments —
    			// including the terminator itself! — as arguments to the test.
    			explicitArgs = append(explicitArgs, args...)
    			break
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top