Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for batch_node (0.55 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

    # CHECK-SAME: shared_name = "batch_node"
    
    # CHECK: func private @create_resource
    # CHECK: tf.HashTableV2
    # CHECK-SAME: shared_name = "hash_table_node@create_resource"
    # CHECK: "tf.Variable"
    # CHECK-SAME: shared_name = "variable_node"
    # CHECK: "tf.VariableV2"
    # CHECK-SAME: shared_name = "variable_v2_node"
    # CHECK: "tf.BatchFunction"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/patchnode/patchnode.go

    func AnnotateCRISocket(client clientset.Interface, nodeName string, criSocket string) error {
    
    	klog.V(1).Infof("[patchnode] Uploading the CRI Socket information %q to the Node API object %q as an annotation\n", criSocket, nodeName)
    
    	return apiclient.PatchNode(client, nodeName, func(n *v1.Node) {
    		annotateNodeWithCRISocket(n, criSocket)
    	})
    }
    
    func annotateNodeWithCRISocket(n *v1.Node, criSocket string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/gpu_fusion.cc

          if (batch_norm) {
            side_input = add_op.getY();
          } else {
            // Didn't get a FusedBatchNorm on the LHS of the AddV2, try the RHS.
            batch_norm =
                dyn_cast_or_null<FusedBatchNormV3Op>(add_op.getY().getDefiningOp());
            if (!batch_norm) return failure();
            side_input = add_op.getX();
          }
        }
        assert(batch_norm);
        if (batch_norm.getIsTraining()) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        ::mlir::FloatAttr epsilon = bn_op.getEpsilonAttr();
        ::mlir::Value batch_norm = rewriter.create<mhlo::BatchNormInferenceOp>(
            bn_op.getLoc(), inputs, bn_op.getScale(), bn_op.getOffset(), mean,
            variance, epsilon, rewriter.getI64IntegerAttr(feature_index));
    
        // Return normalized values, mean, variable.
        rewriter.replaceOp(bn_op, ::mlir::ValueRange{batch_norm, mean, variance});
        return success();
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_to_nhwc.mlir

    // CHECK-LABEL: func @transpose_resnet_layer
    func.func @transpose_resnet_layer(%arg0: tensor<?x224x224x3xf32>, // input
                                 %arg1: tensor<64xf32>,          // batch_norm args
                                 %arg2: tensor<256xf32>,          // batch_norm args
                                 %arg3: tensor<7x7x3x64xf32>,    // conv filter #0
                                 %arg4: tensor<1x1x64x256xf32>   // conv filter #1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/markcontrolplane/markcontrolplane.go

    			taintStrs = append(taintStrs, taint.ToString())
    		}
    		fmt.Printf("[mark-control-plane] Marking the node %s as control-plane by adding the taints %v\n", controlPlaneName, taintStrs)
    	}
    
    	return apiclient.PatchNode(client, controlPlaneName, func(n *v1.Node) {
    		markControlPlaneNode(n, taints)
    	})
    }
    
    func taintExists(taint v1.Taint, taints []v1.Taint) bool {
    	for _, t := range taints {
    		if t == taint {
    			return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 13 15:45:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

    import org.apache.commons.cli.ParseException;
    import org.apache.maven.jline.MessageUtils;
    
    /**
     */
    public class CLIManager {
        public static final char ALTERNATE_POM_FILE = 'f';
    
        public static final char BATCH_MODE = 'B';
    
        public static final String NON_INTERACTIVE = "non-interactive";
    
        public static final String FORCE_INTERACTIVE = "force-interactive";
    
        public static final char SET_USER_PROPERTY = 'D';
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. pkg/registry/core/node/strategy.go

    	if !ok {
    		return nil, nil, fmt.Errorf("not a node")
    	}
    	return labels.Set(nodeObj.ObjectMeta.Labels), NodeToSelectableFields(nodeObj), nil
    }
    
    // MatchNode returns a generic matcher for a given label and field selector.
    func MatchNode(label labels.Selector, field fields.Selector) pkgstorage.SelectionPredicate {
    	return pkgstorage.SelectionPredicate{
    		Label:    label,
    		Field:    field,
    		GetAttrs: GetAttrs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/patchnode/patchnode_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package patchnode
    
    import (
    	"bytes"
    	"encoding/json"
    	"net/http"
    	"net/http/httptest"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	clientset "k8s.io/client-go/kubernetes"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/uploadconfig.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	kubeletphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/kubelet"
    	patchnodephase "k8s.io/kubernetes/cmd/kubeadm/app/phases/patchnode"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/uploadconfig"
    )
    
    var (
    	uploadKubeadmConfigLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
    		Upload the kubeadm ClusterConfiguration to a ConfigMap called %s in the %s namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top