Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for NOOP (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/noop.mlir

    // RUN: tf-mlir-translate -mlir-to-graphdef %s -o - | FileCheck %s
    
    func.func @main() {
      tf_executor.graph {
        tf_executor.island wraps "tf.NoOp"() {} : () -> () loc("noop")
        tf_executor.fetch
      }
      func.return
    }
    
    // CHECK: node {
    // CHECK-NEXT:  name: "noop"
    // CHECK-NEXT:  op: "NoOp"
    // CHECK-NEXT:  experimental_debug_info {
    // CHECK-NEXT:  }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 370 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/graph_pruning_preserve_ops.mlir

    // CHECK-LABEL: func @preserve_unreachable_tpu_replicate_metadata
    func.func @preserve_unreachable_tpu_replicate_metadata() {
      tf_executor.graph {
        %0 = tf_executor.ControlTrigger {}
        // CHECK: "tf.NoOp"
        %1 = tf_executor.island wraps "tf.NoOp"() : () -> ()
        // CHECK: "tf.TPUReplicateMetadata"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/check_control_dependencies.mlir

        %island2 = tf_executor.island(%island1) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        // expected-warning@+1 {{unexpected control dependency path: path 0, node 2 (intermediate)}}
        %island3 = tf_executor.island(%island2) {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 16:14:07 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/convert_to_legacy_compile_and_replicate_attributes.mlir

        %control_2 = tf_executor.island wraps "tf.NoOp"() {_pivot_for_cluster = "cluster", device = ""} : () -> ()
        // CHECK: %control_3 = tf_executor.island(%control_2) wraps "tf.NoOp"() {_tpu_replicate = "cluster", device = ""} : () -> ()
        %control_3 = tf_executor.island(%control_2) wraps "tf.NoOp"() {_replication_info = "cluster", _xla_compile_device_type = "TPU", device = ""} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    			fmt.Fprintln(os.Stderr, "no panic from segv")
    			os.Exit(1)
    		}
    	}()
    	*P = 0
    	fmt.Fprintln(os.Stderr, "continued after segv")
    	os.Exit(1)
    }
    
    // Noop ensures that the Go runtime is initialized.
    //
    //export Noop
    func Noop() {
    }
    
    // Raise SIGPIPE.
    //
    //export GoRaiseSIGPIPE
    func GoRaiseSIGPIPE() {
    	C.CRaiseSIGPIPE()
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-defs.pbtxt

        value {
          list {
            shape {
              unknown_rank: true
            }
            shape {
              unknown_rank: true
            }
          }
        }
      }
    }
    node {
      name: "NoOp"
      op: "NoOp"
      input: "^cluster/pivot"
      attr {
        key: "_tpu_replicate"
        value {
          s: "cluster"
        }
      }
    }
    node {
      name: "Identity"
      op: "Identity"
      input: "cond"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  7. pkg/controlplane/reconcilers/none.go

    func NewNoneEndpointReconciler() EndpointReconciler {
    	return &noneEndpointReconciler{}
    }
    
    // ReconcileEndpoints noop reconcile
    func (r *noneEndpointReconciler) ReconcileEndpoints(serviceName string, ip net.IP, endpointPorts []corev1.EndpointPort, reconcilePorts bool) error {
    	return nil
    }
    
    // RemoveEndpoints noop reconcile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 11:45:48 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/BiActions.java

    public abstract class BiActions {
    
        private static final BiAction<Object, Object> NOOP = new BiAction<Object, Object>() {
            @Override
            public void execute(Object o, Object o2) {
    
            }
        };
    
        private BiActions() {
        }
    
        public static BiAction<Object, Object> doNothing() {
            return NOOP;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/util/internal/NameValidatorTest.groovy

            ["configurations", new DefaultConfigurationContainer(TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP, rootComponentMetaDataBuilderFactory, Mock(DefaultConfigurationFactory), Mock(ResolutionStrategyFactory))],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 22:27:15 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      func.return %arg0 : tensor<1xf32>
    }
    
    func.func @noop()->() {
      func.return
    }
    
    // CHECK-LABEL: @tf_if_gets_control_node
    func.func @tf_if_gets_control_node(%arg0: tensor<1xi1>)->() {
     "tf.If"(%arg0) {_lower_using_switch_merge = true, _read_only_resource_inputs = [], device = "", else_branch = @noop, is_stateless = false, output_shapes = [#tf_type.shape<>], then_branch = @noop} : (tensor<1xi1>) -> ()
     func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top