Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 267 for deim (0.09 sec)

  1. src/cmd/dist/testjson.go

    				return
    			}
    		}
    	}
    
    	// Something went wrong. Just pass the line through.
    	f.w.Write(line)
    }
    
    type jsonValue struct {
    	atom json.Token  // If json.Delim, then seq will be filled
    	seq  []jsonValue // If atom == json.Delim('{'), alternating pairs
    }
    
    var jsonPop = errors.New("end of JSON sequence")
    
    func decodeJSONValue(dec *json.Decoder) (jsonValue, error) {
    	t, err := dec.Token()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tests/bench_graph_tfmatmul.template.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_hold" }
      shape {
        dim { size: <M> }
        dim { size: <K> }
      }
    }
    feed {
      id { node_name: "y_hold" }
      shape {
        dim { size: <K> }
        dim { size: <N> }
      }
    }
    fetch {
      id { node_name: "x_y_prod" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 24 15:53:56 UTC 2023
    - 280 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/device_assignment.mlir

      // CHECK: device = "gpu"
      %1 = "tf.MatMul"(%arg0, %0) {T = f32, _output_shapes = ["tfshape$dim { size: 3 } dim { size: 3 }"], device = "", transpose_a = false, transpose_b = false} : (tensor<3x1xf32>, tensor<1x3xf32>) -> tensor<3x3xf32>
      // CHECK: device = "cpu"
      %2 = "tf.Relu"(%1) {T = f32, _output_shapes = ["tfshape$dim { size: 3 } dim { size: 3 }"], device = "cpu"} : (tensor<3x3xf32>) -> tensor<3x3xf32>
      // CHECK: device = "gpu"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 924 bytes
    - Viewed (0)
  4. src/encoding/json/example_test.go

    		fmt.Printf("\n")
    	}
    	// Output:
    	// json.Delim: { (more)
    	// string: Message (more)
    	// string: Hello (more)
    	// string: Array (more)
    	// json.Delim: [ (more)
    	// float64: 1 (more)
    	// float64: 2 (more)
    	// float64: 3
    	// json.Delim: ] (more)
    	// string: Null (more)
    	// <nil>: <nil> (more)
    	// string: Number (more)
    	// float64: 1.234
    	// json.Delim: }
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/end2end/conv_2d.pbtxt

      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            dim {
              size: 1
            }
            dim {
              size: 8
            }
            dim {
              size: 8
            }
            dim {
              size: 2
            }
          }
        }
      }
    }
    node {
      name: "conv_net_2d/conv_2d_0/w"
      op: "Const"
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 28 06:29:38 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

          assert(index[i] < shape[i]);
          assert(index[i] >= 0);
        }
    #endif  // NDEBUG
        for (int64_t dim = shape.size() - 1; dim >= 0; --dim) {
          if (dim == fixed_axis) continue;
          ++index[dim];
          if (index[dim] < shape[dim]) return std::move(index);
          index[dim] = 0;
        }
        return std::nullopt;
      }
    
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/Config.java

         * value containting a <tt>delim</tt> separated list of hostnames and/or
         * ipaddresses.
         */
    
        public static InetAddress[] getInetAddressArray( String key, String delim, InetAddress[] def ) {
            String p = getProperty( key );
            if( p != null ) {
                StringTokenizer tok = new StringTokenizer( p, delim );
                int len = tok.countTokens();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function.pbtxt

          }
        }
      }
      attr {
        key: "_handle_shapes"
        value {
          list {
            shape {
              dim {
                size: 3
              }
              dim {
                size: 3
              }
              dim {
                size: 1
              }
              dim {
                size: 32
              }
            }
          }
        }
      }
      attr {
        key: "index"
        value {
          i: 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/encoding/json/stream.go

    	case tokenArrayStart, tokenArrayValue:
    		dec.tokenState = tokenArrayComma
    	case tokenObjectValue:
    		dec.tokenState = tokenObjectComma
    	}
    }
    
    // A Delim is a JSON array or object delimiter, one of [ ] { or }.
    type Delim rune
    
    func (d Delim) String() string {
    	return string(d)
    }
    
    // Token returns the next JSON token in the input stream.
    // At the end of the input stream, Token returns nil, [io.EOF].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/test_graph_tfunknownop3.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "z" output_index: 1}
      shape {
        dim { size: 1 }
      }
      type: DT_INT32
    }
    fetch {
      id { node_name: "x_y_sum" }
    }
    fetch {
      id { node_name: "x_z_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 372 bytes
    - Viewed (0)
Back to top