Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,422 for central (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

        Location loc = op->getLoc();
        llvm::SmallVector<mlir::Type, 2> new_types(op->getResultTypes());
        // Update the control type from tf_type.control to tf_executor.control.
        new_types.back() = rewriter.getType<tf_executor::ControlType>();
    
        // Control operand is attached on tf_executor::IslandOp.
        llvm::SmallVector<Value> island_control_operands;
        llvm::SmallVector<Value> inner_op_operands;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    							<p><la:message key="labels.menu_wizard" /></p>
    						</a>
    					</li>
    					</c:if>
    					<c:if test="${fe:permission('admin-general-view')}">
    					<li class="nav-item">
    						<a href="${fe:url('/admin/general/')}" class="nav-link <c:if test="${param.menuType=='general'}">active</c:if>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_crawl_config" /></p>
    						</a>
    					</li>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. cmd/signature-v2.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/go/ast/filter.go

    // it returns false otherwise.
    func PackageExports(pkg *Package) bool {
    	return filterPackage(pkg, exportFilter, true)
    }
    
    // ----------------------------------------------------------------------------
    // General filtering
    
    type Filter func(string) bool
    
    func filterIdentList(list []*Ident, f Filter) []*Ident {
    	j := 0
    	for _, x := range list {
    		if f(x.Name) {
    			list[j] = x
    			j++
    		}
    	}
    	return list[0:j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/compilability_check_util.h

        // calls or as higher order control flow ops) because we do not yet model
        // their memory effects in jit/resource_operation_safety_analysis.
        bool allow_resource_ops_in_called_functions = false;
    
        // Whether Stack operations are allowed.  We avoid auto-clustering Stack
        // operations in general because we do not support snapshotting them.
        //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/grpc_credential/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/metrics/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/config/overload/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

    func.func @invalid_yield(%arg0: tensor<*xf32>, %ctl: !tf_executor.control) {
      tf_executor.graph {
        "tf_executor.island"() ({
          "tf_executor.yield"(%arg0, %ctl) : (tensor<*xf32>, !tf_executor.control) -> ()
    // expected-error@-1 {{'tf_executor.yield' op unexpected control type for operand #1}}
        }) : () -> (tensor<*xf32>, !tf_executor.control, !tf_executor.control)
      }
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

      %result = tf_executor.graph {
    // CHECK: tf_executor.Switch %{{[^%]*}}, %{{[^%]*}}, %{{[^%]*}}, %{{[^%]*}} : tensor<i1>
        %1:3 = tf_executor.Switch %arg0, %arg0, %arg1, %arg2 : (tensor<i1>, tensor<i1>, !tf_executor.control, !tf_executor.control) -> (tensor<i1>, tensor<i1>, !tf_executor.control)
        tf_executor.fetch %1#0 : tensor<i1>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  9. cmd/postpolicyform.go

    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

    // TensorFlow Executor Type Constraint
    //===----------------------------------------------------------------------===//
    
    // Predicate to verify all control inputs appear after any non-control inputs.
    def ControlOperandsAfterAllData :
        PredOpTrait<"all control inputs must appear after any non-control input",
                    CPred<"succeeded(VerifyControlOperandsAfterAllData(&$_op))">>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top