Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CArg (0.09 sec)

  1. operator/cmd/mesh/manifest-generate.go

    	if len(mgArgs.Components) != 0 {
    		filteredManifests := name.ManifestMap{}
    		for _, cArg := range mgArgs.Components {
    			componentName := name.ComponentName(cArg)
    			if cManifests, ok := manifests[componentName]; ok {
    				filteredManifests[componentName] = cManifests
    			} else {
    				return fmt.Errorf("incorrect component name: %s. Valid options: %v", cArg, name.AllComponentNames)
    			}
    		}
    		manifests = filteredManifests
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/remove_unused_while_results.mlir

    //   unused result of the while loop
    
    // CHECK-LABEL: remove_first_result
    // CHECK:       tf.WhileRegion
    // CHECK-SAME:    (%[[ARG:[a-zA-Z0-9_]+]])
    // CHECK:       ^bb0
    // CHECK:         (%[[CARG:[a-zA-Z0-9_]+]]: tensor<*xf32>)
    // CHECK:       tf.OpA
    // CHECK:       ^bb0
    // CHECK:         (%[[BARG:[a-zA-Z0-9_]+]]: tensor<*xf32>)
    // CHECK-NOT:   tf.OpB
    // CHECK:       tf.OpC
    // CHECK-SAME:    %[[BARG]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 21 20:25:31 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        // The NextIteration.Source operation returns an extra token consumed by the sink.
        TfeTokenType:$token,
        TfeControlType:$control
      );
    
      let builders = [
        OpBuilder<(ins "Type":$result_type,
          CArg<"ArrayRef<NamedAttribute>", "{}">:$attributes),
        [{
          Type token_type = TokenType::get($_builder.getContext());
          Type control_type = ControlType::get($_builder.getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      // expected-error @+1 {{'tf.WhileRegion' op condition should yield a tensor<i1> and forward the arguments}}
      %0 = "tf.WhileRegion"(%arg) (
         {
           ^bb0(%carg: tensor<i32>):
            %true = arith.constant dense<1> : tensor<i1>
            "tf.Yield"(%true, %carg, %carg) : (tensor<i1>, tensor<i32>, tensor<i32>) -> ()
         },
         {
           ^bb0(%barg: tensor<i32>):
            "tf.Yield"(%barg) : (tensor<i32>) -> ()
         }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      let regions = (region VariadicRegion<AnyRegion>:$body);
    
      let skipDefaultBuilders = 1;
    
      let builders = [
        OpBuilder<(ins "StringRef":$name, "FunctionType":$type,
          CArg<"ArrayRef<NamedAttribute>", "{}">:$attrs)>
      ];
    
      let extraClassDeclaration = [{
        LogicalResult verifyType() { return success(); }
    
        mlir::Region *getCallableRegion();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

          // expected-remark@above {{ID: 11}}
            {
              ^bb0(%carg: tensor<i1>):
                %graph = tf_executor.graph {
                // expected-remark@above {{ID: 4}}
                  %island:2 = tf_executor.island {
                  // expected-remark@above {{ID: 2}}
                    tf_executor.yield %carg : tensor<i1>
                    // expected-remark@above {{ID: 1}}
                  }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
Back to top